diff options
author | Nikias Bassen | 2017-04-25 14:54:59 +0200 |
---|---|---|
committer | Nikias Bassen | 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 @@ +################################################################################ +# +# AFL dictionary for XML Property Lists +# ---------------------- +# +# Several basic syntax elements and attributes for libplist. +# +# Created by Nikias Bassen <nikias@gmx.li> +# Adapted from libxml2's dict file (created by Michal Zalewski <lcamtuf@google.com>) +# + +attr_encoding=" encoding=\"1\"" +attr_generic=" a=\"1\"" +attr_version=" version=\"1\"" + +entity_builtin="<" +entity_decimal="" +entity_external="&a;" +entity_hex="" + +string_cdata="CDATA" +string_dashes="--" +string_empty="EMPTY" +string_empty_dblquotes="\"\"" +string_empty_quotes="''" +string_parentheses="()" +string_pcdata="#PCDATA" +string_percent="%a" +string_public="PUBLIC" +string_utf8="UTF-8" + +tag_cdata="<![CDATA[" +tag_close="</plist>" +tag_doctype="<!DOCTYPE" +tag_open="<plist>" +tag_open_close="<plist />" +tag_open_exclamation="<!" +tag_open_q="<?" +tag_sq2_close="]]>" +tag_xml_q="<?xml?>" +tag_array="<array>" +tag_data="<data>" +tag_date="<date>" +tag_dict="<dict>" +tag_false="<false/>" +tag_integer="<integer>" +tag_key="<key>" +tag_plist="<plist>" +tag_real="<real>" +tag_string="<string>" +tag_true="<true/>" |