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.71.195.86
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 /
library /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
settings
[ DIR ]
drwxr-xr-x
h5p-action-bar.js
2.66
KB
-rw-r--r--
h5p-confirmation-dialog.js
11.86
KB
-rw-r--r--
h5p-content-type.js
1.26
KB
-rw-r--r--
h5p-content-upgrade-process.js
9.35
KB
-rw-r--r--
h5p-content-upgrade-worker.js
1.47
KB
-rw-r--r--
h5p-content-upgrade.js
11.29
KB
-rw-r--r--
h5p-data-view.js
11.95
KB
-rw-r--r--
h5p-display-options.js
1.28
KB
-rw-r--r--
h5p-embed.js
1.93
KB
-rw-r--r--
h5p-event-dispatcher.js
6.29
KB
-rw-r--r--
h5p-hub-registration.js
161.72
KB
-rw-r--r--
h5p-hub-sharing.js
235.33
KB
-rw-r--r--
h5p-library-details.js
10.7
KB
-rw-r--r--
h5p-library-list.js
4.22
KB
-rw-r--r--
h5p-resizer.js
3.57
KB
-rw-r--r--
h5p-utils.js
12.51
KB
-rw-r--r--
h5p-version.js
926
B
-rw-r--r--
h5p-x-api-event.js
8.55
KB
-rw-r--r--
h5p-x-api.js
3.64
KB
-rw-r--r--
h5p.js
85.76
KB
-rw-r--r--
jquery.js
88.08
KB
-rw-r--r--
request-queue.js
11.41
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : h5p-content-type.js
/** * H5P.ContentType is a base class for all content types. Used by newRunnable() * * Functions here may be overridable by the libraries. In special cases, * it is also possible to override H5P.ContentType on a global level. * * NOTE that this doesn't actually 'extend' the event dispatcher but instead * it creates a single instance which all content types shares as their base * prototype. (in some cases this may be the root of strange event behavior) * * @class * @augments H5P.EventDispatcher */ H5P.ContentType = function (isRootLibrary) { function ContentType() {} // Inherit from EventDispatcher. ContentType.prototype = new H5P.EventDispatcher(); /** * Is library standalone or not? Not beeing standalone, means it is * included in another library * * @return {Boolean} */ ContentType.prototype.isRoot = function () { return isRootLibrary; }; /** * Returns the file path of a file in the current library * @param {string} filePath The path to the file relative to the library folder * @return {string} The full path to the file */ ContentType.prototype.getLibraryFilePath = function (filePath) { return H5P.getLibraryPath(this.libraryInfo.versionedNameNoSpaces) + '/' + filePath; }; return ContentType; };
Close