OLD | NEW |
---|---|
(Empty) | |
1 # | |
2 # AFL dictionary for MHTML | |
mmoroz
2016/08/01 17:41:37
If you haven't copied this dictionary from the AFL
Łukasz Anforowicz
2016/08/01 21:09:39
Done.
| |
3 # ------------------------ | |
4 # | |
5 # Several basic syntax elements modeled on | |
6 # 1) rfc2557 | |
7 # 2) test files from chromium/third_party/WebKit/LayoutTests/mhtml | |
8 # 3) suggestions from manual runs of libFuzzer | |
9 # | |
10 | |
11 line_ending_1="\x0D\x0A" | |
12 line_ending_2="\x0D" | |
13 line_ending_3="\x0A" | |
14 backslash="\\" | |
15 space=" " | |
16 tab="\x08" | |
17 open_paren="(" | |
18 close_paren=")" | |
19 | |
20 content_location1="Content-Location: CID: foo@bar.net" | |
21 content_location2="Content-Location: http://www.ietf.cnri.reston.va.us/images/ie tflogo.gif" | |
22 content_location3="Content-Location: CID:foo@bar.net ; this header is disregarde d" | |
23 content_location4="Content-Location: CID:foo@bar.net" | |
24 content_location5="Content-Location: CID:foo3@foo1@bar.net" | |
25 | |
26 content_type1_line1="Content-Type: multipart/related; boundary=\"boundary-exampl e\";" | |
27 content_type1_line2a="\x08type\"text/html\"" | |
28 content_type1_line2b="\x08type="text/html" | |
29 content_type1_line2c="\x08type=\"text/html\"; start=\"<foo3@foo1@bar.net>\"" | |
30 content_type1_line2d="\x08type=\"text/html\"; start=\"<foo@bar.net>\"" | |
31 content_type2="Content-Type: text/html;charset=\"US-ASCII\"" | |
32 content_type3="Content-Type: text/html; charset=\"iso-8859-1\"" | |
33 content_type4="Content-Type: multipart/related;" | |
34 content_type5="Content-Type: IMAGE/GIF" | |
35 | |
36 content_id1="Content-ID: <97116092511xyz@foo.bar.net>" | |
37 content_id2="Content-ID: <foo@bar.net>" | |
38 content_id3="Content-ID: <foo4@foo1@bar.net>" | |
39 | |
40 cid_uri_usage_1="<IMG SRC=\"cid:foo4@foo1@bar.net\">" | |
41 cid_uri_usage_2="<IMG SRC=\"cid:foo@bar.net\">" | |
42 | |
43 boundary_prefix="--" | |
44 boundary_1="--boundary-example" | |
45 boundary_final1="--boundary-example--" | |
46 boundary_3="\x08boundary=\"----=_NextPart_000_0000_87206557.D2C008B0\";" | |
47 | |
48 from="From: foo1@bar.net" | |
49 to="To: foo2@bar.net" | |
50 | |
51 subject_1="Subject: A simple example" | |
52 subject_2="Subject: =?iso-2022-jp?B?QSBzaW1wbGUgcGFnZQ==?=" | |
53 | |
54 date_1="Date: Wed, May 11 2011 15:36:36 GMT-0700" | |
55 | |
56 mime_version="Mime-Version: 1.0" | |
57 | |
58 content_transfer_encoding1="Content-Transfer-Encoding: base64" | |
59 content_transfer_encoding2="Content-Transfer-Encoding: quoted-printable" | |
60 content_transfer_encoding3="Content-Transfer-Encoding: binary" | |
61 content_transfer_encoding4="Content-Transfer-Encoding: 7bit" | |
62 content_transfer_encoding5="Content-Transfer-Encoding: 8bit" | |
63 | |
64 libFuzzer_suggestion1="date" | |
65 libFuzzer_suggestion2="Access-Control-Allow-Extern" | |
66 libFuzzer_suggestion3="Link" | |
67 libFuzzer_suggestion4="from" | |
68 libFuzzer_suggestion5="boundary" | |
69 libFuzzer_suggestion6="mime-version" | |
OLD | NEW |