Proof of Concept Requirements for Bug Bounty Reports
Not all programs require a PoC. Some want video, others want code. Learn exactly what format each major program expects before you submit.
Do You Need a PoC?
Short answer: Yes, for most high-paying programs. Check the specific program first.
Most programs on HackerOne and Bugcrowd require a PoC for any finding above low severity. Some accept a detailed technical description, but a reproducible PoC significantly increases triage speed and bounty approval.
Why programs require PoCs: A PoC proves the vulnerability is real, exploitable, and not a false positive. It lets the triager verify independently without needing to trust your description.
PoC Formats Accepted
1. Step-by-Step Instructions (Most Common)
A numbered list of exactly what a triager needs to do to reproduce the issue:
Example:
1. Log in to account X with credentials...
2. Navigate to /admin/users
3. Intercept the request in Burp Suite
4. Change user_id=1 to user_id=2
5. Forward the request
6. Observe that you can view another user's data
When to use: Any web vulnerability. This is the fastest format for triagers to verify.
2. Video Recording
A screen recording showing the exact steps and result.
When to use: Complex multi-step flows, race conditions, or UI-specific issues. Keep it under 2 minutes and include audio explaining what is happening.
3. Code Exploit
A script or code snippet that demonstrates the vulnerability:
Example: A Python script that uses the API to trigger the vulnerability, with clear output showing the successful exploitation.
When to use: API vulnerabilities, automation, or complex logic flaws. Always include comments explaining what the code does.
4. cURL / HTTP Request
A raw HTTP request that triggers the vulnerability (useful for API bugs):