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 /
list /
[ HOME SHELL ]
Name
Size
Permission
Action
item.phtml
1.63
KB
-rw-r--r--
unordered.phtml
921
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : unordered.phtml
<?php /** * Display unordered list. * * $class - optional string - Contains the class name(s) of ul tag * $id - optional string - Contains the id of ul tag * $item - mandatory string|array - If string, this is the content * - Else, see templates/list/item.phtml * $content - mandatory string - Content to display if $item is empty */ ?> <ul<?= !empty($class) ? ' class="' . $class . '"' : null ?> <?= !empty($id) ? ' id="' . $id . '"' : null ?>> <?php if (!empty($items)): ?> <?php foreach ($items as $item): ?> <?php if (!is_array($item)): ?> <?php $item = array('content' => $item) ?> <?php endif; ?> <?= PMA\libraries\Template::get('list/item') ->render($item) ?> <?php endforeach; ?> <?php elseif (!empty($content)): ?> <?= $content ?> <?php endif; ?> </ul>
Close