A couple resources about fuzzing with dictionaries:
Some state machine fuzz targets that have found important bugs in LDK over the years (might be helpful or provide inspiration):
Continuous fuzzing vs. manual periodic fuzzing:
LDK provides a good case study here. They do manual fuzzing before releases, which is good. However, continuous fuzzing in the cloud discovered lightningdevkit/rust-lightning#4139 (comment) much earlier than it would have been found through periodic manual fuzzing alone.
Credits for pointers: Matt Morehouse
A couple resources about fuzzing with dictionaries:
Some state machine fuzz targets that have found important bugs in LDK over the years (might be helpful or provide inspiration):
Continuous fuzzing vs. manual periodic fuzzing:
LDK provides a good case study here. They do manual fuzzing before releases, which is good. However, continuous fuzzing in the cloud discovered lightningdevkit/rust-lightning#4139 (comment) much earlier than it would have been found through periodic manual fuzzing alone.
Credits for pointers: Matt Morehouse