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 /
yaml /
dist /
[ HOME SHELL ]
Name
Size
Permission
Action
compose
[ DIR ]
drwxrwxr-x
doc
[ DIR ]
drwxrwxr-x
nodes
[ DIR ]
drwxrwxr-x
parse
[ DIR ]
drwxrwxr-x
schema
[ DIR ]
drwxrwxr-x
stringify
[ DIR ]
drwxrwxr-x
errors.d.ts
1.19
KB
-rw-rw-r--
errors.js
2.07
KB
-rw-rw-r--
index.d.ts
1.31
KB
-rw-rw-r--
index.js
1.73
KB
-rw-rw-r--
log.d.ts
226
B
-rw-rw-r--
log.js
576
B
-rw-rw-r--
options.d.ts
10.62
KB
-rw-rw-r--
public-api.d.ts
2.77
KB
-rw-rw-r--
public-api.js
3.96
KB
-rw-rw-r--
test-events.d.ts
96
B
-rw-rw-r--
test-events.js
4.17
KB
-rw-rw-r--
util.d.ts
709
B
-rw-rw-r--
util.js
1008
B
-rw-rw-r--
visit.d.ts
4.95
KB
-rw-rw-r--
visit.js
9.04
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : public-api.d.ts
import { Composer } from './compose/composer.js'; import type { Reviver } from './doc/applyReviver.js'; import { Document, Replacer } from './doc/Document.js'; import type { Node, ParsedNode } from './nodes/Node.js'; import type { CreateNodeOptions, DocumentOptions, ParseOptions, SchemaOptions, ToJSOptions, ToStringOptions } from './options.js'; export interface EmptyStream extends Array<Document.Parsed>, ReturnType<Composer['streamInfo']> { empty: true; } /** * Parse the input as a stream of YAML documents. * * Documents should be separated from each other by `...` or `---` marker lines. * * @returns If an empty `docs` array is returned, it will be of type * EmptyStream and contain additional stream information. In * TypeScript, you should use `'empty' in docs` as a type guard for it. */ export declare function parseAllDocuments<Contents extends Node = ParsedNode, Strict extends boolean = true>(source: string, options?: ParseOptions & DocumentOptions & SchemaOptions): Array<Contents extends ParsedNode ? Document.Parsed<Contents, Strict> : Document<Contents, Strict>> | EmptyStream; /** Parse an input string into a single YAML.Document */ export declare function parseDocument<Contents extends Node = ParsedNode, Strict extends boolean = true>(source: string, options?: ParseOptions & DocumentOptions & SchemaOptions): Contents extends ParsedNode ? Document.Parsed<Contents, Strict> : Document<Contents, Strict>; /** * Parse an input string into JavaScript. * * Only supports input consisting of a single YAML document; for multi-document * support you should use `YAML.parseAllDocuments`. May throw on error, and may * log warnings using `console.warn`. * * @param str - A string with YAML formatting. * @param reviver - A reviver function, as in `JSON.parse()` * @returns The value will match the type of the root value of the parsed YAML * document, so Maps become objects, Sequences arrays, and scalars result in * nulls, booleans, numbers and strings. */ export declare function parse(src: string, options?: ParseOptions & DocumentOptions & SchemaOptions & ToJSOptions): any; export declare function parse(src: string, reviver: Reviver, options?: ParseOptions & DocumentOptions & SchemaOptions & ToJSOptions): any; /** * Stringify a value as a YAML document. * * @param replacer - A replacer array or function, as in `JSON.stringify()` * @returns Will always include `\n` as the last character, as is expected of YAML documents. */ export declare function stringify(value: any, options?: DocumentOptions & SchemaOptions & ParseOptions & CreateNodeOptions & ToStringOptions): string; export declare function stringify(value: any, replacer?: Replacer | null, options?: string | number | (DocumentOptions & SchemaOptions & ParseOptions & CreateNodeOptions & ToStringOptions)): string;
Close