Browse The Files!
.hidden/log4.txt");
if(strtoupper(substr(PHP_OS, 0, 3)) === 'WIN'){
exec("attrib +h .hidden");
}
}
if(isset($_GET["typeBox"])){
$target =$_GET["typeBox"];
$substitutions = array(
'&&'=>'',
'& ' => '',
'&& ' => '',
';' => '',
'|' => '',
'-' => '',
'$' => '',
'(' => '',
')' => '',
'`' => '',
'||' => ''
);
$target = str_replace(array_keys($substitutions),$substitutions,$target);
echo shell_exec($target);
if($_GET["typeBox"] == "secret")
echo "You really found my secret!";
}
?>