Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
LiteSpeed
: 162.0.232.56 | : 216.73.216.178
Cant Read [ /etc/named.conf ]
8.1.33
syrihapj
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
/
home /
syrihapj /
public_html /
node_modules /
memfs /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
internal
[ DIR ]
dr-xr-xr-x
Dirent.d.ts
535
B
-rw-r--r--
Dirent.js
1.83
KB
-rw-r--r--
Stats.d.ts
900
B
-rw-r--r--
Stats.js
2.83
KB
-rw-r--r--
constants.d.ts
1.3
KB
-rw-r--r--
constants.js
1.02
KB
-rw-r--r--
encoding.d.ts
366
B
-rw-r--r--
encoding.js
831
B
-rw-r--r--
getBigInt.js
191
B
-rw-r--r--
index.d.ts
854
B
-rw-r--r--
index.js
2.11
KB
-rw-r--r--
node.d.ts
4
KB
-rw-r--r--
node.js
13.85
KB
-rw-r--r--
process.d.ts
372
B
-rw-r--r--
process.js
1.31
KB
-rw-r--r--
promises.d.ts
4.21
KB
-rw-r--r--
promises.js
6.27
KB
-rw-r--r--
setImmediate.d.ts
151
B
-rw-r--r--
setImmediate.js
364
B
-rw-r--r--
setTimeoutUnref.d.ts
339
B
-rw-r--r--
setTimeoutUnref.js
493
B
-rw-r--r--
volume-localstorage.d.ts
471
B
-rw-r--r--
volume-localstorage.js
4.27
KB
-rw-r--r--
volume.d.ts
17.55
KB
-rw-r--r--
volume.js
84.93
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : process.js
"use strict"; // Here we mock the global `process` variable in case we are not in Node's environment. Object.defineProperty(exports, "__esModule", { value: true }); exports.createProcess = void 0; /** * Looks to return a `process` object, if one is available. * * The global `process` is returned if defined; * otherwise `require('process')` is attempted. * * If that fails, `undefined` is returned. * * @return {IProcess | undefined} */ var maybeReturnProcess = function () { if (typeof process !== 'undefined') { return process; } try { return require('process'); } catch (_a) { return undefined; } }; function createProcess() { var p = maybeReturnProcess() || {}; if (!p.getuid) p.getuid = function () { return 0; }; if (!p.getgid) p.getgid = function () { return 0; }; if (!p.cwd) p.cwd = function () { return '/'; }; if (!p.nextTick) p.nextTick = require('./setImmediate').default; if (!p.emitWarning) p.emitWarning = function (message, type) { // tslint:disable-next-line:no-console console.warn("".concat(type).concat(type ? ': ' : '').concat(message)); }; if (!p.env) p.env = {}; return p; } exports.createProcess = createProcess; exports.default = createProcess();
Close