1. OWASP Foundation. (n.d.). Unvalidated Redirects and Forwards Cheat Sheet. OWASP Cheat Sheet Series. Retrieved from https://cheatsheetseries.owasp.org/cheatsheets/UnvalidatedRedirectsandForwardsCheatSheet.html. The document states
"Unvalidated redirects and forwards are possible when a web application accepts untrusted input that could cause the web application to redirect the request to an untrusted URL." This identifies the web application as the source.
2. MITRE Corporation. (2023). CWE-601: URL Redirection to Untrusted Site ('Open Redirect'). Common Weakness Enumeration. Retrieved from https://cwe.mitre.org/data/definitions/601.html. The description explicitly states
"The web application accepts a user-controlled input that specifies a link to an external site
and uses that link in a Redirect." This pinpoints the vulnerability's origin to the application's handling of input.
3. Boneh
D.
& Mazières
D. (2018). CS 155: Computer and Network Security
Lecture 10: Web Security Model. Stanford University. Slide 32 discusses "Open redirect" as a vulnerability where a site example.com/redirect?url=evil.com redirects to a malicious site
demonstrating it as an application-level flaw.