Windows NT KAMIDAKI 10.0 build 19045 (Windows 10) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.3.9
Server IP : 192.168.3.16 & Your IP : 216.73.216.140
Domains :
Cant Read [ /etc/named.conf ]
User : SISTEMA
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
C: /
xampp /
phpMyAdmin /
js /
src /
transformations /
Delete
Unzip
Name
Size
Permission
Date
Action
image_upload.js
787
B
-rw-rw-rw-
2023-02-07 22:26
json.js
628
B
-rw-rw-rw-
2023-02-07 22:26
json_editor.js
435
B
-rw-rw-rw-
2023-02-07 22:26
sql_editor.js
276
B
-rw-rw-rw-
2023-02-07 22:26
xml.js
623
B
-rw-rw-rw-
2023-02-07 22:26
xml_editor.js
370
B
-rw-rw-rw-
2023-02-07 22:26
Save
Rename
/** * 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(); } }); });