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.51
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
/
var /
www /
html /
insepet /
libromaster /
theme /
archaius /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
javascript
[ DIR ]
drwxrwxrwx
lang
[ DIR ]
drwxrwxrwx
layout
[ DIR ]
drwxrwxrwx
pix
[ DIR ]
drwxrwxrwx
style
[ DIR ]
drwxrwxrwx
.mad-root
0
B
-rw-r--r--
README.txt
636
B
-rwxrwxrwx
config.php
4.98
KB
-rwxrwxrwx
lib.php
4.45
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
renderers.php
2.66
KB
-rwxrwxrwx
settings.php
4.3
KB
-rwxrwxrwx
version.php
1.13
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : renderers.php
<?php class theme_archaius_core_renderer extends core_renderer { /** * Prints a nice side block with an optional header. * * The content is described * by a {@link block_contents} object. * * @param block_contents $bc HTML for the content * @param string $region the region the block is appearing in. * @return string the HTML to be output. */ function block(block_contents $bc, $region) { $bc = clone($bc); // Avoid messing up the object passed in. if (empty($bc->blockinstanceid) || !strip_tags($bc->title)) { $bc->collapsible = block_contents::NOT_HIDEABLE; } if ($bc->collapsible == block_contents::HIDDEN) { $bc->add_class('hidden'); } if (!empty($bc->controls)) { $bc->add_class('block_with_controls'); } $skiptitle = strip_tags($bc->title); if (empty($skiptitle)) { $output = ''; $skipdest = ''; } else { $output = html_writer::tag('a', get_string('skipa', 'access', $skiptitle), array('href' => '#sb-' . $bc->skipid, 'class' => 'skip-block')); $skipdest = html_writer::tag('span', '', array('id' => 'sb-' . $bc->skipid, 'class' => 'skip-block-to')); } $title = ''; if ($bc->title) { $title = html_writer::tag('h2', $bc->title); } $controlshtml = $this->block_controls($bc->controls); if ($title || $controlshtml) { $output .= html_writer::tag('div', html_writer::tag('div', $title , array('class' => 'title')), array('class' => 'header-tab')); } $output .= html_writer::start_tag('div', $bc->attributes); if ($title || $controlshtml) { $output .= html_writer::tag('div', html_writer::tag('div', html_writer::tag('div', '', array('class'=>'block_action')). $title . $controlshtml, array('class' => 'title')), array('class' => 'header')); } $output .= html_writer::start_tag('div', array('class' => 'content')); if (!$title && !$controlshtml) { $output .= html_writer::tag('div', '', array('class'=>'block_action notitle')); } $output .= $bc->content; if ($bc->footer) { $output .= html_writer::tag('div', $bc->footer, array('class' => 'footer')); } $output .= html_writer::end_tag('div'); $output .= html_writer::end_tag('div'); if ($bc->annotation) { $output .= html_writer::tag('div', $bc->annotation, array('class' => 'blockannotation')); } $output .= $skipdest; $this->init_block_hider_js($bc); return $output; } }
Close