Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
htdocs /
phpMyAdmin /
templates /
list /
[ HOME SHELL ]
Name
Size
Permission
Action
item.phtml
1.63
KB
-rwxrwxr-x
unordered.phtml
921
B
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : item.phtml
<?php /** * Display item of a list. * * $content - mandatory string - Content to display * $id - optional string - Contains the id of li tag * $class - optional string - Contains the class name(s) of li tag * $mysql_help_page - optional string - Related help page * $url - optional array: - href - optional string - Destination page or anchor * - target - optional string - Target of link * - class - optional string - Class of link * - title - optional string - Title of link */ ?> <li <?= !empty($id) ? ' id="' . $id . '"' : null ?> <?= !empty($class) ? ' class="' . $class . '"' : null ?>> <?php if (isset($url) && is_array($url) && array_filter($url)) : ?> <a<?= !empty($url['href']) ? ' href="' . $url['href'] . '"' : null ?> <?= !empty($url['target']) ? ' target="' . $url['target'] . '"' : null; ?> <?= !empty($url['target']) && $url['target'] == '_blank' ? ' rel="noopener noreferrer"' : null; ?> <?= !empty($url['id']) ? ' id="' . $url['id'] . '"' : null; ?> <?= !empty($url['class']) ? ' class="' . $url['class'] . '"' : null; ?> <?= !empty($url['title']) ? ' title="' . $url['title'] . '"' : null; ?>> <?php endif; ?> <?= $content ?> <?php if (isset($url) && is_array($url) && array_filter($url)) : ?> </a> <?php endif; ?> <?php if (!empty($mysql_help_page)): ?> <?= PMA\libraries\Util::showMySQLDocu($mysql_help_page) ?> <?php endif; ?> </li>
Close