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 "dgram" { import { AddressInfo } from "net"; import * as dns from "dns"; import * as events from "events"; interface RemoteInfo { address: string; family: 'IPv4' | 'IPv6'; port: number; size: number; } interface BindOptions { port?: number; address?: string; exclusive?: boolean; fd?: number; } type SocketType = "udp4" | "udp6"; interface SocketOptions { type: SocketType; reuseAddr?: boolean; /** * @default false */ ipv6Only?: boolean; recvBufferSize?: number; sendBufferSize?: number; lookup?: (hostname: string, options: dns.LookupOneOptions, callback: (err: NodeJS.ErrnoException | null, address: string, family: number) => void) => void; } function createSocket(type: SocketType, callback?: (msg: Buffer, rinfo: RemoteInfo) => void): Socket; function createSocket(options: SocketOptions, callback?: (msg: Buffer, rinfo: RemoteInfo) => void): Socket; class Socket extends events.EventEmitter { addMembership(multicastAddress: string, multicastInterface?: string): void; address(): AddressInfo; bind(port?: number, address?: string, callback?: () => void): void; bind(port?: number, callback?: () => void): void; bind(callback?: () => void): void; bind(options: BindOptions, callback?: () => void): void; close(callback?: () => void): void; connect(port: number, address?: string, callback?: () => void): void; connect(port: number, callback: () => void): void; disconnect(): void; dropMembership(multicastAddress: string, multicastInterface?: string): void; getRecvBufferSize(): number; getSendBufferSize(): number; ref(): this; remoteAddress(): AddressInfo; send(msg: string | Uint8Array | ReadonlyArray<any>, port?: number, address?: string, callback?: (error: Error | null, bytes: number) => void): void; send(msg: string | Uint8Array | ReadonlyArray<any>, port?: number, callback?: (error: Error | null, bytes: number) => void): void; send(msg: string | Uint8Array | ReadonlyArray<any>, callback?: (error: Error | null, bytes: number) => void): void; send(msg: string | Uint8Array, offset: number, length: number, port?: number, address?: string, callback?: (error: Error | null, bytes: number) => void): void; send(msg: string | Uint8Array, offset: number, length: number, port?: number, callback?: (error: Error | null, bytes: number) => void): void; send(msg: string | Uint8Array, offset: number, length: number, callback?: (error: Error | null, bytes: number) => void): void; setBroadcast(flag: boolean): void; setMulticastInterface(multicastInterface: string): void; setMulticastLoopback(flag: boolean): void; setMulticastTTL(ttl: number): void; setRecvBufferSize(size: number): void; setSendBufferSize(size: number): void; setTTL(ttl: number): void; unref(): this; /** * Tells the kernel to join a source-specific multicast channel at the given * `sourceAddress` and `groupAddress`, using the `multicastInterface` with the * `IP_ADD_SOURCE_MEMBERSHIP` socket option. * If the `multicastInterface` argument * is not specified, the operating system will choose one interface and will add * membership to it. * To add membership to every available interface, call * `socket.addSourceSpecificMembership()` multiple times, once per interface. */ addSourceSpecificMembership(sourceAddress: string, groupAddress: string, multicastInterface?: string): void; /** * Instructs the kernel to leave a source-specific multicast channel at the given * `sourceAddress` and `groupAddress` using the `IP_DROP_SOURCE_MEMBERSHIP` * socket option. This method is automatically called by the kernel when the * socket is closed or the process terminates, so most apps will never have * reason to call this. * * If `multicastInterface` is not specified, the operating system will attempt to * drop membership on all valid interfaces. */ dropSourceSpecificMembership(sourceAddress: string, groupAddress: string, multicastInterface?: string): void; /** * events.EventEmitter * 1. close * 2. connect * 3. error * 4. listening * 5. message */ addListener(event: string, listener: (...args: any[]) => void): this; addListener(event: "close", listener: () => void): this; addListener(event: "connect", listener: () => void): this; addListener(event: "error", listener: (err: Error) => void): this; addListener(event: "listening", listener: () => void): this; addListener(event: "message", listener: (msg: Buffer, rinfo: RemoteInfo) => void): this; emit(event: string | symbol, ...args: any[]): boolean; emit(event: "close"): boolean; emit(event: "connect"): boolean; emit(event: "error", err: Error): boolean; emit(event: "listening"): boolean; emit(event: "message", msg: Buffer, rinfo: RemoteInfo): boolean; on(event: string, listener: (...args: any[]) => void): this; on(event: "close", listener: () => void): this; on(event: "connect", listener: () => void): this; on(event: "error", listener: (err: Error) => void): this; on(event: "listening", listener: () => void): this; on(event: "message", listener: (msg: Buffer, rinfo: RemoteInfo) => void): this; once(event: string, listener: (...args: any[]) => void): this; once(event: "close", listener: () => void): this; once(event: "connect", listener: () => void): this; once(event: "error", listener: (err: Error) => void): this; once(event: "listening", listener: () => void): this; once(event: "message", listener: (msg: Buffer, rinfo: RemoteInfo) => void): this; prependListener(event: string, listener: (...args: any[]) => void): this; prependListener(event: "close", listener: () => void): this; prependListener(event: "connect", listener: () => void): this; prependListener(event: "error", listener: (err: Error) => void): this; prependListener(event: "listening", listener: () => void): this; prependListener(event: "message", listener: (msg: Buffer, rinfo: RemoteInfo) => void): this; prependOnceListener(event: string, listener: (...args: any[]) => void): this; prependOnceListener(event: "close", listener: () => void): this; prependOnceListener(event: "connect", listener: () => void): this; prependOnceListener(event: "error", listener: (err: Error) => void): this; prependOnceListener(event: "listening", listener: () => void): this; prependOnceListener(event: "message", listener: (msg: Buffer, rinfo: RemoteInfo) => void): this; } }