evil
Download:
#!/usr/bin/php
<?php
echo "\r\nevil php v1.0\r\n\r\n";
$f = fopen("php://stdin", "rb");
$line = "";
while (true){
echo "> ";
$line = fgets($f, 4096);
if (substr($line, -1) != ";"){
$line = $line . ";";
}
ob_start();
eval($line);
$buf = ob_get_contents();
ob_end_clean();
echo $buf;
if (strlen($buf) > 0){
echo "\r\n";
}
}
fclose($f);
?>
documentation.txt -> unavailable, yet. Please be patient.
license.txt
This product includes/requires PHP software, freely available from
http://www.php.net/software/
<<< back