/home/fortisau/test.fortisauto.com

[D] .-
[D] ..-
[F] .htaccess281view edit
[D] .well-known-open
[F] 404.html242view edit
[F] check.php315view edit
[F] error_log57417view edit
[F] lose.php1684view edit
[F] pi.php16view edit
[F] t_exec.php73view edit
[F] t_passthru.php56view edit
[F] t_popen.php107view edit
[F] t_proc_open.php148view edit
[F] t_shell_exec.php58view edit
[F] t_system.php54view edit

VIEW

<?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>";