Linux premium71.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
Server IP : 198.187.29.8 & Your IP : 3.21.34.100
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
cleahvkv /
dsfdf /
wp-includes /
js /
codemirror /
Delete
Unzip
Name
Size
Permission
Date
Action
codemirror.min.css
15.53
KB
-rw-r--r--
2021-01-05 18:46
codemirror.min.js
571.69
KB
-rw-r--r--
2021-01-05 18:46
csslint.js
368.78
KB
-rw-r--r--
2021-01-05 18:46
htmlhint-kses.js
984
B
-rw-r--r--
2021-01-05 18:46
htmlhint.js
17.32
KB
-rw-r--r--
2021-01-05 18:46
jshint.js
277.49
KB
-rw-r--r--
2021-01-05 18:46
jsonlint.js
15.81
KB
-rw-r--r--
2021-01-05 18:46
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 ); } } }); } });