Tools / System Design
What is meant by Insecure redirects?
This type of injection defects occur where untrusted data redirects used to faulty/malicious sites.
Redirects allows web application to direct users to different pages within the same application or to an external site. An insecure redirect sends the user to an untrusted or malicious site.To prevent insecure redirects:
- Treat all data received from a client as untrusted.
- Define redirect URLs within the application using trusted, whitelisted data.
More Related questions...