
* linux kernel (x509_cert) and process fuzzing example * rework filters * update to latest qemu * working for process and kernel fuzzing * new i2s mutator for binary only fuzzers * refactoring modules with new filtering interface * add state as parameter of harness * hide unused global in usermode * Script for stub bindings generation * do not try to check whether it is worth generating the bindings, always generate when the env variable is on. * add taplo to fmt_all.sh * Moved fuzzers (again) in a target-centric way. * fix rust 2024 warnings. * new libafl_qemu harness structure. * rename qemu_systemmode into qemu_baremetal * fix qemu baremetal makefile * fix formatter --------- Co-authored-by: Toka <tokazerkje@outlook.com>
22 lines
437 B
Plaintext
22 lines
437 B
Plaintext
#
|
|
# AFL tokens file for JPEG images
|
|
# ------------------------------
|
|
#
|
|
# Created by Michal Zalewski
|
|
#
|
|
|
|
header_jfif="JFIF\x00"
|
|
header_jfxx="JFXX\x00"
|
|
|
|
section_ffc0="\xff\xc0"
|
|
section_ffc2="\xff\xc2"
|
|
section_ffc4="\xff\xc4"
|
|
section_ffd0="\xff\xd0"
|
|
section_ffd8="\xff\xd8"
|
|
section_ffd9="\xff\xd9"
|
|
section_ffda="\xff\xda"
|
|
section_ffdb="\xff\xdb"
|
|
section_ffdd="\xff\xdd"
|
|
section_ffe0="\xff\xe0"
|
|
section_ffe1="\xff\xe1"
|
|
section_fffe="\xff\xfe" |