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 /
backup /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
migrations
[ DIR ]
drwxr-xr-x
static
[ DIR ]
drwxr-xr-x
templates
[ DIR ]
drwxr-xr-x
.DS_Store
6
KB
-rw-r--r--
__init__.py
0
B
-rw-r--r--
admin.py
145
B
-rw-r--r--
apps.py
113
B
-rw-r--r--
backupManager.py
98.01
KB
-rw-r--r--
backupRouter.py
1.07
KB
-rw-r--r--
models.py
3.92
KB
-rw-r--r--
pluginManager.py
3.61
KB
-rw-r--r--
signals.py
2.77
KB
-rw-r--r--
tests.py
348
B
-rw-r--r--
urls.py
4.46
KB
-rw-r--r--
views.py
15.14
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : backupRouter.py
class backupRouter: """ A router to control all database operations on models in the auth application. """ def db_for_read(self, model, **hints): """ Attempts to read auth models go to auth_db. """ if model._meta.app_label == 'backup': return 'rootdb' return None def db_for_write(self, model, **hints): """ Attempts to write auth models go to auth_db. """ if model._meta.app_label == 'backup': return 'rootdb' return None def allow_relation(self, obj1, obj2, **hints): """ Allow relations if a model in the auth app is involved. """ if obj1._meta.app_label == 'backup' or \ obj2._meta.app_label == 'backup': return True return None def allow_migrate(self, db, app_label, model_name=None, **hints): """ Make sure the auth app only appears in the 'auth_db' database. """ if app_label == 'backup': return db == 'rootdb' return None
Close