Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.217.80
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
coviddata /
node_modules /
@types /
node /
Delete
Unzip
Name
Size
Permission
Date
Action
fs
[ DIR ]
drwxr-xr-x
2021-01-22 18:49
ts3.4
[ DIR ]
drwxr-xr-x
2021-01-22 18:49
ts3.6
[ DIR ]
drwxr-xr-x
2021-01-22 18:49
README.md
2.7
KB
-rw-r--r--
2021-01-19 23:09
assert.d.ts
5.46
KB
-rw-r--r--
2021-01-19 23:09
async_hooks.d.ts
9.47
KB
-rw-r--r--
2021-01-19 23:09
base.d.ts
905
B
-rw-r--r--
2021-01-19 23:09
buffer.d.ts
708
B
-rw-r--r--
2021-01-19 23:09
child_process.d.ts
24.5
KB
-rw-r--r--
2021-01-19 23:09
cluster.d.ts
15.75
KB
-rw-r--r--
2021-01-19 23:09
console.d.ts
5.78
KB
-rw-r--r--
2021-01-19 23:09
constants.d.ts
459
B
-rw-r--r--
2021-01-19 23:09
crypto.d.ts
45.25
KB
-rw-r--r--
2021-01-19 23:09
dgram.d.ts
7.03
KB
-rw-r--r--
2021-01-19 23:09
dns.d.ts
15.93
KB
-rw-r--r--
2021-01-19 23:09
domain.d.ts
717
B
-rw-r--r--
2021-01-19 23:09
events.d.ts
3.29
KB
-rw-r--r--
2021-01-19 23:09
fs.d.ts
115.08
KB
-rw-r--r--
2021-01-19 23:09
globals.d.ts
23.15
KB
-rw-r--r--
2021-01-19 23:09
globals.global.d.ts
55
B
-rw-r--r--
2021-01-19 23:09
http.d.ts
18.43
KB
-rw-r--r--
2021-01-19 23:09
http2.d.ts
55.27
KB
-rw-r--r--
2021-01-19 23:09
https.d.ts
1.64
KB
-rw-r--r--
2021-01-19 23:09
index.d.ts
3.74
KB
-rw-r--r--
2021-01-19 23:09
inspector.d.ts
119.08
KB
-rw-r--r--
2021-01-19 23:09
module.d.ts
1.6
KB
-rw-r--r--
2021-01-19 23:09
net.d.ts
12.59
KB
-rw-r--r--
2021-01-19 23:09
os.d.ts
7.99
KB
-rw-r--r--
2021-01-19 23:09
package.json
5.46
KB
-rw-r--r--
2021-01-22 18:49
path.d.ts
6.16
KB
-rw-r--r--
2021-01-19 23:09
perf_hooks.d.ts
10.37
KB
-rw-r--r--
2021-01-19 23:09
process.d.ts
19.86
KB
-rw-r--r--
2021-01-19 23:09
punycode.d.ts
3.08
KB
-rw-r--r--
2021-01-19 23:09
querystring.d.ts
1.02
KB
-rw-r--r--
2021-01-19 23:09
readline.d.ts
7.16
KB
-rw-r--r--
2021-01-19 23:09
repl.d.ts
17.69
KB
-rw-r--r--
2021-01-19 23:09
stream.d.ts
18.92
KB
-rw-r--r--
2021-01-19 23:09
string_decoder.d.ts
193
B
-rw-r--r--
2021-01-19 23:09
timers.d.ts
826
B
-rw-r--r--
2021-01-19 23:09
tls.d.ts
36.88
KB
-rw-r--r--
2021-01-19 23:09
trace_events.d.ts
2.06
KB
-rw-r--r--
2021-01-19 23:09
tty.d.ts
2.38
KB
-rw-r--r--
2021-01-19 23:09
url.d.ts
4.11
KB
-rw-r--r--
2021-01-19 23:09
util.d.ts
12.45
KB
-rw-r--r--
2021-01-19 23:09
v8.d.ts
6.61
KB
-rw-r--r--
2021-01-19 23:09
vm.d.ts
5.76
KB
-rw-r--r--
2021-01-19 23:09
wasi.d.ts
3.3
KB
-rw-r--r--
2021-01-19 23:09
worker_threads.d.ts
11.18
KB
-rw-r--r--
2021-01-19 23:09
zlib.d.ts
13.99
KB
-rw-r--r--
2021-01-19 23:09
Save
Rename
declare module "util" { interface InspectOptions extends NodeJS.InspectOptions { } type Style = 'special' | 'number' | 'bigint' | 'boolean' | 'undefined' | 'null' | 'string' | 'symbol' | 'date' | 'regexp' | 'module'; type CustomInspectFunction = (depth: number, options: InspectOptionsStylized) => string; interface InspectOptionsStylized extends InspectOptions { stylize(text: string, styleType: Style): string; } function format(format?: any, ...param: any[]): string; function formatWithOptions(inspectOptions: InspectOptions, format?: any, ...param: any[]): string; /** @deprecated since v0.11.3 - use a third party module instead. */ function log(string: string): void; function inspect(object: any, showHidden?: boolean, depth?: number | null, color?: boolean): string; function inspect(object: any, options: InspectOptions): string; namespace inspect { let colors: NodeJS.Dict<[number, number]>; let styles: { [K in Style]: string }; let defaultOptions: InspectOptions; /** * Allows changing inspect settings from the repl. */ let replDefaults: InspectOptions; const custom: unique symbol; } /** @deprecated since v4.0.0 - use `Array.isArray()` instead. */ function isArray(object: any): object is any[]; /** @deprecated since v4.0.0 - use `util.types.isRegExp()` instead. */ function isRegExp(object: any): object is RegExp; /** @deprecated since v4.0.0 - use `util.types.isDate()` instead. */ function isDate(object: any): object is Date; /** @deprecated since v4.0.0 - use `util.types.isNativeError()` instead. */ function isError(object: any): object is Error; function inherits(constructor: any, superConstructor: any): void; function debuglog(key: string): (msg: string, ...param: any[]) => void; /** @deprecated since v4.0.0 - use `typeof value === 'boolean'` instead. */ function isBoolean(object: any): object is boolean; /** @deprecated since v4.0.0 - use `Buffer.isBuffer()` instead. */ function isBuffer(object: any): object is Buffer; /** @deprecated since v4.0.0 - use `typeof value === 'function'` instead. */ function isFunction(object: any): boolean; /** @deprecated since v4.0.0 - use `value === null` instead. */ function isNull(object: any): object is null; /** @deprecated since v4.0.0 - use `value === null || value === undefined` instead. */ function isNullOrUndefined(object: any): object is null | undefined; /** @deprecated since v4.0.0 - use `typeof value === 'number'` instead. */ function isNumber(object: any): object is number; /** @deprecated since v4.0.0 - use `value !== null && typeof value === 'object'` instead. */ function isObject(object: any): boolean; /** @deprecated since v4.0.0 - use `(typeof value !== 'object' && typeof value !== 'function') || value === null` instead. */ function isPrimitive(object: any): boolean; /** @deprecated since v4.0.0 - use `typeof value === 'string'` instead. */ function isString(object: any): object is string; /** @deprecated since v4.0.0 - use `typeof value === 'symbol'` instead. */ function isSymbol(object: any): object is symbol; /** @deprecated since v4.0.0 - use `value === undefined` instead. */ function isUndefined(object: any): object is undefined; function deprecate<T extends Function>(fn: T, message: string, code?: string): T; function isDeepStrictEqual(val1: any, val2: any): boolean; function callbackify(fn: () => Promise<void>): (callback: (err: NodeJS.ErrnoException) => void) => void; function callbackify<TResult>(fn: () => Promise<TResult>): (callback: (err: NodeJS.ErrnoException, result: TResult) => void) => void; function callbackify<T1>(fn: (arg1: T1) => Promise<void>): (arg1: T1, callback: (err: NodeJS.ErrnoException) => void) => void; function callbackify<T1, TResult>(fn: (arg1: T1) => Promise<TResult>): (arg1: T1, callback: (err: NodeJS.ErrnoException, result: TResult) => void) => void; function callbackify<T1, T2>(fn: (arg1: T1, arg2: T2) => Promise<void>): (arg1: T1, arg2: T2, callback: (err: NodeJS.ErrnoException) => void) => void; function callbackify<T1, T2, TResult>(fn: (arg1: T1, arg2: T2) => Promise<TResult>): (arg1: T1, arg2: T2, callback: (err: NodeJS.ErrnoException | null, result: TResult) => void) => void; function callbackify<T1, T2, T3>(fn: (arg1: T1, arg2: T2, arg3: T3) => Promise<void>): (arg1: T1, arg2: T2, arg3: T3, callback: (err: NodeJS.ErrnoException) => void) => void; function callbackify<T1, T2, T3, TResult>( fn: (arg1: T1, arg2: T2, arg3: T3) => Promise<TResult>): (arg1: T1, arg2: T2, arg3: T3, callback: (err: NodeJS.ErrnoException | null, result: TResult) => void) => void; function callbackify<T1, T2, T3, T4>( fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4) => Promise<void>): (arg1: T1, arg2: T2, arg3: T3, arg4: T4, callback: (err: NodeJS.ErrnoException) => void) => void; function callbackify<T1, T2, T3, T4, TResult>( fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4) => Promise<TResult>): (arg1: T1, arg2: T2, arg3: T3, arg4: T4, callback: (err: NodeJS.ErrnoException | null, result: TResult) => void) => void; function callbackify<T1, T2, T3, T4, T5>( fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5) => Promise<void>): (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5, callback: (err: NodeJS.ErrnoException) => void) => void; function callbackify<T1, T2, T3, T4, T5, TResult>( fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5) => Promise<TResult>, ): (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5, callback: (err: NodeJS.ErrnoException | null, result: TResult) => void) => void; function callbackify<T1, T2, T3, T4, T5, T6>( fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5, arg6: T6) => Promise<void>, ): (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5, arg6: T6, callback: (err: NodeJS.ErrnoException) => void) => void; function callbackify<T1, T2, T3, T4, T5, T6, TResult>( fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5, arg6: T6) => Promise<TResult> ): (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5, arg6: T6, callback: (err: NodeJS.ErrnoException | null, result: TResult) => void) => void; interface CustomPromisifyLegacy<TCustom extends Function> extends Function { __promisify__: TCustom; } interface CustomPromisifySymbol<TCustom extends Function> extends Function { [promisify.custom]: TCustom; } type CustomPromisify<TCustom extends Function> = CustomPromisifySymbol<TCustom> | CustomPromisifyLegacy<TCustom>; function promisify<TCustom extends Function>(fn: CustomPromisify<TCustom>): TCustom; function promisify<TResult>(fn: (callback: (err: any, result: TResult) => void) => void): () => Promise<TResult>; function promisify(fn: (callback: (err?: any) => void) => void): () => Promise<void>; function promisify<T1, TResult>(fn: (arg1: T1, callback: (err: any, result: TResult) => void) => void): (arg1: T1) => Promise<TResult>; function promisify<T1>(fn: (arg1: T1, callback: (err?: any) => void) => void): (arg1: T1) => Promise<void>; function promisify<T1, T2, TResult>(fn: (arg1: T1, arg2: T2, callback: (err: any, result: TResult) => void) => void): (arg1: T1, arg2: T2) => Promise<TResult>; function promisify<T1, T2>(fn: (arg1: T1, arg2: T2, callback: (err?: any) => void) => void): (arg1: T1, arg2: T2) => Promise<void>; function promisify<T1, T2, T3, TResult>(fn: (arg1: T1, arg2: T2, arg3: T3, callback: (err: any, result: TResult) => void) => void): (arg1: T1, arg2: T2, arg3: T3) => Promise<TResult>; function promisify<T1, T2, T3>(fn: (arg1: T1, arg2: T2, arg3: T3, callback: (err?: any) => void) => void): (arg1: T1, arg2: T2, arg3: T3) => Promise<void>; function promisify<T1, T2, T3, T4, TResult>( fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4, callback: (err: any, result: TResult) => void) => void, ): (arg1: T1, arg2: T2, arg3: T3, arg4: T4) => Promise<TResult>; function promisify<T1, T2, T3, T4>(fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4, callback: (err?: any) => void) => void): (arg1: T1, arg2: T2, arg3: T3, arg4: T4) => Promise<void>; function promisify<T1, T2, T3, T4, T5, TResult>( fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5, callback: (err: any, result: TResult) => void) => void, ): (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5) => Promise<TResult>; function promisify<T1, T2, T3, T4, T5>( fn: (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5, callback: (err?: any) => void) => void, ): (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5) => Promise<void>; function promisify(fn: Function): Function; namespace promisify { const custom: unique symbol; } namespace types { function isAnyArrayBuffer(object: any): object is ArrayBufferLike; function isArgumentsObject(object: any): object is IArguments; function isArrayBuffer(object: any): object is ArrayBuffer; function isArrayBufferView(object: any): object is NodeJS.ArrayBufferView; function isAsyncFunction(object: any): boolean; function isBigInt64Array(value: any): value is BigInt64Array; function isBigUint64Array(value: any): value is BigUint64Array; function isBooleanObject(object: any): object is Boolean; function isBoxedPrimitive(object: any): object is String | Number | BigInt | Boolean | Symbol; function isDataView(object: any): object is DataView; function isDate(object: any): object is Date; function isExternal(object: any): boolean; function isFloat32Array(object: any): object is Float32Array; function isFloat64Array(object: any): object is Float64Array; function isGeneratorFunction(object: any): object is GeneratorFunction; function isGeneratorObject(object: any): object is Generator; function isInt8Array(object: any): object is Int8Array; function isInt16Array(object: any): object is Int16Array; function isInt32Array(object: any): object is Int32Array; function isMap<T>( object: T | {}, ): object is T extends ReadonlyMap<any, any> ? unknown extends T ? never : ReadonlyMap<any, any> : Map<any, any>; function isMapIterator(object: any): boolean; function isModuleNamespaceObject(value: any): boolean; function isNativeError(object: any): object is Error; function isNumberObject(object: any): object is Number; function isPromise(object: any): object is Promise<any>; function isProxy(object: any): boolean; function isRegExp(object: any): object is RegExp; function isSet<T>( object: T | {}, ): object is T extends ReadonlySet<any> ? unknown extends T ? never : ReadonlySet<any> : Set<any>; function isSetIterator(object: any): boolean; function isSharedArrayBuffer(object: any): object is SharedArrayBuffer; function isStringObject(object: any): object is String; function isSymbolObject(object: any): object is Symbol; function isTypedArray(object: any): object is NodeJS.TypedArray; function isUint8Array(object: any): object is Uint8Array; function isUint8ClampedArray(object: any): object is Uint8ClampedArray; function isUint16Array(object: any): object is Uint16Array; function isUint32Array(object: any): object is Uint32Array; function isWeakMap(object: any): object is WeakMap<any, any>; function isWeakSet(object: any): object is WeakSet<any>; } class TextDecoder { readonly encoding: string; readonly fatal: boolean; readonly ignoreBOM: boolean; constructor( encoding?: string, options?: { fatal?: boolean; ignoreBOM?: boolean } ); decode( input?: NodeJS.ArrayBufferView | ArrayBuffer | null, options?: { stream?: boolean } ): string; } interface EncodeIntoResult { /** * The read Unicode code units of input. */ read: number; /** * The written UTF-8 bytes of output. */ written: number; } class TextEncoder { readonly encoding: string; encode(input?: string): Uint8Array; encodeInto(input: string, output: Uint8Array): EncodeIntoResult; } }