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 /
databases /
templates /
databases /
[ HOME SHELL ]
Name
Size
Permission
Action
AutoLogin.html
1.86
KB
-rw-r--r--
OptimizeMySQL.html
17.81
KB
-rw-r--r--
Updatemysql.html
4.42
KB
-rw-r--r--
createDatabase.html
17.1
KB
-rw-r--r--
deleteDatabase.html
17.25
KB
-rw-r--r--
index.html
5.39
KB
-rw-r--r--
listDataBases.html
22.99
KB
-rw-r--r--
mysqlmanager.html
20.09
KB
-rw-r--r--
phpMyAdmin.html
3.71
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : phpMyAdmin.html
{% extends "baseTemplate/index.html" %} {% load i18n %} {% block title %}{% trans "PHPMYAdmin - CyberPanel" %}{% endblock %} {% block content %} {% load static %} {% get_current_language as LANGUAGE_CODE %} <!-- Current language: {{ LANGUAGE_CODE }} --> <style> /* PHPMyAdmin 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); max-width: 800px; margin: 0 auto; } .panel-body { padding: 30px; } .title-hero { color: var(--text-primary, #2f3640); font-size: 24px; font-weight: 700; margin-bottom: 30px; text-align: center; } .example-box-wrapper { background: transparent; text-align: center; } .example-box-wrapper p { color: var(--text-secondary, #8893a7); font-size: 16px; line-height: 1.6; margin-bottom: 20px; } .btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border: none; border-radius: 8px; font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.2s ease; text-decoration: none; } .btn-primary { background: var(--accent-color, #5b5fcf); color: white !important; } .btn-primary:hover { background: var(--accent-hover, #4b4fbf); box-shadow: 0 4px 12px var(--accent-shadow, rgba(91,95,207,0.3)); transform: translateY(-2px); } .btn img { width: 16px; height: 16px; margin-left: 8px; } a { text-decoration: none; } </style> <div ng-controller="phpMyAdmin" class="container"> <div id="page-title"> <h2>{% trans "PHPMYAdmin" %}</h2> <p>{% trans "Access your databases via PHPMYAdmin" %}</p> </div> <div class="panel"> <div class="panel-body"> <h3 class="title-hero"> {% trans "PHPMYAdmin" %} </h3> <div class="example-box-wrapper"> <p>{% trans "Auto-login for PHPMYAdmin is now supported. Click the button below to generate auto-access for PHPMYAdmin" %}</p> <br> <a ng-click="generateAccess()" href="#"> <button id="phpMyAdminlogin" class="btn btn-primary">Access Now <img ng-hide="cyberPanelLoading" src="{% static 'images/loading.gif' %}"></button> </a> </div> </div> </div> <!-- Here we are making the phpmyadmin page autoload in current tab --> <script type="text/javascript"> $(document).ready(function(){$(function(){$('#phpMyAdminlogin').click();});}); </script> </div> {% endblock %}
Close