bugbountyworkflow

Solid

Bug bounty hunting workflow and report writing expertise. USE WHEN user mentions bug bounty, vulnerability report, HackerOne, Bugcrowd, PoC creation, severity assessment, CVSS scoring, responsible disclosure, or needs help writing security reports. Provides templates and workflow guidance.

AI & Automation 3 stars 1 forks Updated 5 days ago MIT

Install

View on GitHub

Quality Score: 82/100

Stars 20%
20
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# Bug Bounty Workflow Skill Complete workflow for bug bounty hunting, from reconnaissance to report submission. ## When to Activate - "bug bounty" → Full skill context - "write report" / "vulnerability report" → Report Writing section - "HackerOne" / "Bugcrowd" → Platform-Specific section - "PoC" / "proof of concept" → PoC Standards section - "severity" / "CVSS" → Severity Assessment section - "responsible disclosure" → Disclosure Workflow section - "recon" / "reconnaissance" → Reconnaissance section --- ## Reconnaissance Workflow ### 1. Scope Analysis ```bash # First: READ THE SCOPE CAREFULLY # - What domains are in scope? # - What's explicitly out of scope? # - Any rate limiting requirements? # - Specific vulnerability types excluded? ``` ### 2. Apex and Subdomain Enumeration Run the apexDiscovery skill to pull out other apexes for the main domain we find for the client. Then do subdomain discovery for ALL of them: ```bash # Passive enumeration subfinder -d target.com -o subdomains.txt amass enum -passive -d target.com >> subdomains.txt # Certificate transparency curl "https://crt.sh/?q=%.target.com&output=json" | jq -r '.[].name_value' | sort -u # Combine and dedupe cat subdomains.txt | sort -u > unique-subdomains.txt ``` ### 3. Live Host Detection ```bash # Check which subdomains are alive cat unique-subdomains.txt | httpx -o alive.txt -status-code -title -tech-detect # With ports cat unique-subdomains.txt | httpx -ports 80,443,8080,8443 -o alive-with-port...

Details

Author
SecurityTalent
Repository
SecurityTalent/bugskill-ai
Created
1 weeks ago
Last Updated
5 days ago
Language
HTML
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

bb-local-toolkit

Local-tooling companion to the bug-bounty orchestrator — carries the SAME complete bug-bounty workflow, but reach for THIS variant when you also need to resolve where tools, wordlists, and clones are installed on the local machine (jhaddix, SecLists, trufflehog, ffuf, dalfox, ghauri); for pure orchestration/routing use the bug-bounty skill. Workflow it covers — recon (subdomain enumeration, asset discovery, fingerprinting, HackerOne scope, source code audit), pre-hunt learning (disclosed reports, tech stack research, mind maps, threat modeling), vulnerability hunting (IDOR, SSRF, XSS, auth bypass, CSRF, race conditions, SQLi, XXE, file upload, business logic, GraphQL, HTTP smuggling, cache poisoning, OAuth, timing side-channels, OIDC, SSTI, subdomain takeover, cloud misconfig, ATO chains, agentic AI), LLM/AI security testing (chatbot IDOR, prompt injection, indirect injection, ASCII smuggling, exfil channels, RCE via code tools, system prompt extraction, ASI01-ASI10), A-to-B bug chaining (IDOR→auth bypass, SS

3,709 Updated today
elementalsouls
AI & Automation Listed

bug-bounty

Complete bug bounty workflow — recon (subdomain enumeration, asset discovery, fingerprinting, HackerOne scope, source code audit), pre-hunt learning (disclosed reports, tech stack research, mind maps, threat modeling), vulnerability hunting (IDOR, SSRF, XSS, auth bypass, CSRF, race conditions, SQLi, XXE, file upload, business logic, GraphQL, HTTP smuggling, cache poisoning, OAuth, timing side-channels, OIDC, SSTI, subdomain takeover, cloud misconfig, ATO chains, agentic AI), LLM/AI security testing (chatbot IDOR, prompt injection, indirect injection, ASCII smuggling, exfil channels, RCE via code tools, system prompt extraction, ASI01-ASI10), A-to-B bug chaining (IDOR→auth bypass, SSRF→cloud metadata, XSS→ATO, open redirect→OAuth theft, S3→bundle→secret→OAuth), bypass tables (SSRF IP bypass, open redirect bypass, file upload bypass), language-specific grep (JS prototype pollution, Python pickle, PHP type juggling, Go template.HTML, Ruby YAML.load, Rust unwrap), and reporting (7-Question Gate, 4 validation gate

2 Updated 3 days ago
Mikacr1138
AI & Automation Featured

bug-bounty

Complete bug bounty workflow — recon (subdomain enumeration, asset discovery, fingerprinting, HackerOne scope, source code audit), pre-hunt learning (disclosed reports, tech stack research, mind maps, threat modeling), vulnerability hunting (IDOR, SSRF, XSS, auth bypass, CSRF, race conditions, SQLi, XXE, file upload, business logic, GraphQL, HTTP smuggling, cache poisoning, OAuth, timing side-channels, OIDC, SSTI, subdomain takeover, cloud misconfig, ATO chains, agentic AI), LLM/AI security testing (chatbot IDOR, prompt injection, indirect injection, ASCII smuggling, exfil channels, RCE via code tools, system prompt extraction, ASI01-ASI10), A-to-B bug chaining (IDOR→auth bypass, SSRF→cloud metadata, XSS→ATO, open redirect→OAuth theft, S3→bundle→secret→OAuth), bypass tables (SSRF IP bypass, open redirect bypass, file upload bypass), language-specific grep (JS prototype pollution, Python pickle, PHP type juggling, Go template.HTML, Ruby YAML.load, Rust unwrap), and reporting (7-Question Gate, 4 validation gate

4,262 Updated today
shuvonsec