Linux amd.servercpanel.com 5.14.0-570.25.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 9 04:57:09 EDT 2025 x86_64
LiteSpeed
Server IP : 161.248.188.165 & Your IP : 216.73.216.219
Domains :
Cant Read [ /etc/named.conf ]
User : oishifashion
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
sitepad /
editor /
site-inc /
js /
codemirror /
Delete
Unzip
Name
Size
Permission
Date
Action
codemirror.min.css
15.53
KB
-rw-r--r--
2025-11-28 07:18
codemirror.min.js
571.69
KB
-rw-r--r--
2025-11-28 07:18
csslint.js
368.78
KB
-rw-r--r--
2025-11-28 07:18
esprima.js
276.51
KB
-rw-r--r--
2025-11-28 07:18
fakejshint.js
1002
B
-rw-r--r--
2025-11-28 07:18
htmlhint-kses.js
984
B
-rw-r--r--
2025-11-28 07:18
htmlhint.js
17.32
KB
-rw-r--r--
2025-11-28 07:18
jsonlint.js
15.81
KB
-rw-r--r--
2025-11-28 07:18
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 }; };