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 /
course /
[ HOME SHELL ]
Name
Size
Permission
Action
format
[ DIR ]
drwxrwxrwx
publish
[ DIR ]
drwxrwxrwx
report
[ DIR ]
drwxrwxrwx
tests
[ DIR ]
drwxrwxrwx
yui
[ DIR ]
drwxrwxrwx
category.php
1.21
KB
-rwxrwxrwx
changenumsections.php
2.19
KB
-rwxrwxrwx
completion.js
3.81
KB
-rwxrwxrwx
completion.php
5.1
KB
-rwxrwxrwx
completion_form.php
14.43
KB
-rwxrwxrwx
delete.php
3.19
KB
-rwxrwxrwx
delete_category_form.php
3.94
KB
-rwxrwxrwx
dndupload.js
39.78
KB
-rwxrwxrwx
dndupload.php
1.56
KB
-rwxrwxrwx
dnduploadlib.php
30.38
KB
-rwxrwxrwx
edit.php
6.99
KB
-rwxrwxrwx
edit_form.php
16.54
KB
-rwxrwxrwx
editcategory.php
4.34
KB
-rwxrwxrwx
editcategory_form.php
3.18
KB
-rwxrwxrwx
editsection.php
3.68
KB
-rwxrwxrwx
editsection_form.php
16.63
KB
-rwxrwxrwx
enrol.php
1021
B
-rwxrwxrwx
externallib.php
89.19
KB
-rwxrwxrwx
index.php
2
KB
-rwxrwxrwx
info.php
1.61
KB
-rwxrwxrwx
jumpto.php
1.23
KB
-rwxrwxrwx
lib.php
118.29
KB
-rwxrwxrwx
loginas.php
2.32
KB
-rwxrwxrwx
manage.php
31.95
KB
-rwxrwxrwx
mod.php
11.76
KB
-rwxrwxrwx
modduplicate.php
5.37
KB
-rwxrwxrwx
modedit.php
11.48
KB
-rwxrwxrwx
modlib.php
20.91
KB
-rwxrwxrwx
moodleform_mod.php
40.69
KB
-rwxrwxrwx
pending.php
5.44
KB
-rwxrwxrwx
recent.php
8.21
KB
-rwxrwxrwx
recent_form.php
6.72
KB
-rwxrwxrwx
renderer.php
100.62
KB
-rwxrwxrwx
report.php
1.32
KB
-rwxrwxrwx
request.php
2.27
KB
-rwxrwxrwx
request_form.php
6.54
KB
-rwxrwxrwx
reset.php
3.46
KB
-rwxrwxrwx
reset_form.php
6.51
KB
-rwxrwxrwx
resources.php
4.94
KB
-rwxrwxrwx
rest.php
8.79
KB
-rwxrwxrwx
scales.php
4.96
KB
-rwxrwxrwx
search.php
3.81
KB
-rwxrwxrwx
style.css
0
B
-rwxrwxrwx
switchrole.php
2.53
KB
-rwxrwxrwx
togglecompletion.php
6.13
KB
-rwxrwxrwx
user.php
4.93
KB
-rwxrwxrwx
view.php
11.49
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : mod.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/>. /** * Moves, adds, updates, duplicates or deletes modules in a course * * @copyright 1999 Martin Dougiamas http://dougiamas.com * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later * @package course */ require("../config.php"); require_once("lib.php"); $sectionreturn = optional_param('sr', null, PARAM_INT); $add = optional_param('add', '', PARAM_ALPHA); $type = optional_param('type', '', PARAM_ALPHA); $indent = optional_param('indent', 0, PARAM_INT); $update = optional_param('update', 0, PARAM_INT); $duplicate = optional_param('duplicate', 0, PARAM_INT); $hide = optional_param('hide', 0, PARAM_INT); $show = optional_param('show', 0, PARAM_INT); $copy = optional_param('copy', 0, PARAM_INT); $moveto = optional_param('moveto', 0, PARAM_INT); $movetosection = optional_param('movetosection', 0, PARAM_INT); $delete = optional_param('delete', 0, PARAM_INT); $course = optional_param('course', 0, PARAM_INT); $groupmode = optional_param('groupmode', -1, PARAM_INT); $cancelcopy = optional_param('cancelcopy', 0, PARAM_BOOL); $confirm = optional_param('confirm', 0, PARAM_BOOL); // This page should always redirect $url = new moodle_url('/course/mod.php'); foreach (compact('indent','update','hide','show','copy','moveto','movetosection','delete','course','cancelcopy','confirm') as $key=>$value) { if ($value !== 0) { $url->param($key, $value); } } $url->param('sr', $sectionreturn); if ($add !== '') { $url->param('add', $add); } if ($type !== '') { $url->param('type', $type); } if ($groupmode !== '') { $url->param('groupmode', $groupmode); } $PAGE->set_url($url); require_login(); //check if we are adding / editing a module that has new forms using formslib if (!empty($add)) { $id = required_param('id', PARAM_INT); $section = required_param('section', PARAM_INT); $type = optional_param('type', '', PARAM_ALPHA); $returntomod = optional_param('return', 0, PARAM_BOOL); redirect("$CFG->wwwroot/course/modedit.php?add=$add&type=$type&course=$id§ion=$section&return=$returntomod&sr=$sectionreturn"); } else if (!empty($update)) { $cm = get_coursemodule_from_id('', $update, 0, true, MUST_EXIST); $returntomod = optional_param('return', 0, PARAM_BOOL); redirect("$CFG->wwwroot/course/modedit.php?update=$update&return=$returntomod&sr=$sectionreturn"); } else if (!empty($duplicate)) { $cm = get_coursemodule_from_id('', $duplicate, 0, true, MUST_EXIST); $course = $DB->get_record('course', array('id' => $cm->course), '*', MUST_EXIST); require_login($course, false, $cm); $coursecontext = context_course::instance($course->id); $modcontext = context_module::instance($cm->id); require_capability('moodle/course:manageactivities', $coursecontext); if (!$confirm or !confirm_sesskey()) { $PAGE->set_title(get_string('duplicate')); $PAGE->set_heading($course->fullname); $PAGE->navbar->add(get_string('duplicatinga', 'core', format_string($cm->name))); $PAGE->set_pagelayout('incourse'); $a = new stdClass(); $a->modtype = get_string('modulename', $cm->modname); $a->modname = format_string($cm->name); $a->modid = $cm->id; echo $OUTPUT->header(); echo $OUTPUT->confirm( get_string('duplicateconfirm', 'core', $a), new single_button( new moodle_url('/course/modduplicate.php', array( 'cmid' => $cm->id, 'course' => $course->id, 'sr' => $sectionreturn)), get_string('continue'), 'post'), new single_button( course_get_url($course, $cm->sectionnum, array('sr' => $sectionreturn)), get_string('cancel'), 'get') ); echo $OUTPUT->footer(); die(); } } else if (!empty($delete)) { $cm = get_coursemodule_from_id('', $delete, 0, true, MUST_EXIST); $course = $DB->get_record('course', array('id' => $cm->course), '*', MUST_EXIST); require_login($course, false, $cm); $modcontext = context_module::instance($cm->id); require_capability('moodle/course:manageactivities', $modcontext); $return = course_get_url($course, $cm->sectionnum, array('sr' => $sectionreturn)); if (!$confirm or !confirm_sesskey()) { $fullmodulename = get_string('modulename', $cm->modname); $optionsyes = array('confirm'=>1, 'delete'=>$cm->id, 'sesskey'=>sesskey(), 'sr' => $sectionreturn); $strdeletecheck = get_string('deletecheck', '', $fullmodulename); $strdeletecheckfull = get_string('deletecheckfull', '', "$fullmodulename '$cm->name'"); $PAGE->set_pagetype('mod-' . $cm->modname . '-delete'); $PAGE->set_title($strdeletecheck); $PAGE->set_heading($course->fullname); $PAGE->navbar->add($strdeletecheck); echo $OUTPUT->header(); echo $OUTPUT->box_start('noticebox'); $formcontinue = new single_button(new moodle_url("$CFG->wwwroot/course/mod.php", $optionsyes), get_string('yes')); $formcancel = new single_button($return, get_string('no'), 'get'); echo $OUTPUT->confirm($strdeletecheckfull, $formcontinue, $formcancel); echo $OUTPUT->box_end(); echo $OUTPUT->footer(); exit; } // Delete the module. course_delete_module($cm->id); redirect($return); } if ((!empty($movetosection) or !empty($moveto)) and confirm_sesskey()) { $cm = get_coursemodule_from_id('', $USER->activitycopy, 0, true, MUST_EXIST); $course = $DB->get_record('course', array('id' => $cm->course), '*', MUST_EXIST); require_login($course, false, $cm); $coursecontext = context_course::instance($course->id); $modcontext = context_module::instance($cm->id); require_capability('moodle/course:manageactivities', $modcontext); if (!empty($movetosection)) { if (!$section = $DB->get_record('course_sections', array('id'=>$movetosection, 'course'=>$cm->course))) { print_error('sectionnotexist'); } $beforecm = NULL; } else { // normal moveto if (!$beforecm = get_coursemodule_from_id('', $moveto, $cm->course, true)) { print_error('invalidcoursemodule'); } if (!$section = $DB->get_record('course_sections', array('id'=>$beforecm->section, 'course'=>$cm->course))) { print_error('sectionnotexist'); } } if (!ismoving($section->course)) { print_error('needcopy', '', "view.php?id=$section->course"); } moveto_module($cm, $section, $beforecm); $sectionreturn = $USER->activitycopysectionreturn; unset($USER->activitycopy); unset($USER->activitycopycourse); unset($USER->activitycopyname); unset($USER->activitycopysectionreturn); redirect(course_get_url($course, $section->section, array('sr' => $sectionreturn))); } else if (!empty($indent) and confirm_sesskey()) { $id = required_param('id', PARAM_INT); $cm = get_coursemodule_from_id('', $id, 0, true, MUST_EXIST); $course = $DB->get_record('course', array('id' => $cm->course), '*', MUST_EXIST); require_login($course, false, $cm); $coursecontext = context_course::instance($course->id); $modcontext = context_module::instance($cm->id); require_capability('moodle/course:manageactivities', $modcontext); $cm->indent += $indent; if ($cm->indent < 0) { $cm->indent = 0; } $DB->set_field('course_modules', 'indent', $cm->indent, array('id'=>$cm->id)); rebuild_course_cache($cm->course); redirect(course_get_url($course, $cm->sectionnum, array('sr' => $sectionreturn))); } else if (!empty($hide) and confirm_sesskey()) { $cm = get_coursemodule_from_id('', $hide, 0, true, MUST_EXIST); $course = $DB->get_record('course', array('id' => $cm->course), '*', MUST_EXIST); require_login($course, false, $cm); $coursecontext = context_course::instance($course->id); $modcontext = context_module::instance($cm->id); require_capability('moodle/course:activityvisibility', $modcontext); set_coursemodule_visible($cm->id, 0); redirect(course_get_url($course, $cm->sectionnum, array('sr' => $sectionreturn))); } else if (!empty($show) and confirm_sesskey()) { $cm = get_coursemodule_from_id('', $show, 0, true, MUST_EXIST); $course = $DB->get_record('course', array('id' => $cm->course), '*', MUST_EXIST); require_login($course, false, $cm); $coursecontext = context_course::instance($course->id); $modcontext = context_module::instance($cm->id); require_capability('moodle/course:activityvisibility', $modcontext); $section = $DB->get_record('course_sections', array('id'=>$cm->section), '*', MUST_EXIST); $module = $DB->get_record('modules', array('id'=>$cm->module), '*', MUST_EXIST); if ($module->visible and ($section->visible or (SITEID == $cm->course))) { set_coursemodule_visible($cm->id, 1); } redirect(course_get_url($course, $section->section, array('sr' => $sectionreturn))); } else if ($groupmode > -1 and confirm_sesskey()) { $id = required_param('id', PARAM_INT); $cm = get_coursemodule_from_id('', $id, 0, true, MUST_EXIST); $course = $DB->get_record('course', array('id' => $cm->course), '*', MUST_EXIST); require_login($course, false, $cm); $coursecontext = context_course::instance($course->id); $modcontext = context_module::instance($cm->id); require_capability('moodle/course:manageactivities', $modcontext); set_coursemodule_groupmode($cm->id, $groupmode); redirect(course_get_url($course, $cm->sectionnum, array('sr' => $sectionreturn))); } else if (!empty($copy) and confirm_sesskey()) { // value = course module $cm = get_coursemodule_from_id('', $copy, 0, true, MUST_EXIST); $course = $DB->get_record('course', array('id' => $cm->course), '*', MUST_EXIST); require_login($course, false, $cm); $coursecontext = context_course::instance($course->id); $modcontext = context_module::instance($cm->id); require_capability('moodle/course:manageactivities', $modcontext); $section = $DB->get_record('course_sections', array('id'=>$cm->section), '*', MUST_EXIST); $USER->activitycopy = $copy; $USER->activitycopycourse = $cm->course; $USER->activitycopyname = $cm->name; $USER->activitycopysectionreturn = $sectionreturn; redirect(course_get_url($course, $section->section, array('sr' => $sectionreturn))); } else if (!empty($cancelcopy) and confirm_sesskey()) { // value = course module $courseid = $USER->activitycopycourse; $course = $DB->get_record('course', array('id' => $courseid), '*', MUST_EXIST); $cm = get_coursemodule_from_id('', $USER->activitycopy, 0, true, IGNORE_MISSING); $sectionreturn = $USER->activitycopysectionreturn; unset($USER->activitycopy); unset($USER->activitycopycourse); unset($USER->activitycopyname); unset($USER->activitycopysectionreturn); redirect(course_get_url($course, $cm->sectionnum, array('sr' => $sectionreturn))); } else { print_error('unknowaction'); }
Close