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.135.201.190
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 /
runtime /
Delete
Unzip
Name
Size
Permission
Date
Action
AsyncModuleRuntimeModule.js
4.53
KB
-rw-rw-r--
2022-08-30 11:49
AutoPublicPathRuntimeModule.js
2.33
KB
-rw-rw-r--
2022-08-30 11:49
ChunkNameRuntimeModule.js
566
B
-rw-rw-r--
2022-08-30 11:49
CompatGetDefaultExportRuntimeModule.js
1.04
KB
-rw-rw-r--
2022-08-30 11:49
CompatRuntimeModule.js
1.81
KB
-rw-rw-r--
2022-08-30 11:49
CreateFakeNamespaceObjectRuntimeModule.js
2.27
KB
-rw-rw-r--
2022-08-30 11:49
CreateScriptRuntimeModule.js
852
B
-rw-rw-r--
2022-08-30 11:49
CreateScriptUrlRuntimeModule.js
859
B
-rw-rw-r--
2022-08-30 11:49
DefinePropertyGettersRuntimeModule.js
1.05
KB
-rw-rw-r--
2022-08-30 11:49
EnsureChunkRuntimeModule.js
1.7
KB
-rw-rw-r--
2022-08-30 11:49
GetChunkFilenameRuntimeModule.js
8.26
KB
-rw-rw-r--
2022-08-30 11:49
GetFullHashRuntimeModule.js
664
B
-rw-rw-r--
2022-08-30 11:49
GetMainFilenameRuntimeModule.js
1.15
KB
-rw-rw-r--
2022-08-30 11:49
GetTrustedTypesPolicyRuntimeModule.js
1.92
KB
-rw-rw-r--
2022-08-30 11:49
GlobalRuntimeModule.js
1.13
KB
-rw-rw-r--
2022-08-30 11:49
HasOwnPropertyRuntimeModule.js
731
B
-rw-rw-r--
2022-08-30 11:49
HelperRuntimeModule.js
319
B
-rw-rw-r--
2022-08-30 11:49
LoadScriptRuntimeModule.js
4.59
KB
-rw-rw-r--
2022-08-30 11:49
MakeNamespaceObjectRuntimeModule.js
972
B
-rw-rw-r--
2022-08-30 11:49
OnChunksLoadedRuntimeModule.js
1.98
KB
-rw-rw-r--
2022-08-30 11:49
PublicPathRuntimeModule.js
663
B
-rw-rw-r--
2022-08-30 11:49
RelativeUrlRuntimeModule.js
1.15
KB
-rw-rw-r--
2022-08-30 11:49
RuntimeIdRuntimeModule.js
685
B
-rw-rw-r--
2022-08-30 11:49
StartupChunkDependenciesPlugin.js
2.22
KB
-rw-rw-r--
2022-08-30 11:49
StartupChunkDependenciesRuntimeModule.js
1.8
KB
-rw-rw-r--
2022-08-30 11:49
StartupEntrypointRuntimeModule.js
1.38
KB
-rw-rw-r--
2022-08-30 11:49
SystemContextRuntimeModule.js
532
B
-rw-rw-r--
2022-08-30 11:49
Save
Rename
/* MIT License http://www.opensource.org/licenses/mit-license.php */ "use strict"; const RuntimeGlobals = require("../RuntimeGlobals"); const RuntimeModule = require("../RuntimeModule"); const Template = require("../Template"); /** @typedef {import("../Compilation")} Compilation */ class GetMainFilenameRuntimeModule extends RuntimeModule { /** * @param {string} name readable name * @param {string} global global object binding * @param {string} filename main file name */ constructor(name, global, filename) { super(`get ${name} filename`); this.global = global; this.filename = filename; } /** * @returns {string} runtime code */ generate() { const { global, filename, compilation, chunk } = this; const { runtimeTemplate } = compilation; const url = compilation.getPath(JSON.stringify(filename), { hash: `" + ${RuntimeGlobals.getFullHash}() + "`, hashWithLength: length => `" + ${RuntimeGlobals.getFullHash}().slice(0, ${length}) + "`, chunk, runtime: chunk.runtime }); return Template.asString([ `${global} = ${runtimeTemplate.returningFunction(url)};` ]); } } module.exports = GetMainFilenameRuntimeModule;