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 : sfTests.yml
--- %YAML:1.0 test: Multiple quoted string on one line brief: > Multiple quoted string on one line yaml: | stripped_title: { name: "foo bar", help: "bar foo" } php: | ['stripped_title' => ['name' => 'foo bar', 'help' => 'bar foo']] --- test: Empty sequence yaml: | foo: [ ] php: | ['foo' => []] --- test: Empty value yaml: | foo: php: | ['foo' => null] --- test: Inline string parsing brief: > Inline string parsing yaml: | test: ['complex: string', 'another [string]'] php: | ['test' => ['complex: string', 'another [string]']] --- test: Boolean brief: > Boolean yaml: | - false - true - null - ~ - 'false' - 'true' - 'null' - '~' php: | [ false, true, null, null, 'false', 'true', 'null', '~', ] --- test: Empty lines in literal blocks brief: > Empty lines in literal blocks yaml: | foo: bar: | foo bar php: | ['foo' => ['bar' => "foo\n\n\n \nbar\n"]] --- test: Empty lines in folded blocks brief: > Empty lines in folded blocks yaml: | foo: bar: > foo bar php: | ['foo' => ['bar' => "\nfoo\n\nbar\n"]] --- test: IP addresses brief: > IP addresses yaml: | foo: 10.0.0.2 php: | ['foo' => '10.0.0.2'] --- test: A sequence with an embedded mapping brief: > A sequence with an embedded mapping yaml: | - foo - bar: { bar: foo } php: | ['foo', ['bar' => ['bar' => 'foo']]] --- test: Octal brief: as in spec example 2.19, octal value is converted yaml: | foo: 0123 php: | ['foo' => 83] --- test: Octal strings brief: Octal notation in a string must remain a string yaml: | foo: "0123" php: | ['foo' => '0123'] --- test: Octal strings brief: Octal notation in a string must remain a string yaml: | foo: '0123' php: | ['foo' => '0123'] --- test: Octal strings brief: Octal notation in a string must remain a string yaml: | foo: | 0123 php: | ['foo' => "0123\n"] --- test: Document as a simple hash brief: Document as a simple hash yaml: | { foo: bar } php: | ['foo' => 'bar'] --- test: Document as a simple array brief: Document as a simple array yaml: | [ foo, bar ] php: | ['foo', 'bar']
Close