Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.140.201.179
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp_probe /
node_modules /
html-loader /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
attributesParser.js
1.06
KB
-rw-r--r--
2017-02-24 17:53
Save
Rename
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ var Parser = require("fastparse"); var processMatch = function(match, strUntilValue, name, value, index) { if(!this.isRelevantTagAttr(this.currentTag, name)) return; this.results.push({ start: index + strUntilValue.length, length: value.length, value: value }); }; var parser = new Parser({ outside: { "<!--.*?-->": true, "<![CDATA[.*?]]>": true, "<[!\\?].*?>": true, "<\/[^>]+>": true, "<([a-zA-Z\\-:]+)\\s*": function(match, tagName) { this.currentTag = tagName; return "inside"; } }, inside: { "\\s+": true, // eat up whitespace ">": "outside", // end of attributes "(([0-9a-zA-Z\\-:]+)\\s*=\\s*\")([^\"]*)\"": processMatch, "(([0-9a-zA-Z\\-:]+)\\s*=\\s*\')([^\']*)\'": processMatch, "(([0-9a-zA-Z\\-:]+)\\s*=\\s*)([^\\s>]+)": processMatch } }); module.exports = function parse(html, isRelevantTagAttr) { return parser.parse("outside", html, { currentTag: null, results: [], isRelevantTagAttr: isRelevantTagAttr }).results; };