Catalog
affaan-m/security-bounty-hunter

affaan-m

security-bounty-hunter

Hunt for exploitable, bounty-worthy security issues in repositories. Focuses on remotely reachable vulnerabilities that qualify for real reports instead of noisy local-only findings. Use when hunting reportable, remotely reachable vulnerabilities in a repository.

NewUpdated Sep 9, 2026

Security Bounty Hunter

Use this when the goal is practical vulnerability discovery for responsible disclosure or bounty submission, not a broad best-practices review.

When to Use

  • Scanning a repository for exploitable vulnerabilities
  • Preparing a Huntr, HackerOne, or similar bounty submission
  • Triage where the question is "does this actually pay?" rather than "is this theoretically unsafe?"

How It Works

Bias toward remotely reachable, user-controlled attack paths and throw away patterns that platforms routinely reject as informative or out of scope.

In-Scope Patterns

These are the kinds of issues that consistently matter:

Pattern CWE Typical impact
SSRF through user-controlled URLs CWE-918 internal network access, cloud metadata theft
Auth bypass in middleware or API guards CWE-287 unauthorized account or data access
Remote deserialization or upload-to-RCE paths CWE-502 code execution
SQL injection in reachable endpoints CWE-89 data exfiltration, auth bypass, data destruction
Command injection in request handlers CWE-78 code execution
Path traversal in file-serving paths CWE-22 arbitrary file read or write
Auto-triggered XSS CWE-79 session theft, admin compromise

Skip These

These are usually low-signal or out of bounty scope unless the program says otherwise:

  • Local-only pickle.loads, torch.load, or equivalent with no remote path
  • eval() or exec() in CLI-only tooling
  • shell=True on fully hardcoded commands
  • Missing security headers by themselves
  • Generic rate-limiting complaints without exploit impact
  • Self-XSS requiring the victim to paste code manually
  • CI/CD injection that is not part of the target program scope
  • Demo, example, or test-only code

Workflow

  1. Check scope first: program rules, SECURITY.md, disclosure channel, and exclusions.
  2. Find real entrypoints: HTTP handlers, uploads, background jobs, webhooks, parsers, and integration endpoints.
  3. Run static tooling where it helps, but treat it as triage input only.
  4. Read the real code path end to end.
  5. Prove user control reaches a meaningful sink.
  6. Confirm exploitability and impact with the smallest safe PoC possible.
  7. Check for duplicates before drafting a report.

Example Triage Loop

semgrep --config=auto --severity=ERROR --severity=WARNING --json

Then manually filter:

  • drop tests, demos, fixtures, vendored code
  • drop local-only or non-reachable paths
  • keep only findings with a clear network or user-controlled route

Report Structure

## Description
[What the vulnerability is and why it matters]

## Vulnerable Code
[File path, line range, and a small snippet]

## Proof of Concept
[Minimal working request or script]

## Impact
[What the attacker can achieve]

## Affected Version
[Version, commit, or deployment target tested]

Quality Gate

Before submitting:

  • The code path is reachable from a real user or network boundary
  • The input is genuinely user-controlled
  • The sink is meaningful and exploitable
  • The PoC works
  • The issue is not already covered by an advisory, CVE, or open ticket
  • The target is actually in scope for the bounty program
Files1
1 files · 1.0 KB

Select a file to preview

Overall Score

78/100

Grade

B

Good

Grades are signals, not a certification. Always review a skill yourself before use.

Safety

85

Quality

75

Clarity

82

Completeness

68

Summary

A security vulnerability discovery skill that guides agents to identify exploitable, bounty-worthy issues in repositories. It emphasizes remotely reachable vulnerabilities suitable for responsible disclosure rather than theoretical security concerns, providing a structured triage workflow, clear in-scope/out-of-scope patterns, and a reporting template.

Detected Capabilities

code analysisstatic analysis triageworkflow guidancedocumentation and reporting

Trigger Keywords

Phrases that agents use to match this skill to user intent.

hunt security vulnerabilitiesbounty report preparationexploit reachability triageremotely exploitable bugsvulnerability submission draft

Use Cases

  • : Hunt for reportable vulnerabilities in open-source or bug bounty programs
  • Triage security findings to prioritize high-impact remotely reachable bugs
  • Prepare vulnerability reports for HackerOne, Huntr, or similar platforms
  • Distinguish exploitable weaknesses from noisy or out-of-scope local-only patterns
  • Verify PoC feasibility before drafting a bounty submission

Quality Notes

  • Strength: Clear in-scope/out-of-scope classification—skill explicitly defines what bounty programs reward vs. what they reject, reducing noise and false positives.
  • Strength: Concrete workflow with numbered steps and real tool examples (semgrep), making it immediately actionable.
  • Strength: Excellent triage guidance—distinguishes between local-only vs. remotely reachable, user-controlled vs. hardcoded, which are common beginner mistakes.
  • Strength: Strong reporting template with all required fields (Description, PoC, Impact, Version, Vulnerable Code).
  • Strength: Quality gate checklist before submission is pragmatic and prevents wasted effort on out-of-scope findings.
  • Limitation: No guidance on legal/ethical boundaries—does not explicitly mention respecting program rules beyond 'check scope first'. A brief note on responsible disclosure principles would strengthen this.
  • Limitation: Example semgrep command is generic (–config=auto). Skill would benefit from program-specific or language-specific tool recommendations.
  • Limitation: No guidance on false positive rates or how to evaluate tool output credibility—just 'treat it as triage input only' without examples.
  • Limitation: Missing advice on handling ambiguous scope (e.g., 'is this service in scope?'). The workflow assumes scope is clear.
  • Limitation: No mention of how to handle findings that straddle in-scope and out-of-scope (e.g., a local auth bypass that could be chained).
Model: claude-haiku-4-5-20251001Analyzed: Sep 9, 2026

Reviews

Add this skill to your library to leave a review.

No reviews yet

Be the first to share your experience.

Version History

  1. v2.0

    Contract changed: description

    ✦ AIClarifies activation condition: added instruction to use skill when hunting remotely reachable vulnerabilities.

    triggering2026-09-09

    LATEST
  2. v1.2

    Content updated

    ✦ AINo behavioral changes detected.

    2026-07-14

    View This Version
  3. v1.1

    Content updated

    ✦ AIAdds LICENSE file; SKILL.md content and behavior unchanged.

    2026-04-20

    View This Version
  4. v1.0

    2026-04-12

    View This VersionInitial version

Use affaan-m/security-bounty-hunter in your dev environment

Command Palette

Search for a command to run...