Linux cyberpanel 5.15.0-156-generic #166-Ubuntu SMP Sat Aug 9 00:02:46 UTC 2025 x86_64
LiteSpeed
: 160.191.175.3 | : 216.73.216.114
Cant Read [ /etc/named.conf ]
8.2.29
aodai6801
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 /
local /
CyberCP /
install /
[ HOME SHELL ]
Name
Size
Permission
Action
dns
[ DIR ]
drwxr-xr-x
dns-one
[ DIR ]
drwxr-xr-x
email-configs
[ DIR ]
drwxr-xr-x
email-configs-one
[ DIR ]
drwxr-xr-x
gun-configs
[ DIR ]
drwxr-xr-x
litespeed
[ DIR ]
drwxr-xr-x
lscpd
[ DIR ]
drwxr-xr-x
mysql
[ DIR ]
drwxr-xr-x
php-configs
[ DIR ]
drwxr-xr-x
phpconfigs
[ DIR ]
drwxr-xr-x
pure-ftpd
[ DIR ]
drwxr-xr-x
pure-ftpd-one
[ DIR ]
drwxr-xr-x
rainloop
[ DIR ]
drwxr-xr-x
CyberPanel8.repo
133
B
-rw-r--r--
__init__.py
0
B
-rw-r--r--
composer.sh
190
B
-rw-r--r--
composer_cn.sh
363
B
-rw-r--r--
cyberso.pub
386
B
-rw-r--r--
dns_cyberpanel.sh
1.68
KB
-rw-r--r--
env_generator.py
8.13
KB
-rw-r--r--
filesPermsUtilities.py
6.17
KB
-rw-r--r--
filesPermsUtilities.py.bak
6.17
KB
-rw-r--r--
firewallUtilities.py
3.03
KB
-rw-r--r--
install.py
124.6
KB
-rw-r--r--
install.py.bak
92.74
KB
-rw-r--r--
install.xml
512
B
-rw-r--r--
installCyberPanel.py
45.88
KB
-rw-r--r--
installLog.py
1.06
KB
-rw-r--r--
install_utils.py
12.75
KB
-rw-r--r--
lscp.tar.gz
36.19
MB
-rw-r--r--
mysqlUtilities.py
3.21
KB
-rw-r--r--
postfix-files
20.76
KB
-rw-r--r--
randomPassword.py
364
B
-rw-r--r--
setup_env.py
3.22
KB
-rw-r--r--
test.py
0
B
-rw-r--r--
unInstall.py
4.73
KB
-rw-r--r--
venvsetup.sh
41.49
KB
-rw-r--r--
venvsetup.sh.bak
41
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : unInstall.py
import sys import subprocess import shutil import installLog as logging import argparse import os import shlex import socket class unInstallCyberPanel: def unInstallCyberPanelRepo(self): try: copyPath = "/etc/yum.repos.d/cyberpanel.repo" os.remove(copyPath) except OSError as msg: logging.InstallLog.writeToFile(f"{str(msg)} [unInstallCyberPanelRepo]") def removeGunicorn(self): try: os.chdir(self.cwd) service = "/etc/systemd/system/gunicorn.service" socket = "/etc/systemd/system/gunicorn.socket" conf = "/etc/tmpfiles.d/gunicorn.conf" os.remove(service) os.remove(socket) os.remove(conf) except BaseException as msg: logging.InstallLog.writeToFile(str(msg) + " [removeGunicorn]") def removePostfixDovecot(self): try: command = 'yum -y remove postfix' cmd = shlex.split(command) res = subprocess.call(cmd) shutil.rmtree("/etc/postfix") shutil.rmtree("etc/dovecot") except OSError as msg: logging.InstallLog.writeToFile(str(msg) + " [removePostfixDovecot]") return 0 except ValueError as msg: logging.InstallLog.writeToFile(str(msg) + " [removePostfixDovecot]") return 0 return 1 def removeMysql(self): try: command = 'yum -y remove mariadb mariadb-server' cmd = shlex.split(command) res = subprocess.call(cmd) shutil.rmtree("/var/lib/mysql") os.remove("/etc/my.cnf") except OSError as msg: logging.InstallLog.writeToFile(str(msg) + " [removeMysql]") return 0 except ValueError as msg: logging.InstallLog.writeToFile(str(msg) + " [removeMysql]") return 0 return 1 def removeLiteSpeed(self): try: command = 'yum -y remove openlitespeed' cmd = shlex.split(command) res = subprocess.call(cmd) shutil.rmtree("/usr/local/lsws") except OSError as msg: logging.InstallLog.writeToFile(str(msg) + " [removeLiteSpeed]") return 0 except ValueError as msg: logging.InstallLog.writeToFile(str(msg) + " [removeLiteSpeed]") return 0 return 1 def removeCyberPanel(self): try: shutil.rmtree("/usr/local/CyberCP") os.remove("/usr/local/CyberCP2.tar.gz") shutil.rmtree("/etc/cyberpanel") except OSError as msg: logging.InstallLog.writeToFile(str(msg) + " [removeCyberPanel]") return 0 except ValueError as msg: logging.InstallLog.writeToFile(str(msg) + " [removeCyberPanel]") return 0 return 1 def removePureFTPD(self): try: command = 'yum -y remove pure-ftpd' cmd = shlex.split(command) res = subprocess.call(cmd) shutil.rmtree("/etc/pure-ftpd") except OSError as msg: logging.InstallLog.writeToFile(str(msg) + " [removePureFTPD]") return 0 except ValueError as msg: logging.InstallLog.writeToFile(str(msg) + " [removePureFTPD]") return 0 return 1 def removePowerDNS(self): try: command = 'yum -y remove pdns' cmd = shlex.split(command) res = subprocess.call(cmd) shutil.rmtree("/etc/pdns") except OSError as msg: logging.InstallLog.writeToFile(str(msg) + " [removePowerDNS]") return 0 except ValueError as msg: logging.InstallLog.writeToFile(str(msg) + " [removePowerDNS]") return 0 return 1 def removePHP(self): try: command = 'yum -y remove lsphp*' cmd = shlex.split(command) res = subprocess.call(cmd) shutil.rmtree("/etc/pdns") except OSError as msg: logging.InstallLog.writeToFile(str(msg) + " [removePHP]") return 0 except ValueError as msg: logging.InstallLog.writeToFile(str(msg) + " [removePHP]") return 0 return 1 def Main(): remove = unInstallCyberPanel() remove.removeLiteSpeed() remove.removeMysql() remove.removePostfixDovecot() remove.removePureFTPD() remove.removeCyberPanel() remove.removeGunicorn() remove.unInstallCyberPanelRepo() remove.removePowerDNS() remove.removePHP() print("##########################################") print(" Successfully Uninstalled ") print("##########################################") Main()
Close