/r/fuzzing
About fuzz testing and anything which seems related to it.
Fuzzing resources:
/r/fuzzing
I'm trying to fuzz a binary that accept only .csv
extension files, otherwise it exit immediately. Thus I set the -e csv
value in honggfuzz:
../honggfuzz/honggfuzz -i input_dir -x --save_all --output output/ -e csv -- ./fuzzme --info ___FILE___
But when I check among the processes I see that the binary is executed with the file description and not with the file with the extension .csv
as I would wish:
root 4680 0.0 0.0 188524 6420 ? Rs 17:05 0:00 ./fuzzme --info /dev/fd/1021
Do you know how do I force honggfuzz to execute the binary with a file with extension csv as argument?