diff options
| author | 2017-04-25 14:54:59 +0200 | |
|---|---|---|
| committer | 2017-04-25 14:54:59 +0200 | |
| commit | 5c6e695ca942f9a417d24e58f14d51f3e8e1885d (patch) | |
| tree | 7eef70ace704c440baea74fff06cc623f800d303 /fuzz/xplist.dict | |
| parent | 62ec804736435fa34e37e66e228e17e2aacee1d7 (diff) | |
| download | libplist-5c6e695ca942f9a417d24e58f14d51f3e8e1885d.tar.gz libplist-5c6e695ca942f9a417d24e58f14d51f3e8e1885d.tar.bz2 | |
Add fuzzing targets for libFuzzer used by Google's OSS-Fuzz
Diffstat (limited to 'fuzz/xplist.dict')
| -rw-r--r-- | fuzz/xplist.dict | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/fuzz/xplist.dict b/fuzz/xplist.dict new file mode 100644 index 0000000..48b0367 --- /dev/null +++ b/fuzz/xplist.dict | |||
| @@ -0,0 +1,51 @@ | |||
| 1 | ################################################################################ | ||
| 2 | # | ||
| 3 | # AFL dictionary for XML Property Lists | ||
| 4 | # ---------------------- | ||
| 5 | # | ||
| 6 | # Several basic syntax elements and attributes for libplist. | ||
| 7 | # | ||
| 8 | # Created by Nikias Bassen <nikias@gmx.li> | ||
| 9 | # Adapted from libxml2's dict file (created by Michal Zalewski <lcamtuf@google.com>) | ||
| 10 | # | ||
| 11 | |||
| 12 | attr_encoding=" encoding=\"1\"" | ||
| 13 | attr_generic=" a=\"1\"" | ||
| 14 | attr_version=" version=\"1\"" | ||
| 15 | |||
| 16 | entity_builtin="<" | ||
| 17 | entity_decimal="" | ||
| 18 | entity_external="&a;" | ||
| 19 | entity_hex="" | ||
| 20 | |||
| 21 | string_cdata="CDATA" | ||
| 22 | string_dashes="--" | ||
| 23 | string_empty="EMPTY" | ||
| 24 | string_empty_dblquotes="\"\"" | ||
| 25 | string_empty_quotes="''" | ||
| 26 | string_parentheses="()" | ||
| 27 | string_pcdata="#PCDATA" | ||
| 28 | string_percent="%a" | ||
| 29 | string_public="PUBLIC" | ||
| 30 | string_utf8="UTF-8" | ||
| 31 | |||
| 32 | tag_cdata="<![CDATA[" | ||
| 33 | tag_close="</plist>" | ||
| 34 | tag_doctype="<!DOCTYPE" | ||
| 35 | tag_open="<plist>" | ||
| 36 | tag_open_close="<plist />" | ||
| 37 | tag_open_exclamation="<!" | ||
| 38 | tag_open_q="<?" | ||
| 39 | tag_sq2_close="]]>" | ||
| 40 | tag_xml_q="<?xml?>" | ||
| 41 | tag_array="<array>" | ||
| 42 | tag_data="<data>" | ||
| 43 | tag_date="<date>" | ||
| 44 | tag_dict="<dict>" | ||
| 45 | tag_false="<false/>" | ||
| 46 | tag_integer="<integer>" | ||
| 47 | tag_key="<key>" | ||
| 48 | tag_plist="<plist>" | ||
| 49 | tag_real="<real>" | ||
| 50 | tag_string="<string>" | ||
| 51 | tag_true="<true/>" | ||
