Skip to main content
Back to the directory
trailofbits/skillsSoftware EngineeringFrontend and Design

address-sanitizer

Memory error detection for C/C++ fuzzing via compile-time instrumentation.

SkillJury keeps community verdicts, source metadata, and external repository signals in separate lanes so ranking data never pretends to be a review.

SkillJury verdict
Pending

No approved reviews yet

Would recommend
Pending

Waiting on enough review volume

Install signal
1

Weekly or total install activity from catalog data

Sign in to review
0 review requests
Install command
npx skills add https://github.com/trailofbits/skills --skill address-sanitizer
SkillJury does not have enough approved reviews to publish a community verdict yet. Source metadata and repository proof are still available above.
SkillJury Signal Summary

As of May 1, 2026, address-sanitizer has 1 weekly installs, 0 community reviews on SkillJury. Community votes currently stand at 0 upvotes and 0 downvotes. Source: trailofbits/skills. Canonical URL: https://skills.sh/trailofbits/skills/address-sanitizer.

Security audits
Gen Agent Trust HubPASS
SocketPASS
SnykPASS
About this skill
Memory error detection for C/C++ fuzzing via compile-time instrumentation. AddressSanitizer (ASan) is a widely adopted memory error detection tool used extensively during software testing, particularly fuzzing. It helps detect memory corruption bugs that might otherwise go unnoticed, such as buffer overflows, use-after-free errors, and other memory safety violations. ASan is a standard practice in fuzzing due to its effectiveness in identifying memory vulnerabilities. It instruments code at compile time to track memory allocations and accesses, detecting illegal operations at runtime. Apply this technique when: Skip this technique when: Compile and link your code with the -fsanitize=address flag: The -g flag is recommended to get better stack traces when ASan detects errors. Set the ASAN_OPTIONS environment variable to configure ASan behavior: Execute the ASan-instrumented binary. When memory errors are detected, ASan will print detailed reports: ASan requires approximately 20TB of virtual memory.

Source description provided by the upstream listing. Community review signal and install context stay separate from this narrative layer.

Community reviews

Latest reviews

No community reviews yet. Be the first to review.

Browse this skill in context
FAQ
What does address-sanitizer do?

Memory error detection for C/C++ fuzzing via compile-time instrumentation.

Is address-sanitizer good?

address-sanitizer does not have approved reviews yet, so SkillJury cannot publish a community verdict.

Which AI agents support address-sanitizer?

address-sanitizer currently lists compatibility with Skills CLI.

Is address-sanitizer safe to install?

address-sanitizer has been scanned by security audit providers tracked on SkillJury. Check the security audits section on this page for detailed results from Socket.dev and Snyk.

What are alternatives to address-sanitizer?

Skills in the same category include review-management, conversation-memory, coverage, grimoire-aave.

How do I install address-sanitizer?

Run the following command to install address-sanitizer: npx skills add https://github.com/trailofbits/skills --skill address-sanitizer

Related skills

More from trailofbits/skills

Related skills

Alternatives in Software Engineering