Address Sanitizer Internals
blog.gistre.epita.fr
Address Sanitizer Internals
1–10 of 30 posts
Re: Address Sanitizer Internals
#2Does anyone know of a good explanation of HWAddress Sanitizer internals?
Re: Address Sanitizer Internals
#3Re: Address Sanitizer Internals
#4One thing this explains is why ASan has false negatives. It's a great tool, but the typical comment that it fully mitigates memory safety issues is just not true (even assuming your tests actually trigger the memory safety bugs, which unlike eg code coverage there's no knowing if you achieved or not)
Re: Address Sanitizer Internals
#5One thing this explains is why ASan has false negatives. It's a great tool, but the typical comment that it fully mitigates memory safety issues is just not true (even assuming your tests actually trigger the memory safety bugs, which unlike eg code coverage there's no knowing if you achieved or not)
I've never seen anyone claim that.
Re: Address Sanitizer Internals
#6Re: Address Sanitizer Internals
#7Re: Address Sanitizer Internals
#8Earlier quoted context omitted.
I've never seen anyone claim that.
It comes up a lot in HN C++-related comment threads, for starters
C or C++ w/o ASan and UBSan is like skydiving w/o a parachute.
Re: Address Sanitizer Internals
#9Earlier quoted context omitted.
It comes up a lot in HN C++-related comment threads, for starters
I've never seen anyone claim that asan fully mitigates memory safety issues in C++. Perhaps you could link to one?
So I learned something new from the OP (that this type of false negative is possible).