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 : 18.188.73.229
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
webpack /
lib /
asset /
Delete
Unzip
Name
Size
Permission
Date
Action
AssetGenerator.js
13.39
KB
-rw-rw-r--
2022-08-30 11:49
AssetModulesPlugin.js
6.25
KB
-rw-rw-r--
2022-08-30 11:49
AssetParser.js
1.67
KB
-rw-rw-r--
2022-08-30 11:49
AssetSourceGenerator.js
1.75
KB
-rw-rw-r--
2022-08-30 11:49
AssetSourceParser.js
821
B
-rw-rw-r--
2022-08-30 11:49
RawDataUrlModule.js
4.3
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Yuta Hiroto @hiroppy */ "use strict"; const Parser = require("../Parser"); /** @typedef {import("../../declarations/WebpackOptions").AssetParserOptions} AssetParserOptions */ /** @typedef {import("../Parser").ParserState} ParserState */ /** @typedef {import("../Parser").PreparsedAst} PreparsedAst */ class AssetParser extends Parser { /** * @param {AssetParserOptions["dataUrlCondition"] | boolean} dataUrlCondition condition for inlining as DataUrl */ constructor(dataUrlCondition) { super(); this.dataUrlCondition = dataUrlCondition; } /** * @param {string | Buffer | PreparsedAst} source the source to parse * @param {ParserState} state the parser state * @returns {ParserState} the parser state */ parse(source, state) { if (typeof source === "object" && !Buffer.isBuffer(source)) { throw new Error("AssetParser doesn't accept preparsed AST"); } state.module.buildInfo.strict = true; state.module.buildMeta.exportsType = "default"; if (typeof this.dataUrlCondition === "function") { state.module.buildInfo.dataUrl = this.dataUrlCondition(source, { filename: state.module.matchResource || state.module.resource, module: state.module }); } else if (typeof this.dataUrlCondition === "boolean") { state.module.buildInfo.dataUrl = this.dataUrlCondition; } else if ( this.dataUrlCondition && typeof this.dataUrlCondition === "object" ) { state.module.buildInfo.dataUrl = Buffer.byteLength(source) <= this.dataUrlCondition.maxSize; } else { throw new Error("Unexpected dataUrlCondition type"); } return state; } } module.exports = AssetParser;