As a side note, we've recently added a list of "aggressive" Asan
options to wiki
(
https://github.com/google/sanitizers/wiki/AddressSanitizer):
Q: Can I run AddressSanitizer with more aggressive diagnostics enabled?
A: Yes! In particular you may want to enable
CFLAGS += -fsanitize-address-use-after-scope
ASAN_OPTIONS=strict_string_checks=1:detect_stack_use_after_return=1:check_initialization_order=1:strict_init_order=1
The options report violations which are usually treated as
non-critical (strict_init_order), may produce FPs
(strict_string_checks) or significantly slow down execution
(detect_stack_use_after_return). -fsanitize-address-use-after-scope is
only supported in Clang and a bit unstable.
> --
> You received this message because you are subscribed to the Google Groups
> "afl-users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to
afl-users+...@googlegroups.com.
> For more options, visit
https://groups.google.com/d/optout.