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.31
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 /
admin /
tool /
usertours /
amd /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
managesteps.js
1.83
KB
-rwxrwxrwx
managetours.js
1.84
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
tour.js
49.53
KB
-rwxrwxrwx
usertours.js
9.06
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : managetours.js
/** * Tour management code. * * @module tool_usertours/managetours * @class managetours * @package tool_usertours * @copyright 2016 Andrew Nicols <andrew@nicols.co.uk> */ define( ['jquery', 'core/ajax', 'core/str', 'core/notification'], function($, ajax, str, notification) { var manager = { /** * Confirm removal of the specified tour. * * @method removeTour * @param {EventFacade} e The EventFacade */ removeTour: function(e) { e.preventDefault(); var targetUrl = $(e.currentTarget).attr('href'); str.get_strings([ { key: 'confirmtourremovaltitle', component: 'tool_usertours' }, { key: 'confirmtourremovalquestion', component: 'tool_usertours' }, { key: 'yes', component: 'moodle' }, { key: 'no', component: 'moodle' } ]) .then(function(s) { notification.confirm(s[0], s[1], s[2], s[3], function() { window.location = targetUrl; }); return; }) .catch(); }, /** * Setup the tour management UI. * * @method setup */ setup: function() { $('body').delegate('[data-action="delete"]', 'click', manager.removeTour); } }; return /** @alias module:tool_usertours/managetours */ { /** * Setup the tour management UI. * * @method setup */ setup: manager.setup }; });
Close