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 : 3.145.51.214
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
ipflix /
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
/* 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 ); } } }); } });