Hacker News new | ask | show | jobs
by metzmanj 2696 days ago
There are tools for fuzzing go: https://github.com/dvyukov/go-fuzz

But I think the kinds of bugs found by fuzzing aren't generally security issues in go (I don't know much about go) as they are in C/C++.

EDIT: See guidovranken's excellent sibling comment for how fuzzing can still be useful for go.

1 comments

Awesome, I will check that out. Thank you!