OLD | NEW |
(Empty) | |
| 1 # |
| 2 # AFL dictionary for JPEG images |
| 3 # ------------------------------ |
| 4 # |
| 5 # Created by Michal Zalewski <lcamtuf@google.com> |
| 6 # |
| 7 |
| 8 header_jfif="JFIF\x00" |
| 9 header_jfxx="JFXX\x00" |
| 10 |
| 11 section_ffc0="\xff\xc0" |
| 12 section_ffc2="\xff\xc2" |
| 13 section_ffc4="\xff\xc4" |
| 14 section_ffd0="\xff\xd0" |
| 15 section_ffd8="\xff\xd8" |
| 16 section_ffd9="\xff\xd9" |
| 17 section_ffda="\xff\xda" |
| 18 section_ffdb="\xff\xdb" |
| 19 section_ffdd="\xff\xdd" |
| 20 section_ffe0="\xff\xe0" |
| 21 section_ffe1="\xff\xe1" |
| 22 section_fffe="\xff\xfe" |
OLD | NEW |