fuzzing-dictionary

Generate fuzzing dictionaries with domain-specific tokens for libFuzzer, AFL++, and cargo-fuzz.

Updated Feb 13, 2026
One-click install
npx skills add https://github.com/fjor1025/InfoSec-Framework --skill fuzzing-dictionary-fjor1025
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: fuzzing-dictionary
Source: https://github.com/fjor1025/InfoSec-Framework/tree/main/ClaudeSkills/plugins/testing-handbook-skills/skills/fuzzing-dictionary
Command: npx skills add https://github.com/fjor1025/InfoSec-Framework --skill fuzzing-dictionary-fjor1025

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill helps fuzzing tools generate more effective inputs by providing them with domain-specific keywords, magic numbers, and protocol commands, leading to deeper code exploration and bug discovery.

Core Features & Use Cases

  • Enhanced Fuzzing: Improves fuzzer efficiency by focusing mutations on meaningful data.
  • Broad Compatibility: Works with popular fuzzers like libFuzzer, AFL++, and cargo-fuzz.
  • Use Case: When fuzzing a custom network protocol, use a dictionary containing known commands and packet structures to help the fuzzer quickly uncover vulnerabilities in the protocol handler.

Quick Start

Use the fuzzing-dictionary skill to create a dictionary file for fuzzing a PNG parser.

Frequently Asked Questions about fuzzing-dictionary

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create a fuzzing dictionary for a custom network protocol?

To create a fuzzing dictionary for a custom network protocol, you extract domain-specific keywords, magic numbers, and protocol commands to guide fuzzers toward meaningful mutations and deeper code exploration.

Does this fuzzing dictionary approach work with AFL++ and cargo-fuzz?

Yes, this approach works with AFL++ and cargo-fuzz, along with libFuzzer, by providing dictionaries that incorporate domain-specific tokens and magic numbers to improve fuzzer efficiency.

What is a fuzzing dictionary used for in vulnerability research?

A fuzzing dictionary is used in vulnerability research to guide fuzzing tools toward generating effective inputs, incorporating protocol commands and magic numbers to uncover bugs in format-specific code.

How do I improve fuzzer efficiency when testing a PNG parser?

You improve fuzzer efficiency when testing a PNG parser by supplying a fuzzing dictionary containing format-specific magic numbers and tokens, focusing mutations on meaningful data to discover bugs faster.

What's the best way to generate domain-specific tokens for libFuzzer?

The best way to generate domain-specific tokens for libFuzzer is by carefully selecting and incorporating protocol commands and magic numbers relevant to your target parser into a dictionary file.

When do I need a dictionary for fuzzing instead of standard mutations?

You need a dictionary for fuzzing when targeting parsers or protocols that require specific magic numbers and commands, as standard mutations often fail to generate meaningful inputs for deeper code exploration.