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 /
dns /
templates /
dns /
[ HOME SHELL ]
Name
Size
Permission
Action
addDeleteDNSRecords.html
42.34
KB
-rw-r--r--
addDeleteDNSRecordsCloudFlare....
46.73
KB
-rw-r--r--
configureDefaultNameServers.ht...
21.38
KB
-rw-r--r--
createDNSZone.html
21.98
KB
-rw-r--r--
createNameServer.html
20.97
KB
-rw-r--r--
deleteDNSZone.html
8
KB
-rw-r--r--
index.html
7.57
KB
-rw-r--r--
resetdnsconf.html
14.68
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.html
{% extends "baseTemplate/index.html" %} {% load i18n %} {% block title %}{% trans "DNS Functions - CyberPanel" %}{% endblock %} {% block content %} {% load static %} {% get_current_language as LANGUAGE_CODE %} <!-- Current language: {{ LANGUAGE_CODE }} --> <style> /* DNS Page Styles with Dark Mode Support */ .container { background: var(--bg-primary, #f0f0ff); min-height: 100vh; padding: 20px; } #page-title { text-align: center; margin-bottom: 30px; } #page-title h2 { color: var(--text-primary, #2f3640); font-size: 32px; font-weight: 700; margin-bottom: 10px; } #page-title p { color: var(--text-secondary, #8893a7); font-size: 16px; } .panel { background: var(--bg-secondary, white); border-radius: 12px; box-shadow: 0 2px 8px var(--shadow-color, rgba(0,0,0,0.08)); border: 1px solid var(--border-color, #e8e9ff); } .panel-body { padding: 30px; } .content-box-header { color: var(--text-primary, #2f3640); font-size: 24px; font-weight: 700; margin-bottom: 30px; text-align: center; } .tile-box { display: block; text-decoration: none; padding: 25px; border-radius: 8px; text-align: center; transition: all 0.3s ease; margin-bottom: 20px; } .tile-box.btn-primary { background: var(--accent-color, #5b5fcf) !important; color: white !important; border: 1px solid var(--accent-color, #5b5fcf); } .tile-box.btn-primary:hover { background: var(--accent-hover, #4b4fbf) !important; box-shadow: 0 4px 12px var(--accent-shadow, rgba(91,95,207,0.3)); transform: translateY(-2px); } .tile-box .tile-header { font-size: 16px; font-weight: 600; margin-bottom: 15px; color: inherit; } .tile-box .tile-content-wrapper i { font-size: 48px; color: inherit; } .example-box-wrapper { background: transparent; } .btn-min-width { min-width: 250px; } @media (max-width: 768px) { .btn-min-width { min-width: 100%; } } </style> <div class="container"> <div id="page-title"> <h2>{% trans "DNS Functions" %}</h2> <p>{% trans "Create, edit and delete DNS zones on this page." %}</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"> {% if type == 3 %} <div class="row"> <div class="col-md-3 btn-min-width"> <a href="{% url 'createDNSZone' %}" title="{% trans 'Create DNS Zone' %}" class="tile-box tile-box-shortcut btn-primary"> <div class="tile-header"> {% trans "Create DNS Zone" %} </div> <div class="tile-content-wrapper"> <i class="glyph-icon icon-dashboard"></i> </div> </a> </div> <div class="col-md-3 btn-min-width"> <a href="{% url 'deleteDNSZone' %}" title="{% trans 'Delete Zone' %}" class="tile-box tile-box-shortcut btn-primary"> <div class="tile-header"> {% trans "Delete Zone" %} </div> <div class="tile-content-wrapper"> <i class="glyph-icon icon-dashboard"></i> </div> </a> </div> <div class="col-md-3 btn-min-width"> <a href="{% url 'addDeleteDNSRecords' %}" title="{% trans 'Add Delete Records' %}" class="tile-box tile-box-shortcut btn-primary"> <div class="tile-header"> {% trans "Add Delete/Records" %} </div> <div class="tile-content-wrapper"> <i class="glyph-icon icon-dashboard"></i> </div> </a> </div> </div> {% else %} <div class="row"> <div class="col-md-3 btn-min-width"> <a href="{% url 'createNameserver' %}" title="{% trans 'Create Nameserver' %}" class="tile-box tile-box-shortcut btn-primary"> <div class="tile-header"> {% trans "Create Nameserver" %} </div> <div class="tile-content-wrapper"> <i class="fa fa-server"></i> </div> </a> </div> <div class="col-md-3 btn-min-width"> <a href="{% url 'createDNSZone' %}" title="{% trans 'Create DNS Zone' %}" class="tile-box tile-box-shortcut btn-primary"> <div class="tile-header"> {% trans "Create DNS Zone" %} </div> <div class="tile-content-wrapper"> <i class="fa fa-globe"></i> </div> </a> </div> <div class="col-md-3 btn-min-width"> <a href="{% url 'deleteDNSZone' %}" title="{% trans 'Delete Zone' %}" class="tile-box tile-box-shortcut btn-primary"> <div class="tile-header"> {% trans "Delete Zone" %} </div> <div class="tile-content-wrapper"> <i class="fa fa-trash"></i> </div> </a> </div> <div class="col-md-3 btn-min-width"> <a href="{% url 'addDeleteDNSRecords' %}" title="{% trans 'Add Delete Records' %}" class="tile-box tile-box-shortcut btn-primary"> <div class="tile-header"> {% trans "Add Delete/Records" %} </div> <div class="tile-content-wrapper"> <i class="fa fa-folder-open"></i> </div> </a> </div> </div> {% endif %} </div> </div> </div> </div> {% endblock %}
Close