fuzzing▌
7 indexed skills · max 10 per page
api-fuzzing-for-bug-bounty
davila7/claude-code-templates · Backend
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-bug-bounty
sickn33/antigravity-awesome-skills · Backend
api-fuzzing-bug-bounty
performing-api-fuzzing-with-restler
mukul975/Anthropic-Cybersecurity-Skills · performing-api-fuzzing-with-restler
Uses Microsoft RESTler to perform stateful REST API fuzzing by automatically generating and executing test sequences that exercise API endpoints, discover producer-consumer dependencies between requests, and find security and reliability bugs. The tester compiles an OpenAPI specification into a RESTler fuzzing grammar, configures authentication, runs test/fuzz-lean/fuzz modes, and analyzes results for 500 errors, authentication bypasses, resource leaks, and payload injection vulnerabilities. Activates for requests involving API fuzzing, RESTler testing, stateful API testing, or automated API security scanning.
performing-fuzzing-with-aflplusplus
mukul975/Anthropic-Cybersecurity-Skills · performing-fuzzing-with-aflplusplus
Perform coverage-guided fuzzing of compiled binaries using AFL++ (American Fuzzy Lop Plus Plus) to discover memory corruption, crashes, and security vulnerabilities. The tester instruments target binaries with afl-cc/afl-clang-fast, manages input corpora with afl-cmin and afl-tmin, runs parallel fuzzing campaigns with afl-fuzz, and triages crashes using CASR or GDB scripts. Activates for requests involving binary fuzzing, crash discovery, coverage-guided testing, or AFL++ fuzzing campaigns.
api-fuzzing-for-bug-bounty
sickn33/antigravity-awesome-skills · Backend
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
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
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