Linux cpanel07wh.bkk1.cloud.z.com 2.6.32-954.3.5.lve1.4.80.el6.x86_64 #1 SMP Thu Sep 24 01:42:00 EDT 2020 x86_64
Apache
: 163.44.198.52 | : 216.73.216.26
Cant Read [ /etc/named.conf ]
8.0.9
cp657342
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
l.v.e-manager /
utils /
[ HOME SHELL ]
Name
Size
Permission
Action
activate
2.3
KB
-rwxr-xr-x
cloudlinux-cli-user.py
488
B
-rwxr-xr-x
cloudlinux-selector.py
834
B
-rwxr-xr-x
cloudlinux_cli_user.py
10.62
KB
-rwxr-xr-x
cpanel_api.py
9.59
KB
-rw-r--r--
libcloudlinux.py
26.2
KB
-rw-r--r--
node_wrapper
268
B
-rwxr-xr-x
npm_wrapper
1.69
KB
-rwxr-xr-x
python_wrapper
568
B
-rwxr-xr-x
set_env_vars.py
3.66
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : cloudlinux-selector.py
#!/opt/alt/python37/bin/python3 -sbb # -*- coding: utf-8 -*- # cloudlinux-selector Utility to check Cloudlinux license # # Copyright © Cloud Linux GmbH & Cloud Linux Software, Inc 2010-2019 All Rights Reserved # # Licensed under CLOUD LINUX LICENSE AGREEMENT # http://cloudlinux.com/docs/LICENSE.TXT from __future__ import print_function from __future__ import division from __future__ import absolute_import import sys from clcommon.lib.cledition import is_cl_solo_edition, print_skip_message_on_solo from clselector.cl_selector import CloudlinuxSelector def main(argv): """ Main run function """ if is_cl_solo_edition(skip_jwt_check=True): print_skip_message_on_solo() return cll = CloudlinuxSelector() return cll.run(argv) if __name__ == "__main__": sys.exit(main(sys.argv[1:]))
Close