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.20
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 /
@webassemblyjs /
validation /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
type-checker
[ DIR ]
drwxr-xr-x
duplicated-exports.js
836
B
-rw-r--r--
import-order.js
1.47
KB
-rw-r--r--
imports.js
658
B
-rw-r--r--
index.js
3.41
KB
-rw-r--r--
is-const.js
1.42
KB
-rw-r--r--
type-checker.js
9.37
KB
-rw-r--r--
type-inference.js
2.02
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : import-order.js
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports["default"] = validate; var _ast = require("@webassemblyjs/ast"); // https://webassembly.github.io/spec/core/text/modules.html#text-module // // imports must appear before globals, memory, tables or functions. However, imports // may be embedded within other statetemnts, or statetemnts may be embedded within imports. // In these cases, the ordering rule is not applied function validate(ast) { var errors = []; function isImportInstruction(path) { // various instructions can be embedded within an import statement. These // are not subject to our order validation rule return path.parentPath.node.type === "ModuleImport"; } var noMoreImports = false; (0, _ast.traverse)(ast, { ModuleImport: function ModuleImport(path) { if (noMoreImports && path.parentPath.node.type !== "Global") { return errors.push("imports must occur before all non-import definitions"); } }, Global: function Global(path) { if (!isImportInstruction(path)) { noMoreImports = true; } }, Memory: function Memory(path) { if (!isImportInstruction(path)) { noMoreImports = true; } }, Table: function Table(path) { if (!isImportInstruction(path)) { noMoreImports = true; } }, Func: function Func(path) { if (!isImportInstruction(path)) { noMoreImports = true; } } }); return errors; }
Close