/r/fuzzing

Photograph via snooOG

About fuzz testing and anything which seems related to it.

/r/fuzzing

2,656 Subscribers

18

What do you think about AI in fuzz testing?

hey all, I came across this online event from Code Intelligence, and it seems like they are incorporating an AI agent into fuzz testing to speed it up. Do you have any experience with AI in fuzz testing? Can it really be efficient?

5 Comments
2024/12/30
11:15 UTC

3

Honggfuzz, set extension of file

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?

0 Comments
2024/10/21
15:19 UTC

1 Comment
2024/10/18
15:17 UTC

5

Finding a Heap Buffer Overflow in the ASAM MDF Library Used in ADAS Systems with AFL++

0 Comments
2024/10/13
07:54 UTC

2

LLM-based Fuzz Harness generation with OSS-Fuzz-gen (Youtube, 2024.09.18)

0 Comments
2024/09/19
07:05 UTC

Back To Top