Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add use-after-free and double-free detection to UnicornSimpleHeap #7

Open
njv299 opened this issue Nov 9, 2017 · 0 comments
Open

Comments

@njv299
Copy link
Collaborator

njv299 commented Nov 9, 2017

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
domenukk pushed a commit to domenukk/afl-unicorn that referenced this issue Jul 14, 2019
Fix some github URL typos in docs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant