Linux linux7.web4world.com 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64
: 199.38.113.107 | : 216.73.216.118
Cant Read [ /etc/named.conf ]
?5.6.40
siddhapu
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
lib /
python2.7 /
site-packages /
clcommon /
[ HOME SHELL ]
Name
Size
Permission
Action
?;
cpapi
[ DIR ]
drwxr-xr-x
__init__.py
196
B
-rw-r--r--
__init__.pyc
491
B
-rw-r--r--
__init__.pyo
491
B
-rw-r--r--
clcagefs.py
6.16
KB
-rw-r--r--
clcagefs.pyc
7.56
KB
-rw-r--r--
clcagefs.pyo
7.56
KB
-rw-r--r--
clconfpars.py
1.68
KB
-rw-r--r--
clconfpars.pyc
2.48
KB
-rw-r--r--
clconfpars.pyo
2.48
KB
-rw-r--r--
cldetect.py
2.93
KB
-rw-r--r--
cldetect.pyc
2.96
KB
-rw-r--r--
cldetect.pyo
2.96
KB
-rw-r--r--
clemail.py
1.86
KB
-rw-r--r--
clemail.pyc
2.04
KB
-rw-r--r--
clemail.pyo
2.04
KB
-rw-r--r--
clfunc.py
2.5
KB
-rw-r--r--
clfunc.pyc
3.33
KB
-rw-r--r--
clfunc.pyo
3.33
KB
-rw-r--r--
clhook.py
3.55
KB
-rw-r--r--
clhook.pyc
3.75
KB
-rw-r--r--
clhook.pyo
3.75
KB
-rw-r--r--
cllog.py
1.11
KB
-rw-r--r--
cllog.pyc
1.83
KB
-rw-r--r--
cllog.pyo
1.83
KB
-rw-r--r--
cloutput.py
447
B
-rw-r--r--
cloutput.pyc
697
B
-rw-r--r--
cloutput.pyo
697
B
-rw-r--r--
clpwd.py
3.53
KB
-rw-r--r--
clpwd.pyc
4.65
KB
-rw-r--r--
clpwd.pyo
4.65
KB
-rw-r--r--
clsec.py
450
B
-rw-r--r--
clsec.pyc
1.2
KB
-rw-r--r--
clsec.pyo
1.2
KB
-rw-r--r--
utils.py
1.45
KB
-rw-r--r--
utils.pyc
2.09
KB
-rw-r--r--
utils.pyo
2.09
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : cldetect.py
#!/usr/bin/python # # Copyright CloudLinux Zug GmbH 2010-2015 All Rights Reserved # # Licensed under CLOUD LINUX LICENSE AGREEMENT # http://cloudlinux.com/docs/LICENCE.TXT # import os CP_NAME = None def getCPName(): """ Detect control panel and return its name """ global CP_NAME if CP_NAME: return CP_NAME # cPanel check if os.path.isfile('/usr/local/cpanel/cpanel'): CP_NAME = 'cPanel' # Plesk check elif os.path.isfile('/usr/local/psa/version'): CP_NAME = 'Plesk' # DirectAdmin check elif os.path.isfile('/usr/local/directadmin/directadmin'): CP_NAME = 'DirectAdmin' # ISPmanager v4 or v5 check elif os.path.isfile('/usr/local/ispmgr/bin/ispmgr') or os.path.isfile('/usr/local/mgr5/sbin/mgrctl'): CP_NAME = 'ISPManager' # InterWorx check elif os.path.isfile('/usr/local/interworx/iworx.ini'): CP_NAME = 'InterWorx' # HSphere check elif os.path.isdir('/hsphere/shared'): CP_NAME = 'H-Sphere' elif os.path.isfile('/lib64/libnss_ng.so'): CP_NAME = 'HostingNG' # CentOS Web Panel check elif os.path.isfile('/etc/rc.d/init.d/cwpsrv'): CP_NAME = 'CentOS_WEB_Panel' elif os.path.isfile('/etc/httpd/conf.d/atomia-pa-apache.conf') or os.path.isdir('/storage/configuration/cloudlinux'): CP_NAME = 'Atomia_agent' else: CP_NAME = 'Unknown' return CP_NAME def add_server_stats(status_report): """ Add server statistics to status_report dict :param status_report: dict to add statistics to :type status_report: dict """ from clcommon import ClPwd res = {} cp_name = getCPName() if cp_name != 'Unknown': res['cp'] = cp_name if cp_name == 'Plesk': clpwd = ClPwd(10000) else: clpwd = ClPwd() d = clpwd.get_uid_dict() users = 0 sys_users = set(['nfsnobody', 'avahi-autoipd', 'exim', 'clamav', 'varnish', 'nagios', 'saslauth', 'mysql', 'lsadm', 'systemd-bus-proxy', 'systemd-network', 'polkitd', 'firebird', 'nginx', 'dovecot', 'dovenull', 'roundcube_sysuser', 'avahi-autoipd', 'cpanel', 'cpanelhorde', 'cpanelphpmyadmin', 'cpanelphppgadmin', 'cpanelroundcube', 'mailman', 'cpaneleximfilter', 'cpanellogaholic', 'cpanellogin', 'munin', 'cpaneleximscanner', 'cpanelphpgadmin', 'cpses', 'cpanelconnecttrack', 'cpanelrrdtool', 'admin', 'webapps' 'apache', 'diradmin', 'majordomo', 'viapm', 'iworx', 'iworx-web', 'iworx-pma', 'iworx-backup', 'iworx-horde', 'iworx-roundcube', 'iworx-sqmail', 'iworx_support_user', 'psaadm', 'popuser', 'psaftp', 'drweb', 'sw-cp-server', 'horde_sysuser']) for uid in d: found = False for entry in d[uid]: if entry.pw_name in sys_users: found = True break if not found: users += 1 res['users'] = users status_report['cln'] = res
Close