Individual low/medium bugs often chain together into critical impact. Always ask: can this go further?
| Chain | Result |
|---|---|
| Open Redirect + OAuth | Token theft = account takeover |
| Self-XSS + CSRF | Stored XSS affecting other users |
| XSS + no email change confirmation | Account takeover |
| CSRF + email change | Account takeover |
| SSRF + open redirect | Internal network access |
| IDOR + mass enumeration | Data breach |
| File upload (SVG) + same domain | XSS on main domain |
| Clickjacking + CSRF | State change without user's knowledge |
| Host header injection + password reset | Intercept reset token |
informational – find the chain that makes them criticalAlways frame bugs in terms of what an attacker can actually do:
Generic impact (“this could be used for phishing”) is weak. Show the chain.