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 /
insepet /
libromaster /
course /
[ HOME SHELL ]
Name
Size
Permission
Action
format
[ DIR ]
drwxrwxrwx
publish
[ DIR ]
drwxrwxrwx
report
[ DIR ]
drwxrwxrwx
tests
[ DIR ]
drwxrwxrwx
yui
[ DIR ]
drwxrwxrwx
category.php
1.21
KB
-rwxrwxrwx
changenumsections.php
2.19
KB
-rwxrwxrwx
completion.js
3.81
KB
-rwxrwxrwx
completion.php
5.1
KB
-rwxrwxrwx
completion_form.php
14.43
KB
-rwxrwxrwx
delete.php
3.19
KB
-rwxrwxrwx
delete_category_form.php
3.94
KB
-rwxrwxrwx
dndupload.js
39.78
KB
-rwxrwxrwx
dndupload.php
1.56
KB
-rwxrwxrwx
dnduploadlib.php
30.38
KB
-rwxrwxrwx
edit.php
6.99
KB
-rwxrwxrwx
edit_form.php
16.54
KB
-rwxrwxrwx
editcategory.php
4.34
KB
-rwxrwxrwx
editcategory_form.php
3.18
KB
-rwxrwxrwx
editsection.php
3.68
KB
-rwxrwxrwx
editsection_form.php
16.63
KB
-rwxrwxrwx
enrol.php
1021
B
-rwxrwxrwx
externallib.php
89.19
KB
-rwxrwxrwx
index.php
2
KB
-rwxrwxrwx
info.php
1.61
KB
-rwxrwxrwx
jumpto.php
1.23
KB
-rwxrwxrwx
lib.php
118.29
KB
-rwxrwxrwx
loginas.php
2.32
KB
-rwxrwxrwx
manage.php
31.95
KB
-rwxrwxrwx
mod.php
11.76
KB
-rwxrwxrwx
modduplicate.php
5.37
KB
-rwxrwxrwx
modedit.php
11.48
KB
-rwxrwxrwx
modlib.php
20.91
KB
-rwxrwxrwx
moodleform_mod.php
40.69
KB
-rwxrwxrwx
pending.php
5.44
KB
-rwxrwxrwx
recent.php
8.21
KB
-rwxrwxrwx
recent_form.php
6.72
KB
-rwxrwxrwx
renderer.php
100.62
KB
-rwxrwxrwx
report.php
1.32
KB
-rwxrwxrwx
request.php
2.27
KB
-rwxrwxrwx
request_form.php
6.54
KB
-rwxrwxrwx
reset.php
3.46
KB
-rwxrwxrwx
reset_form.php
6.51
KB
-rwxrwxrwx
resources.php
4.94
KB
-rwxrwxrwx
rest.php
8.79
KB
-rwxrwxrwx
scales.php
4.96
KB
-rwxrwxrwx
search.php
3.81
KB
-rwxrwxrwx
style.css
0
B
-rwxrwxrwx
switchrole.php
2.53
KB
-rwxrwxrwx
togglecompletion.php
6.13
KB
-rwxrwxrwx
user.php
4.93
KB
-rwxrwxrwx
view.php
11.49
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : completion.js
M.core_completion = {}; M.core_completion.init = function(Y) { // Check the reload-forcing var changeDetector = Y.one('#completion_dynamic_change'); if (changeDetector.get('value') > 0) { changeDetector.set('value', 0); window.location.reload(); return; } var handle_success = function(id, o, args) { Y.one('#completion_dynamic_change').set('value', 1); if (o.responseText != 'OK') { alert('An error occurred when attempting to save your tick mark.\n\n('+o.responseText+'.)'); //TODO: localize } else { var current = args.state.get('value'); var modulename = args.modulename.get('value'); if (current == 1) { var altstr = M.str.completion['completion-alt-manual-y'].replace('{$a}', modulename); var titlestr = M.str.completion['completion-title-manual-y'].replace('{$a}', modulename); args.state.set('value', 0); args.image.set('src', M.util.image_url('i/completion-manual-y', 'moodle')); args.image.set('alt', altstr); args.image.set('title', titlestr); } else { var altstr = M.str.completion['completion-alt-manual-n'].replace('{$a}', modulename); var titlestr = M.str.completion['completion-title-manual-n'].replace('{$a}', modulename); args.state.set('value', 1); args.image.set('src', M.util.image_url('i/completion-manual-n', 'moodle')); args.image.set('alt', altstr); args.image.set('title', titlestr); } } args.ajax.remove(); }; var handle_failure = function(id, o, args) { alert('An error occurred when attempting to save your tick mark.\n\n('+o.responseText+'.)'); //TODO: localize args.ajax.remove(); }; var toggle = function(e) { e.preventDefault(); var form = e.target; var cmid = 0; var completionstate = 0; var state = null; var image = null; var modulename = null; var inputs = Y.Node.getDOMNode(form).getElementsByTagName('input'); for (var i=0; i<inputs.length; i++) { switch (inputs[i].name) { case 'id': cmid = inputs[i].value; break; case 'completionstate': completionstate = inputs[i].value; state = Y.one(inputs[i]); break; case 'modulename': modulename = Y.one(inputs[i]); break; } if (inputs[i].type == 'image') { image = Y.one(inputs[i]); } } // start spinning the ajax indicator var ajax = Y.Node.create('<div class="ajaxworking" />'); form.append(ajax); var cfg = { method: "POST", data: 'id='+cmid+'&completionstate='+completionstate+'&fromajax=1&sesskey='+M.cfg.sesskey, on: { success: handle_success, failure: handle_failure }, arguments: {state: state, image: image, ajax: ajax, modulename: modulename} }; Y.use('io-base', function(Y) { Y.io(M.cfg.wwwroot+'/course/togglecompletion.php', cfg); }); }; // register submit handlers on manual tick completion forms Y.all('form.togglecompletion').each(function(form) { if (!form.hasClass('preventjs')) { Y.on('submit', toggle, form); } }); // hide the help if there are no completion toggles or icons var help = Y.one('#completionprogressid'); if (help && !(Y.one('form.togglecompletion') || Y.one('.autocompletion'))) { help.setStyle('display', 'none'); } };
Close