| [D] . | - | |
| [D] .. | - | |
| [F] .htaccess | 281 | view edit |
| [D] .well-known | - | open |
| [F] 404.html | 242 | view edit |
| [F] check.php | 315 | view edit |
| [F] error_log | 57417 | view edit |
| [F] lose.php | 1684 | view edit |
| [F] pi.php | 16 | view edit |
| [F] t_exec.php | 73 | view edit |
| [F] t_passthru.php | 56 | view edit |
| [F] t_popen.php | 107 | view edit |
| [F] t_proc_open.php | 148 | view edit |
| [F] t_shell_exec.php | 58 | view edit |
| [F] t_system.php | 54 | view edit |
<?php
error_reporting(E_ALL);
ini_set("display_errors", 1);
echo "<pre>";
echo "PHP: " . PHP_VERSION . "\n";
$f = ["system","exec","passthru","shell_exec","popen","proc_open","phpinfo","pcntl_exec"];
foreach($f as $fn) {
$r = function_exists($fn) ? "EXISTS" : "DISABLED";
echo "$fn: $r\n";
}
echo "</pre>";