tag

fuzzing

5 indexed skills · max 10 per page

skills (5)

api-fuzzing-bug-bounty

sickn33/antigravity-awesome-skills · Backend

0

api-fuzzing-bug-bounty

api-fuzzing-for-bug-bounty

davila7/claude-code-templates · Backend

0

Provide comprehensive techniques for testing REST, SOAP, and GraphQL APIs during bug bounty hunting and penetration testing engagements. Covers vulnerability discovery, authentication bypass, IDOR exploitation, and API-specific attack vectors.

api-fuzzing-for-bug-bounty

sickn33/antigravity-awesome-skills · Backend

0

Provide comprehensive techniques for testing REST, SOAP, and GraphQL APIs during bug bounty hunting and penetration testing engagements. Covers vulnerability discovery, authentication bypass, IDOR exploitation, and API-specific attack vectors.

fuzzing-dictionary

trailofbits/skills · Productivity

0

Domain-specific token guidance for fuzzers targeting parsers, protocols, and file formats. \n \n Provides dictionary file format with quoted strings, hex escapes, and key-value pairs that guide fuzzer mutations toward meaningful inputs and deeper code paths \n Works cross-fuzzer with libFuzzer, AFL++, and cargo-fuzz via standard command-line flags ( -dict= , -x ) \n Includes generation methods: LLM prompts, extraction from headers and binaries, and AFL++ auto-dictionary via compile-time string c

fuzzing-obstacles

trailofbits/skills · Productivity

0

Patch code to bypass checksums, global state, and validation barriers that block fuzzer progress. \n \n Use conditional compilation ( FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION in C/C++, cfg!(fuzzing) in Rust) to skip obstacles during fuzzing builds while preserving production behavior \n Common obstacles include checksum verification, non-deterministic PRNGs, time-based seeds, and complex validation that prevents the fuzzer from exploring deeper code paths \n Apply incrementally by identifying un