Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.135.246.88
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp /
node_modules /
@types /
node /
Delete
Unzip
Name
Size
Permission
Date
Action
assert
[ DIR ]
drwxr-xr-x
2022-01-26 16:52
dns
[ DIR ]
drwxr-xr-x
2022-01-26 16:52
fs
[ DIR ]
drwxr-xr-x
2022-01-26 16:52
stream
[ DIR ]
drwxr-xr-x
2022-01-26 16:52
timers
[ DIR ]
drwxr-xr-x
2022-01-26 16:52
LICENSE
1.11
KB
-rwxr-xr-x
2022-01-25 05:31
README.md
2.42
KB
-rwxr-xr-x
2022-01-25 05:31
assert.d.ts
37.66
KB
-rwxr-xr-x
2022-01-25 05:31
async_hooks.d.ts
20.44
KB
-rwxr-xr-x
2022-01-25 05:31
buffer.d.ts
96.65
KB
-rwxr-xr-x
2022-01-25 05:31
child_process.d.ts
64.57
KB
-rwxr-xr-x
2022-01-25 05:31
cluster.d.ts
20.06
KB
-rwxr-xr-x
2022-01-25 05:31
console.d.ts
17.9
KB
-rwxr-xr-x
2022-01-25 05:31
constants.d.ts
613
B
-rwxr-xr-x
2022-01-25 05:31
crypto.d.ts
147.7
KB
-rwxr-xr-x
2022-01-25 05:31
dgram.d.ts
26.11
KB
-rwxr-xr-x
2022-01-25 05:31
diagnostics_channel.d.ts
5.18
KB
-rwxr-xr-x
2022-01-25 05:31
dns.d.ts
29
KB
-rwxr-xr-x
2022-01-25 05:31
domain.d.ts
7.62
KB
-rwxr-xr-x
2022-01-25 05:31
events.d.ts
28.38
KB
-rwxr-xr-x
2022-01-25 05:31
fs.d.ts
170.35
KB
-rwxr-xr-x
2022-01-25 05:31
globals.d.ts
8.83
KB
-rwxr-xr-x
2022-01-25 05:31
globals.global.d.ts
39
B
-rwxr-xr-x
2022-01-25 05:31
http.d.ts
62.86
KB
-rwxr-xr-x
2022-01-25 05:31
http2.d.ts
109.71
KB
-rwxr-xr-x
2022-01-25 05:31
https.d.ts
20.87
KB
-rwxr-xr-x
2022-01-25 05:31
index.d.ts
6.24
KB
-rwxr-xr-x
2022-01-25 05:31
inspector.d.ts
122.48
KB
-rwxr-xr-x
2022-01-25 05:31
module.d.ts
3.99
KB
-rwxr-xr-x
2022-01-25 05:31
net.d.ts
35.37
KB
-rwxr-xr-x
2022-01-25 05:31
os.d.ts
16.28
KB
-rwxr-xr-x
2022-01-25 05:31
package.json
4.98
KB
-rwxr-xr-x
2022-01-26 16:52
path.d.ts
6.9
KB
-rwxr-xr-x
2022-01-25 05:31
perf_hooks.d.ts
20.54
KB
-rwxr-xr-x
2022-01-25 05:31
process.d.ts
71.2
KB
-rwxr-xr-x
2022-01-25 05:31
punycode.d.ts
5.35
KB
-rwxr-xr-x
2022-01-25 05:31
querystring.d.ts
6.33
KB
-rwxr-xr-x
2022-01-25 05:31
readline.d.ts
25.87
KB
-rwxr-xr-x
2022-01-25 05:31
repl.d.ts
19.01
KB
-rwxr-xr-x
2022-01-25 05:31
stream.d.ts
62.3
KB
-rwxr-xr-x
2022-01-25 05:31
string_decoder.d.ts
2.75
KB
-rwxr-xr-x
2022-01-25 05:31
timers.d.ts
4.43
KB
-rwxr-xr-x
2022-01-25 05:31
tls.d.ts
49.57
KB
-rwxr-xr-x
2022-01-25 05:31
trace_events.d.ts
6.62
KB
-rwxr-xr-x
2022-01-25 05:31
tty.d.ts
9.62
KB
-rwxr-xr-x
2022-01-25 05:31
url.d.ts
37.17
KB
-rwxr-xr-x
2022-01-25 05:31
util.d.ts
62.79
KB
-rwxr-xr-x
2022-01-25 05:31
v8.d.ts
14.91
KB
-rwxr-xr-x
2022-01-25 05:31
vm.d.ts
20.48
KB
-rwxr-xr-x
2022-01-25 05:31
wasi.d.ts
6.89
KB
-rwxr-xr-x
2022-01-25 05:31
worker_threads.d.ts
31.48
KB
-rwxr-xr-x
2022-01-25 05:31
zlib.d.ts
19.06
KB
-rwxr-xr-x
2022-01-25 05:31
Save
Rename
/** * @since v0.3.7 */ declare module 'module' { import { URL } from 'node:url'; namespace Module { /** * The `module.syncBuiltinESMExports()` method updates all the live bindings for * builtin `ES Modules` to match the properties of the `CommonJS` exports. It * does not add or remove exported names from the `ES Modules`. * * ```js * const fs = require('fs'); * const assert = require('assert'); * const { syncBuiltinESMExports } = require('module'); * * fs.readFile = newAPI; * * delete fs.readFileSync; * * function newAPI() { * // ... * } * * fs.newAPI = newAPI; * * syncBuiltinESMExports(); * * import('fs').then((esmFS) => { * // It syncs the existing readFile property with the new value * assert.strictEqual(esmFS.readFile, newAPI); * // readFileSync has been deleted from the required fs * assert.strictEqual('readFileSync' in fs, false); * // syncBuiltinESMExports() does not remove readFileSync from esmFS * assert.strictEqual('readFileSync' in esmFS, true); * // syncBuiltinESMExports() does not add names * assert.strictEqual(esmFS.newAPI, undefined); * }); * ``` * @since v12.12.0 */ function syncBuiltinESMExports(): void; /** * `path` is the resolved path for the file for which a corresponding source map * should be fetched. * @since v13.7.0, v12.17.0 */ function findSourceMap(path: string, error?: Error): SourceMap; interface SourceMapPayload { file: string; version: number; sources: string[]; sourcesContent: string[]; names: string[]; mappings: string; sourceRoot: string; } interface SourceMapping { generatedLine: number; generatedColumn: number; originalSource: string; originalLine: number; originalColumn: number; } /** * @since v13.7.0, v12.17.0 */ class SourceMap { /** * Getter for the payload used to construct the `SourceMap` instance. */ readonly payload: SourceMapPayload; constructor(payload: SourceMapPayload); /** * Given a line number and column number in the generated source file, returns * an object representing the position in the original file. The object returned * consists of the following keys: */ findEntry(line: number, column: number): SourceMapping; } } interface Module extends NodeModule {} class Module { static runMain(): void; static wrap(code: string): string; static createRequire(path: string | URL): NodeRequire; static builtinModules: string[]; static Module: typeof Module; constructor(id: string, parent?: Module); } global { interface ImportMeta { url: string; /** * @experimental * This feature is only available with the `--experimental-import-meta-resolve` * command flag enabled. * * Provides a module-relative resolution function scoped to each module, returning * the URL string. * * @param specified The module specifier to resolve relative to `parent`. * @param parent The absolute parent module URL to resolve from. If none * is specified, the value of `import.meta.url` is used as the default. */ resolve?(specified: string, parent?: string | URL): Promise<string>; } } export = Module; } declare module 'node:module' { import module = require('module'); export = module; }