One Hat Cyber Team
Your IP :
3.144.29.148
Server IP :
50.28.103.30
Server :
Linux host.jcukjv-lwsites.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
Server Software :
nginx/1.24.0
PHP Version :
8.3.12
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
www
/
wwwroot
/
globify.live
/
fns
/
link_filter
/
View File Name :
load.php
<?php function link_filter($data) { $result = true; if (Registry::load('settings')->link_filter === 'enable') { $url_blacklist = array(); $url_blacklist_file = 'assets/cache/url_blacklist.cache'; $links = $data['links']; if (file_exists($url_blacklist_file)) { include($url_blacklist_file); if (!empty($url_blacklist)) { foreach ($links as $urlToCheck) { foreach ($url_blacklist as $blacklistedUrl) { if (strpos($blacklistedUrl, '*') !== false) { $blacklistDomain = rtrim($blacklistedUrl, '*'); $blacklistDomain = parse_url($blacklistDomain, PHP_URL_HOST); $urlDomain = parse_url($urlToCheck, PHP_URL_HOST); if ($urlDomain === $blacklistDomain) { $result = false; break 2; } } else { if ($urlToCheck === trim($blacklistedUrl)) { $result = false; break 2; } } } } } } } return $result; } ?>