summaryrefslogtreecommitdiffstats
path: root/fuzz/xplist.dict
diff options
context:
space:
mode:
Diffstat (limited to 'fuzz/xplist.dict')
-rw-r--r--fuzz/xplist.dict51
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
12attr_encoding=" encoding=\"1\""
13attr_generic=" a=\"1\""
14attr_version=" version=\"1\""
15
16entity_builtin="&lt;"
17entity_decimal="&#1;"
18entity_external="&a;"
19entity_hex="&#x1;"
20
21string_cdata="CDATA"
22string_dashes="--"
23string_empty="EMPTY"
24string_empty_dblquotes="\"\""
25string_empty_quotes="''"
26string_parentheses="()"
27string_pcdata="#PCDATA"
28string_percent="%a"
29string_public="PUBLIC"
30string_utf8="UTF-8"
31
32tag_cdata="<![CDATA["
33tag_close="</plist>"
34tag_doctype="<!DOCTYPE"
35tag_open="<plist>"
36tag_open_close="<plist />"
37tag_open_exclamation="<!"
38tag_open_q="<?"
39tag_sq2_close="]]>"
40tag_xml_q="<?xml?>"
41tag_array="<array>"
42tag_data="<data>"
43tag_date="<date>"
44tag_dict="<dict>"
45tag_false="<false/>"
46tag_integer="<integer>"
47tag_key="<key>"
48tag_plist="<plist>"
49tag_real="<real>"
50tag_string="<string>"
51tag_true="<true/>"