Skip to main content
Back to registry

fuzzing-dictionary

trailofbits/skills

A fuzzing dictionary provides domain-specific tokens to guide the fuzzer toward interesting inputs. Instead of purely random mutations, the fuzzer incorporates known keywords, magic numbers, protocol commands, and format-specific strings that are more likely to reach deeper code paths in parsers, protocol handlers,...

Installs754
Install command
npx skills add https://github.com/trailofbits/skills --skill fuzzing-dictionary
Security audits
Gen Agent Trust HubPASS
SocketPASS
SnykPASS
About this skill
A fuzzing dictionary provides domain-specific tokens to guide the fuzzer toward interesting inputs. Instead of purely random mutations, the fuzzer incorporates known keywords, magic numbers, protocol commands, and format-specific strings that are more likely to reach deeper code paths in parsers, protocol handlers, and file format processors. Dictionaries are text files containing quoted strings that represent meaningful tokens for your target. They help fuzzers bypass early validation checks and explore code paths that would be difficult to reach through blind mutation alone. Apply this technique when: Skip this technique when: Create a text file with quoted strings on each line. Use comments ( # ) for documentation. Example dictionary format: Choose a generation method based on what's available: From LLM: Prompt ChatGPT or Claude with: From header files: From man pages (for CLI tools): From binary strings: Use the appropriate flag for your fuzzer (see Quick Reference above). Use Case: Fuzzing HTTP or custom protocol handlers Dictionary content: Use Case: Fuzzing image parsers, media decoders, archive handlers Dictionary content: Use Case: Fuzzing config file parsers (YAML, TOML, INI) Dictionary content: When using afl-clang-lto compiler, AFL++ automatically extracts dictionary entries from string comparisons in the binary.

Source description provided by the upstream skill listing. Community reviews and install context appear in the sections below.

Community Reviews

Latest reviews

Sign in to review

No community reviews yet. Be the first to review.

Browse this skill in context
FAQ
What does fuzzing-dictionary do?

A fuzzing dictionary provides domain-specific tokens to guide the fuzzer toward interesting inputs. Instead of purely random mutations, the fuzzer incorporates known keywords, magic numbers, protocol commands, and format-specific strings that are more likely to reach deeper code paths in parsers, protocol handlers,...

Is fuzzing-dictionary good?

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

What agent does fuzzing-dictionary work with?

fuzzing-dictionary currently lists compatibility with codex, gemini-cli, opencode, cursor, github-copilot, claude-code.

What are alternatives to fuzzing-dictionary?

Skills in the same category include telegram-bot-builder, flutter-app-size, sharp-edges, iterative-retrieval.

How do I install fuzzing-dictionary?

npx skills add https://github.com/trailofbits/skills --skill fuzzing-dictionary

Related skills

More from trailofbits/skills

Related skills

Alternatives in Software Engineering