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 : models.py
# -*- coding: utf-8 -*- from django.db import models from django.contrib.auth.models import User class TestPluginSettings(models.Model): """Model to store plugin settings and enable/disable state""" user = models.ForeignKey(User, on_delete=models.CASCADE, null=True, blank=True) plugin_enabled = models.BooleanField(default=True, help_text="Enable or disable the plugin") test_count = models.IntegerField(default=0, help_text="Number of times test button was clicked") last_test_time = models.DateTimeField(auto_now=True, help_text="Last time test button was clicked") custom_message = models.TextField(default="Test plugin is working!", help_text="Custom message for popup") class Meta: verbose_name = "Test Plugin Settings" verbose_name_plural = "Test Plugin Settings" def __str__(self): return f"Test Plugin Settings - Enabled: {self.plugin_enabled}" class TestPluginLog(models.Model): """Model to store plugin activity logs""" timestamp = models.DateTimeField(auto_now_add=True) action = models.CharField(max_length=100) message = models.TextField() user = models.ForeignKey(User, on_delete=models.CASCADE, null=True, blank=True) class Meta: verbose_name = "Test Plugin Log" verbose_name_plural = "Test Plugin Logs" ordering = ['-timestamp'] def __str__(self): return f"{self.timestamp} - {self.action}: {self.message}"
Close