neuzz icon indicating copy to clipboard operation
neuzz copied to clipboard

neural network assisted fuzzer

Results 12 neuzz issues
Sort by recently updated
recently updated
newest added

Contributing these upstream, these are some changes I found useful when testing locally. * Allows running ASAN instrumented binaries, I've placed instructions on how to do so in the README....

In line 1726 in function dry_run, the code is ``` else if(fault = FAULT_TMOUT){ ``` which I believe it should be ``` else if(fault == FAULT_TMOUT){ ``` Still it seems...