Skip to content

Commit

Permalink
fix link to asan
Browse files Browse the repository at this point in the history
  • Loading branch information
ahpaleus committed Feb 9, 2024
1 parent c82ddce commit 5c58664
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/docs/fuzzing/c-cpp/10-libfuzzer/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ add note: There is no clear answer, but:

## AddressSanitizer {#addresssanitizer}

ASan helps detect memory errors that might otherwise go unnoticed. For a general introduction to ASan, refer to [AddressSanitizer](#addresssanitizer).
ASan helps detect memory errors that might otherwise go unnoticed. For a general introduction to ASan, refer to [AddressSanitizer]({{% relref "/docs/fuzzing/techniques/03-asan" %}}).

For instance, the following heap buffer overflow is usually not detectable without ASan; although we access the allocated buffer out of bounds, in practice, the memory we hit—which may be part of another allocation metadata—is still mapped in the process, and so the program does not crash with a segmentation fault.

Expand Down

0 comments on commit 5c58664

Please sign in to comment.