Ruzzy fuzzing campaign
SkillAI & modelsLets your agent set up and run Ruzzy, a coverage-guided fuzzer for Ruby code and C extensions.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Ruzzy fuzzing campaign skill
About this capability
Use when asked to set up and run coverage-guided fuzzing of Ruby code or C extensions with Ruzzy, producing crash reports or clean campaign summaries. Not for C/C++ fuzzing: use libfuzzer or libfuzzer.
What this skill tells your AI
The instructions your AI receives, as published by outlinedriven/odin-claude-plugin in plugins/odin-fuzzing/skills/ruzzy/SKILL.md and read by ahel’s review.
Contract
| Field | Bound contract |
|---|---|
| Trigger | User needs Ruzzy to run coverage-guided fuzzing on Ruby code or a Ruby native extension. |
| Authority | Reversible local: writes harness, tracer, sanitizer preload, corpus, and installed gem files to the working directory or the local Ruby gem path. Record the installed-gem list before install; rollback is file deletion plus uninstalling exactly the gem version this campaign added. No remote mutation. |
| Side effect | Write Ruzzy harness scripts, tracer scripts, sanitizer LD_PRELOAD paths, corpus files, and install the target gem with clang and sanitizer flags. |
| Done | Ruzzy executes the intended Ruby target with the correct tracer or extension setup and reproduces saved failures. |
Inputs
Required: Ruby target path or gem name, sanitizer selection (ASan or UBSan).
Optional: corpus directory path, libFuzzer arguments (e.g., -max_len=1024), crash file to reproduce.
Procedure
- Confirm target: pure Ruby (requires tracer) or C extension (single harness). Done when: the target kind is confirmed as pure Ruby or C extension.
- Confirm sanitizer: ASan (
Ruzzy::ASAN_PATH) or UBSan (Ruzzy::UBSAN_PATH). Done when: the sanitizer is selected and the selectedRuzzy::ASAN_PATHorRuzzy::UBSAN_PATHconstant is confirmed. - For pure Ruby targets, write a tracer script calling
Ruzzy.trace('harness.rb')and a separate harness script callingRuzzy.fuzz(test_one_input). For C extensions, write one harness script callingRuzzy.fuzz(test_one_input); no tracer required. Done when: the harness and, for pure Ruby, the tracer script are written. - Write the harness as a lambda named
test_one_inputthat accepts data and returns0. Catch Ruby exceptions in C extension harnesses; let them propagate in pure Ruby harnesses. Done when: the harness lambda is written with the correct exception handling for the target kind. - Set
ASAN_OPTIONS=allocator_may_return_null=1:detect_leaks=0:use_sigaltstack=0. Do not exportLD_PRELOAD; use it inline with the ruby command. Done when:ASAN_OPTIONSis set andLD_PRELOADis prepared for inline use. - Record
gem list --local(each gem's name and version) before any install. Then install the gem with clang and sanitizer flags: setCC=clang,CXX=clang++,LDSHARED="clang -shared", andLDSHAREDXX="clang++ -shared"; setCFLAGSandCXXFLAGSto-fsanitize=address,fuzzer-no-link -fno-omit-frame-pointer -fno-common -fPIC -gfor an ASan build, or-fsanitize=undefined,fuzzer-no-link -fno-omit-frame-pointer -fno-common -fPIC -gfor a UBSan build, matching the sanitizer selected in step 2 so the instrumented library the run preloads matches the build. Also setMAKE="make --environment-overrides V=1"so GNU make lets environmentCC,CFLAGS, and related values override the mkmf Makefile; without--environment-overrides, Ruby's extension build can ignore those flags and install an uninstrumented native library. The-sharedflag is required forLDSHAREDandLDSHAREDXX; without it the native extension link fails. Done when: the pre-install gem list is recorded and the gem is installed with clang and the flags matching the selected sanitizer. - Run:
LD_PRELOAD=$(ruby -e 'require "ruzzy"; print Ruzzy::ASAN_PATH') ruby "<harness-or-tracer>.rb" [corpus] [libfuzzer-options]for ASan, or setSAN_PATH=$(ruby -e 'require "ruzzy"; print Ruzzy::UBSAN_PATH')and runLD_PRELOAD="$SAN_PATH" ruby "<harness-or-tracer>.rb" [corpus] [libfuzzer-options]for UBSan. Done when: the fuzzer runs with the correctLD_PRELOADand harness. - On
ERROR: AddressSanitizer:orERROR: UndefinedBehaviorSanitizer:, capture the crash file path, Base64 content, and reproducer command. Writecrash-*files to the working directory. Done when: any sanitizer error is captured with crash file path, content, and reproducer command, or the campaign completes without error. - To reproduce a saved failure, run the same command passing the crash file path as the final argument. Done when: the saved failure is reproduced or confirmed non-reproducible.
Failure and recovery
| Failure class | Meaning | Recovery |
|---|---|---|
platform-missing | Platform is not Linux x86-64/ARM64, clang is unavailable, or Ruby is not installed | Halt; suggest Docker environment |
dependency-missing | Gem not installed or wrong clang | Install gem with sanitizer flags; verify the selected Ruzzy::ASAN_PATH or Ruzzy::UBSAN_PATH constant resolves |
harness-error | Ruby exception exits the fuzzer | Adjust exception handling for a C extension harness; a pure Ruby harness must not catch exceptions |
sanitizer-report | ASan or UBSan error detected | Capture crash file; report class, address, reproducer |
no-crashes-found | Fuzzer ran without sanitizer violations | Report campaign completed cleanly |
env-misconfigured | Missing ASAN_OPTIONS or LD_PRELOAD | Set ASAN_OPTIONS and re-run inline LD_PRELOAD |
Rollback: delete written harness, tracer, and corpus files. Diff the pre-install gem list --local against the current list and gem uninstall <name> -v <version> only the name-version pair this campaign added. Leave every pre-existing gem version in place. No VCS mutation.
Output
Fuzzing campaign report containing:
- Target gem or file fuzzed
- Sanitizer and version
- libFuzzer options used
- Execution duration and corpus state
- For each crash: sanitizer error type, crash file path, Base64 input, reproducer command
- If clean: total inputs, exec/s, coverage summary lines
Signals
- GitHub stars
- 35
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
ruzzy- Source
- github.com/outlinedriven/odin-claude-plugin