Leon Scroggins III | 3cc83ac | 2017-10-06 11:02:56 -0400 | [diff] [blame] | 1 | # |
| 2 | # AFL dictionary for PNG images |
| 3 | # ----------------------------- |
| 4 | # |
| 5 | # Just the basic, standard-originating sections; does not include vendor |
| 6 | # extensions. |
| 7 | # |
| 8 | # Created by Michal Zalewski <lcamtuf@google.com> |
| 9 | # |
| 10 | |
| 11 | header_png="\x89PNG\x0d\x0a\x1a\x0a" |
| 12 | |
| 13 | section_IDAT="IDAT" |
| 14 | section_IEND="IEND" |
| 15 | section_IHDR="IHDR" |
| 16 | section_PLTE="PLTE" |
| 17 | section_bKGD="bKGD" |
| 18 | section_cHRM="cHRM" |
| 19 | section_eXIf="eXIf" |
| 20 | section_fRAc="fRAc" |
| 21 | section_gAMA="gAMA" |
| 22 | section_gIFg="gIFg" |
| 23 | section_gIFt="gIFt" |
| 24 | section_gIFx="gIFx" |
| 25 | section_hIST="hIST" |
| 26 | section_iCCP="iCCP" |
| 27 | section_iTXt="iTXt" |
| 28 | section_oFFs="oFFs" |
| 29 | section_pCAL="pCAL" |
| 30 | section_pHYs="pHYs" |
| 31 | section_sBIT="sBIT" |
| 32 | section_sCAL="sCAL" |
| 33 | section_sPLT="sPLT" |
| 34 | section_sRGB="sRGB" |
| 35 | section_sTER="sTER" |
| 36 | section_tEXt="tEXt" |
| 37 | section_tIME="tIME" |
| 38 | section_tRNS="tRNS" |
| 39 | section_zTXt="zTXt" |