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 : mock-agent.d.ts
import Agent from './agent' import Dispatcher from './dispatcher' import { Interceptable, MockInterceptor } from './mock-interceptor' import MockDispatch = MockInterceptor.MockDispatch; export default MockAgent interface PendingInterceptor extends MockDispatch { origin: string; } /** A mocked Agent class that implements the Agent API. It allows one to intercept HTTP requests made through undici and return mocked responses instead. */ declare class MockAgent<TMockAgentOptions extends MockAgent.Options = MockAgent.Options> extends Dispatcher { constructor(options?: MockAgent.Options) /** Creates and retrieves mock Dispatcher instances which can then be used to intercept HTTP requests. If the number of connections on the mock agent is set to 1, a MockClient instance is returned. Otherwise a MockPool instance is returned. */ get<TInterceptable extends Interceptable>(origin: string): TInterceptable; get<TInterceptable extends Interceptable>(origin: RegExp): TInterceptable; get<TInterceptable extends Interceptable>(origin: ((origin: string) => boolean)): TInterceptable; /** Dispatches a mocked request. */ dispatch(options: Agent.DispatchOptions, handler: Dispatcher.DispatchHandlers): boolean; /** Closes the mock agent and waits for registered mock pools and clients to also close before resolving. */ close(): Promise<void>; /** Disables mocking in MockAgent. */ deactivate(): void; /** Enables mocking in a MockAgent instance. When instantiated, a MockAgent is automatically activated. Therefore, this method is only effective after `MockAgent.deactivate` has been called. */ activate(): void; /** Define host matchers so only matching requests that aren't intercepted by the mock dispatchers will be attempted. */ enableNetConnect(): void; enableNetConnect(host: string): void; enableNetConnect(host: RegExp): void; enableNetConnect(host: ((host: string) => boolean)): void; /** Causes all requests to throw when requests are not matched in a MockAgent intercept. */ disableNetConnect(): void; pendingInterceptors(): PendingInterceptor[]; assertNoPendingInterceptors(options?: { pendingInterceptorsFormatter?: PendingInterceptorsFormatter; }): void; } interface PendingInterceptorsFormatter { format(pendingInterceptors: readonly PendingInterceptor[]): string; } declare namespace MockAgent { /** MockAgent options. */ export interface Options extends Agent.Options { /** A custom agent to be encapsulated by the MockAgent. */ agent?: Agent; } }
Close