Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.1.1 & Your IP : 3.144.17.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
phpmyadmin /
js /
src /
transformations /
Delete
Unzip
Name
Size
Permission
Date
Action
image_upload.js
787
B
-rw-r--r--
2021-06-04 04:20
json.js
628
B
-rw-r--r--
2021-06-04 04:20
json_editor.js
435
B
-rw-r--r--
2021-06-04 04:20
sql_editor.js
276
B
-rw-r--r--
2021-06-04 04:20
xml.js
623
B
-rw-r--r--
2021-06-04 04:20
xml_editor.js
370
B
-rw-r--r--
2021-06-04 04:20
Save
Rename
/** * XML syntax highlighting transformation plugin */ AJAX.registerOnload('transformations/xml.js', function () { var $elm = $('#page_content').find('code.xml'); $elm.each(function () { var $json = $(this); var $pre = $json.find('pre'); /* We only care about visible elements to avoid double processing */ if ($pre.is(':visible')) { var $highlight = $('<div class="xml-highlight cm-s-default"></div>'); $json.append($highlight); CodeMirror.runMode($json.text(), 'application/xml', $highlight[0]); $pre.hide(); } }); });