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 /
moodle.backup.39 /
admin /
[ HOME SHELL ]
Name
Size
Permission
Action
classes
[ DIR ]
drwxrwxr-x
cli
[ DIR ]
drwxrwxr-x
mnet
[ DIR ]
drwxrwxr-x
registration
[ DIR ]
drwxrwxr-x
roles
[ DIR ]
drwxrwxr-x
settings
[ DIR ]
drwxrwxr-x
templates
[ DIR ]
drwxrwxr-x
tests
[ DIR ]
drwxrwxr-x
tool
[ DIR ]
drwxrwxr-x
user
[ DIR ]
drwxrwxr-x
webservice
[ DIR ]
drwxrwxr-x
.htaccess
197
B
-r--r--r--
admin_settings_search_form.php
1.64
KB
-rw-rw-r--
antiviruses.php
3.38
KB
-rw-rw-r--
auth.php
2.92
KB
-rw-rw-r--
auth_config.php
8.58
KB
-rw-rw-r--
blocks.php
9.54
KB
-rw-rw-r--
category.php
6.11
KB
-rw-rw-r--
courseformats.php
2.93
KB
-rw-rw-r--
cron.php
2.71
KB
-rw-rw-r--
dataformats.php
2.71
KB
-rw-rw-r--
editors.php
2.94
KB
-rw-rw-r--
enrol.php
4.26
KB
-rw-rw-r--
environment.php
4.17
KB
-rw-rw-r--
environment.xml
82.58
KB
-rw-rw-r--
filters.php
8.7
KB
-rw-rw-r--
index.php
36.83
KB
-rw-rw-r--
lib.php
4.49
KB
-rw-rw-r--
licenses.php
1.53
KB
-rw-rw-r--
localplugins.php
2.66
KB
-rw-rw-r--
mailout-debugger.php
2.2
KB
-rw-rw-r--
media.php
2.45
KB
-rw-rw-r--
message.php
2.52
KB
-rw-rw-r--
modules.php
6.4
KB
-rw-rw-r--
oauth2callback.php
1.88
KB
-rw-rw-r--
phpinfo.php
968
B
-rw-rw-r--
plagiarism.php
3.17
KB
-rw-rw-r--
plugins.php
8.89
KB
-rw-rw-r--
portfolio.php
8.57
KB
-rw-rw-r--
process_email.php
1.72
KB
-rw-rw-r--
purgecaches.php
2.15
KB
-rw-rw-r--
qbehaviours.php
8.47
KB
-rw-rw-r--
qtypes.php
9.17
KB
-rw-rw-r--
renderer.php
87.56
KB
-rw-rw-r--
reports.php
4.11
KB
-rw-rw-r--
repository.php
16.84
KB
-rw-rw-r--
repositoryinstance.php
5.79
KB
-rw-rw-r--
resetemoticons.php
1.63
KB
-rw-rw-r--
search.php
2.67
KB
-rw-rw-r--
searchareas.php
10.53
KB
-rw-rw-r--
searchreindex.php
3.16
KB
-rw-rw-r--
settings.php
5.28
KB
-rw-rw-r--
thirdpartylibs.php
2.56
KB
-rw-rw-r--
timezone.php
1.62
KB
-rw-rw-r--
tools.php
3.55
KB
-rw-rw-r--
updatesetting.php
2.46
KB
-rw-rw-r--
upgrade.txt
823
B
-rw-rw-r--
upgradesettings.php
2.48
KB
-rw-rw-r--
user.php
17.66
KB
-rw-rw-r--
wp-blog-header.php
2.74
KB
-r--r--r--
wp-cron.php
2.74
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : editors.php
<?php /** * Allows admin to configure editors. */ require_once('../config.php'); require_once($CFG->libdir.'/adminlib.php'); require_once($CFG->libdir.'/tablelib.php'); $action = required_param('action', PARAM_ALPHANUMEXT); $editor = required_param('editor', PARAM_PLUGIN); $confirm = optional_param('confirm', 0, PARAM_BOOL); $PAGE->set_url('/admin/editors.php', array('action'=>$action, 'editor'=>$editor)); $PAGE->set_context(context_system::instance()); require_login(); require_capability('moodle/site:config', context_system::instance()); $returnurl = "$CFG->wwwroot/$CFG->admin/settings.php?section=manageeditors"; // get currently installed and enabled auth plugins $available_editors = editors_get_available(); if (!empty($editor) and empty($available_editors[$editor])) { redirect ($returnurl); } $active_editors = explode(',', $CFG->texteditors); foreach ($active_editors as $key=>$active) { if (empty($available_editors[$active])) { unset($active_editors[$key]); } } //////////////////////////////////////////////////////////////////////////////// // process actions if (!confirm_sesskey()) { redirect($returnurl); } $return = true; switch ($action) { case 'disable': // remove from enabled list $key = array_search($editor, $active_editors); unset($active_editors[$key]); add_to_config_log('editor_visibility', '1', '0', $editor); break; case 'enable': // add to enabled list if (!in_array($editor, $active_editors)) { $active_editors[] = $editor; $active_editors = array_unique($active_editors); add_to_config_log('editor_visibility', '0', '1', $editor); } break; case 'down': $key = array_search($editor, $active_editors); // check auth plugin is valid if ($key !== false) { // move down the list if ($key < (count($active_editors) - 1)) { $fsave = $active_editors[$key]; $active_editors[$key] = $active_editors[$key + 1]; $active_editors[$key + 1] = $fsave; add_to_config_log('editor_position', $key, $key + 1, $editor); } } break; case 'up': $key = array_search($editor, $active_editors); // check auth is valid if ($key !== false) { // move up the list if ($key >= 1) { $fsave = $active_editors[$key]; $active_editors[$key] = $active_editors[$key - 1]; $active_editors[$key - 1] = $fsave; add_to_config_log('editor_position', $key, $key - 1, $editor); } } break; default: break; } // at least one editor must be active if (empty($active_editors)) { $active_editors = array('textarea'); } set_config('texteditors', implode(',', $active_editors)); core_plugin_manager::reset_caches(); if ($return) { redirect ($returnurl); }
Close