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 /
@webassemblyjs /
cli /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
printer
[ DIR ]
drwxr-xr-x
get-producer-section.js
1.09
KB
-rwxr-xr-x
wasm2wast.js
828
B
-rwxr-xr-x
wasmast.js
621
B
-rwxr-xr-x
wasmdump.js
698
B
-rwxr-xr-x
wasmrun.js
2.62
KB
-rwxr-xr-x
wast-to-wasm-semantics.js
770
B
-rwxr-xr-x
wastast.js
417
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : wasmrun.js
#!/usr/bin/env node "use strict"; function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); } function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && Symbol.iterator in Object(iter)) return Array.from(iter); } function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); } function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } var _require = require("webassemblyjs"), instantiate = _require.instantiate; var fs = require("fs"); function debug(msg) { console.error(msg); } function toArrayBuffer(buf) { return buf.buffer.slice(buf.byteOffset, buf.byteOffset + buf.byteLength); } var filename = process.argv[2]; var entrypoint = process.argv[3]; if (typeof filename === "undefined") { throw new Error("Missing file"); } debug("Compiling..."); // $FlowIgnore: this is correct but not correctly documented var buff = toArrayBuffer(fs.readFileSync(filename, null)); var importObject = { env: { printf: function printf() { var _console; for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) { args[_key] = arguments[_key]; } (_console = console).log.apply(_console, ["printf"].concat(args)); } } }; instantiate(buff, importObject).then(function (_ref) { var instance = _ref.instance; console.log("exports", Object.keys(instance.exports)); if (typeof entrypoint !== "undefined") { var startfn = instance.exports[entrypoint]; if (typeof startfn !== "function") { throw new Error("Entrypoint not found"); } debug("Executing..."); var exitCode = startfn.apply(void 0, _toConsumableArray(process.argv.slice(4))); console.log("exited with code", exitCode); } })["catch"](function (err) { throw err; }); process.on("unhandledRejection", function (error) { throw error; });
Close