Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.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 /
transformations /
Delete
Unzip
Name
Size
Permission
Date
Action
image_upload.js
831
B
-rw-r--r--
2017-01-23 20:20
json.js
668
B
-rw-r--r--
2017-01-23 20:20
json_editor.js
476
B
-rw-r--r--
2017-01-23 20:20
sql_editor.js
312
B
-rw-r--r--
2017-01-23 20:20
xml.js
664
B
-rw-r--r--
2017-01-23 20:20
xml_editor.js
412
B
-rw-r--r--
2017-01-23 20:20
Save
Rename
/* vim: set expandtab sw=4 ts=4 sts=4: */ /** * JSON syntax highlighting transformation plugin */ AJAX.registerOnload('transformations/json.js', function() { var $elm = $('#page_content').find('code.json'); $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="json-highlight cm-s-default"></div>'); $json.append($highlight); CodeMirror.runMode($json.text(), 'application/json', $highlight[0]); $pre.hide(); } }); });