|
|
|
|
|
by rwmj
1039 days ago
|
|
The key to modern fuzzing is feedback, usually some kind of coverage measurement of the program under test. This allows the fuzzer to be much smarter about how it finds new code paths and discards inputs that don't extend coverage. This makes fuzzing find bugs a lot quicker. Google have a project to do fuzzing on Linux system calls using coverage feedback: https://github.com/google/syzkaller |
|