You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Detecting these two other bugs would be pretty simple:
Double free: Store all free'd addresses. If the same one occurs twice (without a call to malloc() allocating a buffer at that address first), report a double free
Use after free: Keep track of free'd heap buffer regions. If any memory access falls within one of those regions report a UAF
The text was updated successfully, but these errors were encountered:
domenukk
pushed a commit
to domenukk/afl-unicorn
that referenced
this issue
Jul 14, 2019
Detecting these two other bugs would be pretty simple:
The text was updated successfully, but these errors were encountered: