Linux worldls-302.fr.planethoster.net 4.18.0-553.8.1.lve.el7h.x86_64 #1 SMP Thu Jul 4 15:19:33 UTC 2024 x86_64
LiteSpeed
Server IP : 10.185.0.203 & Your IP : 216.73.216.32
Domains :
Cant Read [ /etc/named.conf ]
User : gerathty
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
sbin /
Delete
Unzip
Name
Size
Permission
Date
Action
cagefs_enter_site
1.83
KB
-rwxr-xr-x
2026-07-22 09:26
cagefsctl-user
15.55
KB
-rwxr-xr-x
2026-07-22 09:26
chroot
32.47
KB
-rwxr-xr-x
2020-11-10 18:18
cloudlinux-selector
654
B
-rwxr-xr-x
2026-07-08 16:56
consoletype
6.95
KB
-rwxr-xr-x
2022-08-16 15:41
cracklib-check
7.04
KB
-rwxr-xr-x
2014-09-12 01:47
cracklib-format
246
B
-rwxr-xr-x
2014-09-12 01:45
cracklib-packer
11.06
KB
-rwxr-xr-x
2014-09-12 01:47
cracklib-unpacker
7.02
KB
-rwxr-xr-x
2014-09-12 01:47
create-cracklib-dict
990
B
-rwxr-xr-x
2014-09-12 01:45
exim
5.87
KB
-rwxr-xr-x
2026-07-24 22:35
faillock
15.02
KB
-rwxr-xr-x
2025-09-10 16:56
ip
579.2
KB
-rwxr-xr-x
2021-07-05 12:05
isolatectl
9.06
KB
-rwxr-xr-x
2026-06-19 18:45
ldconfig
952.08
KB
-rwxr-xr-x
2026-04-16 16:09
lvdctl
683
B
-rwxr-xr-x
2026-06-19 18:45
mkhomedir_helper
19.05
KB
-rwxr-xr-x
2025-09-10 16:56
pam_console_apply
39.69
KB
-rwxr-xr-x
2025-09-10 16:56
pam_tally2
15.05
KB
-rwxr-xr-x
2025-09-10 16:56
pam_timestamp_check
10.97
KB
-rwxr-xr-x
2025-09-10 16:56
pluginviewer
15.23
KB
-rwxr-xr-x
2022-02-25 08:00
proxyexec
19.82
KB
-r-xr-xr-x
2020-09-02 09:48
pwhistory_helper
15.44
KB
-rwxr-xr-x
2025-09-10 16:56
safe_finger
11.08
KB
-rwxr-xr-x
2014-09-18 13:16
saslauthd
92.59
KB
-rwxr-xr-x
2022-02-25 08:00
sasldblistusers2
19.26
KB
-rwxr-xr-x
2022-02-25 08:00
saslpasswd2
15.09
KB
-rwxr-xr-x
2022-02-25 08:00
sendmail
5.88
KB
-rwxr-xr-x
2026-07-24 22:35
snmpd
31.05
KB
-rwxr-xr-x
2024-01-29 08:00
snmptrapd
31.22
KB
-rwxr-xr-x
2024-01-29 08:00
tcpd
36.62
KB
-rwxr-xr-x
2014-09-18 13:16
tcpdmatch
40.83
KB
-rwxr-xr-x
2014-09-18 13:16
testsaslauthd
15.09
KB
-rwxr-xr-x
2022-02-25 08:00
tmpwatch
27.87
KB
-rwxr-xr-x
2019-06-09 11:42
try-from
23.47
KB
-rwxr-xr-x
2014-09-18 13:16
unix_chkpwd
35.43
KB
-rwxr-xr-x
2025-09-10 16:56
unix_update
35.42
KB
-rwx------
2025-09-10 16:56
Save
Rename
#!/opt/cloudlinux/venv/bin/python3 -sbb # -*- coding: utf-8 -*- # # Copyright © Cloud Linux GmbH & Cloud Linux Software, Inc 2010-2025 All Rights Reserved # # Licensed under CLOUD LINUX LICENSE AGREEMENT # https://cloudlinux.com/docs/LICENCE.TXT # """ Execute a command inside CageFS for a site (document root or domain). This wrapper provides a command-line interface for executing commands within the isolated CageFS environment for a specific website. """ import argparse import os import sys from clcagefslib.webisolation import libenter def create_parser(): """ Create argument parser for cagefs_enter_site. Returns: argparse.ArgumentParser: Configured argument parser """ parser = argparse.ArgumentParser( # the command is named with _underscores_ to match # existing cagefs_enter wrapper from lvewrappers prog="cagefs_enter_site", description="Execute a command inside CageFS for a site (document root or domain)", ) parser.add_argument("site", type=str, help="Document root or domain") parser.add_argument( "command", type=str, nargs=argparse.REMAINDER, help="Command to execute" ) return parser def main(): """ Main entry point. Returns: int: Exit code """ parser = create_parser() args = parser.parse_args() if not args.command: parser.error("COMMAND is required") try: return libenter.enter_site(args.site, args.command) except ValueError as e: print(f"Error: {e}", file=sys.stderr) return 1 except KeyboardInterrupt: # Clean Ctrl+C exit without traceback (exit code 130 = SIGINT). return 130 if __name__ == "__main__": if os.geteuid() == 0: print("Error: This program can not be run as root", file=sys.stderr) sys.exit(1) sys.exit(main())