Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.31
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
phpmyadmin /
templates /
navigation /
[ HOME SHELL ]
Name
Size
Permission
Action
logo.phtml
1.42
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : logo.phtml
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * Manage logo display * * @package PhpMyAdmin-template * * @param bool $displayLogo Display logo or not * @param bool $useLogoLink Use link on logo or not * @param string $logoLink Destination of link on logo * @param string $linkAttribs Link's attributes */ $displayLogo = isset($displayLogo) ? $displayLogo : true; $useLogoLink = isset($useLogoLink) ? $useLogoLink : false; $logoLink = isset($logoLink) ? $logoLink : '#'; $linkAttribs = isset($linkAttribs) ? $linkAttribs : null; if (!isset($logo)) { $logo = null; if (isset($GLOBALS['pmaThemeImage'])) { $imgTag = '<img src="%s%s" ' . 'alt="phpMyAdmin" id="imgpmalogo" />'; if (@file_exists($GLOBALS['pmaThemeImage'] . 'logo_left.png')) { $logo = sprintf($imgTag, $GLOBALS['pmaThemeImage'], 'logo_left.png'); } elseif (@file_exists($GLOBALS['pmaThemeImage'] . 'pma_logo2.png')) { $logo = sprintf($imgTag, $GLOBALS['pmaThemeImage'], 'pma_logo2.png'); } } } ?> <!-- LOGO START --> <?php if (false === $displayLogo) : ?> <!-- LOGO END --> <?php return; endif; ?> <div id="pmalogo"> <?php if (true === $useLogoLink) : ?> <a href="<?= $logoLink; ?>"<?= isset($linkAttribs) ? ' ' . $linkAttribs : null; ?>> <?php endif; ?> <?= $logo; ?> <?php if (true === $useLogoLink) : ?> </a> <?php endif; ?> </div> <!-- LOGO END -->
Close