Hello everyone!
I am new to coding with Elixir/Erlang. And i am looking for some utilities for fuzzing testing like AFL++.
Does anyone knowns can i fuzz my elixir app with AFL or some similar utilities?
I need to get coverage code and sum of tests for my fuzzing.
The best library/tool I’m aware of is stream_data
(stream_data | Hex)
Not technically fuzzing but it does give you some tools for property based testing
3 Likes
AFAIK there are no focused fuzzing tools libraries, “only” property-based testing tools (one already linked above) exist. They can do the job though IMO but you’ll have to write the code yourself which is not a big endeavor.