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 : YtsFlowCollections.yml
--- test: Simple Inline Array brief: > Sequences can be contained on a single line, using the inline syntax. Separate each entry with commas and enclose in square brackets. yaml: | seq: [ a, b, c ] php: | ['seq' => ['a', 'b', 'c']] --- test: Simple Inline Hash brief: > Mapping can also be contained on a single line, using the inline syntax. Each key-value pair is separated by a colon, with a comma between each entry in the mapping. Enclose with curly braces. yaml: | hash: { name: Steve, foo: bar } php: | ['hash' => ['name' => 'Steve', 'foo' => 'bar']] --- test: Multi-line Inline Collections todo: true brief: > Both inline sequences and inline mappings can span multiple lines, provided that you indent the additional lines. yaml: | languages: [ Ruby, Perl, Python ] websites: { YAML: yaml.org, Ruby: ruby-lang.org, Python: python.org, Perl: use.perl.org } php: | [ 'languages' => ['Ruby', 'Perl', 'Python'], 'websites' => [ 'YAML' => 'yaml.org', 'Ruby' => 'ruby-lang.org', 'Python' => 'python.org', 'Perl' => 'use.perl.org' ] ] --- test: Commas in Values (not in the spec!) todo: true brief: > List items in collections are delimited by commas, but there must be a space after each comma. This allows you to add numbers without quoting. yaml: | attendances: [ 45,123, 70,000, 17,222 ] php: | ['attendances' => [45123, 70000, 17222]]
Close