Table of Contents

Bug Chaining & Escalation

Individual low/medium bugs often chain together into critical impact. Always ask: can this go further?

Common Chains

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

Raising Severity

Impact to Report

Always frame bugs in terms of what an attacker can actually do:

Generic impact (“this could be used for phishing”) is weak. Show the chain.

Post-Fix Testing

See Also