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 /
cqt /
node_modules /
zod /
v4 /
core /
[ HOME SHELL ]
Name
Size
Permission
Action
api.cjs
25.84
KB
-rw-r--r--
api.d.cts
28.75
KB
-rw-r--r--
api.d.ts
28.75
KB
-rw-r--r--
api.js
22.44
KB
-rw-r--r--
checks.cjs
20.6
KB
-rw-r--r--
checks.d.cts
12.48
KB
-rw-r--r--
checks.d.ts
12.48
KB
-rw-r--r--
checks.js
19.09
KB
-rw-r--r--
core.cjs
2.25
KB
-rw-r--r--
core.d.cts
1.77
KB
-rw-r--r--
core.d.ts
1.77
KB
-rw-r--r--
core.js
2.04
KB
-rw-r--r--
doc.cjs
1.17
KB
-rw-r--r--
doc.d.cts
353
B
-rw-r--r--
doc.d.ts
353
B
-rw-r--r--
doc.js
1.06
KB
-rw-r--r--
errors.cjs
7.47
KB
-rw-r--r--
errors.d.cts
7.71
KB
-rw-r--r--
errors.d.ts
7.7
KB
-rw-r--r--
errors.js
6.17
KB
-rw-r--r--
function.cjs
3.92
KB
-rw-r--r--
function.d.cts
3.51
KB
-rw-r--r--
function.d.ts
3.51
KB
-rw-r--r--
function.js
2.65
KB
-rw-r--r--
index.cjs
2.11
KB
-rw-r--r--
index.d.cts
514
B
-rw-r--r--
index.d.ts
499
B
-rw-r--r--
index.js
499
B
-rw-r--r--
json-schema.cjs
77
B
-rw-r--r--
json-schema.d.cts
2.61
KB
-rw-r--r--
json-schema.d.ts
2.61
KB
-rw-r--r--
json-schema.js
11
B
-rw-r--r--
parse.cjs
3.86
KB
-rw-r--r--
parse.d.cts
1.47
KB
-rw-r--r--
parse.d.ts
1.47
KB
-rw-r--r--
parse.js
2.49
KB
-rw-r--r--
regexes.cjs
6.9
KB
-rw-r--r--
regexes.d.cts
2.7
KB
-rw-r--r--
regexes.d.ts
2.7
KB
-rw-r--r--
regexes.js
6.26
KB
-rw-r--r--
registries.cjs
1.64
KB
-rw-r--r--
registries.d.cts
1.61
KB
-rw-r--r--
registries.d.ts
1.61
KB
-rw-r--r--
registries.js
1.45
KB
-rw-r--r--
schemas.cjs
63.32
KB
-rw-r--r--
schemas.d.cts
43.65
KB
-rw-r--r--
schemas.d.ts
43.64
KB
-rw-r--r--
schemas.js
61.18
KB
-rw-r--r--
standard-schema.cjs
77
B
-rw-r--r--
standard-schema.d.cts
2.35
KB
-rw-r--r--
standard-schema.d.ts
2.35
KB
-rw-r--r--
standard-schema.js
11
B
-rw-r--r--
to-json-schema.cjs
35.07
KB
-rw-r--r--
to-json-schema.d.cts
3.64
KB
-rw-r--r--
to-json-schema.d.ts
3.64
KB
-rw-r--r--
to-json-schema.js
34.85
KB
-rw-r--r--
util.cjs
16.05
KB
-rw-r--r--
util.d.cts
10.5
KB
-rw-r--r--
util.d.ts
10.49
KB
-rw-r--r--
util.js
14.65
KB
-rw-r--r--
versions.cjs
168
B
-rw-r--r--
versions.d.cts
109
B
-rw-r--r--
versions.d.ts
109
B
-rw-r--r--
versions.js
70
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : errors.d.ts
import type { $ZodCheck, $ZodStringFormats } from "./checks.js"; import { $constructor } from "./core.js"; import type { $ZodType } from "./schemas.js"; import * as util from "./util.js"; export interface $ZodIssueBase { readonly code?: string; readonly input?: unknown; readonly path: PropertyKey[]; readonly message: string; } export interface $ZodIssueInvalidType<Input = unknown> extends $ZodIssueBase { readonly code: "invalid_type"; readonly expected: $ZodType["_zod"]["def"]["type"]; readonly input: Input; } export interface $ZodIssueTooBig<Input = unknown> extends $ZodIssueBase { readonly code: "too_big"; readonly origin: "number" | "int" | "bigint" | "date" | "string" | "array" | "set" | "file" | (string & {}); readonly maximum: number | bigint; readonly inclusive?: boolean; readonly exact?: boolean; readonly input: Input; } export interface $ZodIssueTooSmall<Input = unknown> extends $ZodIssueBase { readonly code: "too_small"; readonly origin: "number" | "int" | "bigint" | "date" | "string" | "array" | "set" | "file" | (string & {}); readonly minimum: number | bigint; /** True if the allowable range includes the minimum */ readonly inclusive?: boolean; /** True if the allowed value is fixed (e.g.` z.length(5)`), not a range (`z.minLength(5)`) */ readonly exact?: boolean; readonly input: Input; } export interface $ZodIssueInvalidStringFormat extends $ZodIssueBase { readonly code: "invalid_format"; readonly format: $ZodStringFormats | (string & {}); readonly pattern?: string; readonly input: string; } export interface $ZodIssueNotMultipleOf<Input extends number | bigint = number | bigint> extends $ZodIssueBase { readonly code: "not_multiple_of"; readonly divisor: number; readonly input: Input; } export interface $ZodIssueUnrecognizedKeys extends $ZodIssueBase { readonly code: "unrecognized_keys"; readonly keys: string[]; readonly input: Record<string, unknown>; } export interface $ZodIssueInvalidUnion extends $ZodIssueBase { readonly code: "invalid_union"; readonly errors: $ZodIssue[][]; readonly input: unknown; } export interface $ZodIssueInvalidKey<Input = unknown> extends $ZodIssueBase { readonly code: "invalid_key"; readonly origin: "map" | "record"; readonly issues: $ZodIssue[]; readonly input: Input; } export interface $ZodIssueInvalidElement<Input = unknown> extends $ZodIssueBase { readonly code: "invalid_element"; readonly origin: "map" | "set"; readonly key: unknown; readonly issues: $ZodIssue[]; readonly input: Input; } export interface $ZodIssueInvalidValue<Input = unknown> extends $ZodIssueBase { readonly code: "invalid_value"; readonly values: util.Primitive[]; readonly input: Input; } export interface $ZodIssueCustom extends $ZodIssueBase { readonly code: "custom"; readonly params?: Record<string, any> | undefined; readonly input: unknown; } export interface $ZodIssueStringCommonFormats extends $ZodIssueInvalidStringFormat { format: Exclude<$ZodStringFormats, "regex" | "jwt" | "starts_with" | "ends_with" | "includes">; } export interface $ZodIssueStringInvalidRegex extends $ZodIssueInvalidStringFormat { format: "regex"; pattern: string; } export interface $ZodIssueStringInvalidJWT extends $ZodIssueInvalidStringFormat { format: "jwt"; algorithm?: string; } export interface $ZodIssueStringStartsWith extends $ZodIssueInvalidStringFormat { format: "starts_with"; prefix: string; } export interface $ZodIssueStringEndsWith extends $ZodIssueInvalidStringFormat { format: "ends_with"; suffix: string; } export interface $ZodIssueStringIncludes extends $ZodIssueInvalidStringFormat { format: "includes"; includes: string; } export type $ZodStringFormatIssues = $ZodIssueStringCommonFormats | $ZodIssueStringInvalidRegex | $ZodIssueStringInvalidJWT | $ZodIssueStringStartsWith | $ZodIssueStringEndsWith | $ZodIssueStringIncludes; export type $ZodIssue = $ZodIssueInvalidType | $ZodIssueTooBig | $ZodIssueTooSmall | $ZodIssueInvalidStringFormat | $ZodIssueNotMultipleOf | $ZodIssueUnrecognizedKeys | $ZodIssueInvalidUnion | $ZodIssueInvalidKey | $ZodIssueInvalidElement | $ZodIssueInvalidValue | $ZodIssueCustom; export type $ZodIssueCode = $ZodIssue["code"]; export type $ZodRawIssue<T extends $ZodIssueBase = $ZodIssue> = T extends any ? RawIssue<T> : never; type RawIssue<T extends $ZodIssueBase> = util.Flatten<util.MakePartial<T, "message" | "path"> & { /** The input data */ readonly input?: unknown; /** The schema or check that originated this issue. */ readonly inst?: $ZodType | $ZodCheck; /** @deprecated Internal use only. If `true`, Zod will continue executing validation despite this issue. */ readonly continue?: boolean | undefined; } & Record<string, any>>; export interface $ZodErrorMap<T extends $ZodIssueBase = $ZodIssue> { (issue: $ZodRawIssue<T>): { message: string; } | string | undefined | null; } export interface $ZodError<T = unknown> extends Error { type: T; issues: $ZodIssue[]; _zod: { output: T; def: $ZodIssue[]; }; stack?: string; name: string; } export declare const $ZodError: $constructor<$ZodError>; interface $ZodRealError<T = any> extends $ZodError<T> { } export declare const $ZodRealError: $constructor<$ZodRealError>; export type $ZodFlattenedError<T, U = string> = _FlattenedError<T, U>; type _FlattenedError<T, U = string> = { formErrors: U[]; fieldErrors: { [P in keyof T]?: U[]; }; }; export declare function flattenError<T>(error: $ZodError<T>): _FlattenedError<T>; export declare function flattenError<T, U>(error: $ZodError<T>, mapper?: (issue: $ZodIssue) => U): _FlattenedError<T, U>; type _ZodFormattedError<T, U = string> = T extends [any, ...any[]] ? { [K in keyof T]?: $ZodFormattedError<T[K], U>; } : T extends any[] ? { [k: number]: $ZodFormattedError<T[number], U>; } : T extends object ? util.Flatten<{ [K in keyof T]?: $ZodFormattedError<T[K], U>; }> : any; export type $ZodFormattedError<T, U = string> = { _errors: U[]; } & util.Flatten<_ZodFormattedError<T, U>>; export declare function formatError<T>(error: $ZodError<T>): $ZodFormattedError<T>; export declare function formatError<T, U>(error: $ZodError<T>, mapper?: (issue: $ZodIssue) => U): $ZodFormattedError<T, U>; export type $ZodErrorTree<T, U = string> = T extends [any, ...any[]] ? { errors: U[]; items?: { [K in keyof T]?: $ZodErrorTree<T[K], U>; }; } : T extends any[] ? { errors: U[]; items?: Array<$ZodErrorTree<T[number], U>>; } : T extends object ? { errors: U[]; properties?: { [K in keyof T]?: $ZodErrorTree<T[K], U>; }; } : { errors: U[]; }; export declare function treeifyError<T>(error: $ZodError<T>): $ZodErrorTree<T>; export declare function treeifyError<T, U>(error: $ZodError<T>, mapper?: (issue: $ZodIssue) => U): $ZodErrorTree<T, U>; /** Format a ZodError as a human-readable string in the following form. * * From * * ```ts * ZodError { * issues: [ * { * expected: 'string', * code: 'invalid_type', * path: [ 'username' ], * message: 'Invalid input: expected string' * }, * { * expected: 'number', * code: 'invalid_type', * path: [ 'favoriteNumbers', 1 ], * message: 'Invalid input: expected number' * } * ]; * } * ``` * * to * * ``` * username * ✖ Expected number, received string at "username * favoriteNumbers[0] * ✖ Invalid input: expected number * ``` */ export declare function toDotPath(path: (string | number | symbol)[]): string; interface BaseError { issues: $ZodIssueBase[]; } export declare function prettifyError(error: BaseError): string; export {};
Close