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 : 18.226.163.8
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
famchicpd /
wp-includes /
js /
codemirror /
Delete
Unzip
Name
Size
Permission
Date
Action
codemirror.min.css
15.53
KB
-rw-r-----
2017-09-13 06:08
codemirror.min.js
571.69
KB
-rw-r-----
2017-09-13 06:08
csslint.js
358.17
KB
-rw-r-----
2019-10-25 16:38
esprima.js
276.51
KB
-rw-r-----
2018-01-23 01:29
fakejshint.js
1002
B
-rw-r-----
2018-01-23 01:29
htmlhint-kses.js
984
B
-rw-r-----
2017-09-13 06:08
htmlhint.js
17.32
KB
-rw-r-----
2017-09-13 06:08
jsonlint.js
15.81
KB
-rw-r-----
2017-09-13 06:08
Save
Rename
// JSHINT has some GPL Compatability issues, so we are faking it out and using esprima for validation // Based on https://github.com/jquery/esprima/blob/gh-pages/demo/validate.js which is MIT licensed var fakeJSHINT = new function() { var syntax, errors; var that = this; this.data = []; this.convertError = function( error ){ return { line: error.lineNumber, character: error.column, reason: error.description, code: 'E' }; }; this.parse = function( code ){ try { syntax = window.esprima.parse(code, { tolerant: true, loc: true }); errors = syntax.errors; if ( errors.length > 0 ) { for ( var i = 0; i < errors.length; i++) { var error = errors[i]; that.data.push( that.convertError( error ) ); } } else { that.data = []; } } catch (e) { that.data.push( that.convertError( e ) ); } }; }; window.JSHINT = function( text ){ fakeJSHINT.parse( text ); }; window.JSHINT.data = function(){ return { errors: fakeJSHINT.data }; };