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 /
e8 /
f7 /
[ HOME SHELL ]
Name
Size
Permission
Action
e8f79ccee9247ca21f51db26437590...
2.31
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : e8f79ccee9247ca21f51db26437590174aeaca05
/** * Defines the H5P.ArithmeticQuiz.CountdownWidget class */ H5P.ArithmeticQuiz.CountdownWidget = (function ($) { /** * A count down widget * * @class * @augments H5P.EventDispatcher * @namespace H5P.ArithmeticQuiz * @fires H5P.Event * * @param {number} seconds Number of seconds to count down * @param {Object} t Translations */ function CountdownWidget(seconds, t) { H5P.EventDispatcher.call(this); var originalSeconds = seconds; this.$countdownWidget = $('<div>', { 'class': 'h5p-baq-countdown', 'aria-hidden': true }).append($('<div>', { 'class': 'h5p-baq-countdown-inner', }).append($('<span>', { 'class': 'h5p-baq-countdown-text', text: seconds, 'aria-live': 'polite' }), $('<span>', { 'class': 'h5p-baq-countdown-bg' }))); this.$countdownText = this.$countdownWidget.find('.h5p-baq-countdown-text'); /** * Returns reference to DOM object * * @return {H5P.jQuery} */ this.create = function () { return this.$countdownWidget; }; /** * Start countdown */ this.start = function () { var self = this; this.$countdownWidget.attr('aria-hidden', false); if (!self.$countdownWidget.find('.h5p-baq-countdown-bg').hasClass('fuel')) { setTimeout(function(){ self.$countdownWidget.find('.h5p-baq-countdown-bg').addClass('fuel'); },1); } if (seconds <= 0) { self.$countdownWidget.attr('aria-hidden', true); self.trigger('ignition'); return; } self.decrement(); setTimeout(function(){ self.start(); }, 1000); }; /** * Restart the countdown */ this.restart = function () { var self = this; seconds = originalSeconds+1; self.decrement(); self.$countdownWidget.find('.h5p-baq-countdown-bg').removeClass('fuel'); setTimeout(function () { self.start(); }, 600); }; /** * Decrement counter */ this.decrement = function () { seconds--; this.$countdownText.html(seconds === 0 ? t.go : seconds); }; } CountdownWidget.prototype = Object.create(H5P.EventDispatcher.prototype); CountdownWidget.prototype.constructor = CountdownWidget; return CountdownWidget; })(H5P.jQuery);
Close