Open In App

Unvalidated Redirects and Forwards

Unvalidated Redirects and Forward Vulnerability, also sometimes referred to as URL Redirection Vulnerability, is a type of bug found in the Web Application. In this type of vulnerability, the attacker uses to manipulate the URL and sends it to the victim. As soon as the victim opens the URL, the website redirects it to a malicious website or website to which the attacker wants the user to get redirected. The attacker generally uses to exploit this type of Vulnerability with the help of manual manipulation in the URL or with the help of several tools like Burpsuite, which gives an attacker several types of ways due to which he can manipulate the URL to get Redirected. 

 



How does URL Redirection work?

First of all, we need to get a brief idea about the HTTP Response Codes. So here are the response codes: 
 

The above HTTP Status code tells us about the response that we receive from a website. So for URL redirection, generally, 3xx Codes are redirection codes that say to the user that this URL is going to get redirected to some other page. The attacker takes advantage of this and tries to inject their payloads or manipulate the URL to send the victim to their malicious website. Below is the screenshot of the Burpsuite via which an attacker can add filters and can find out specific URLs having 3xx codes. 



 

The above image is only showing those URLs which have a 3xx code. Now we have to check the specific parameters in the URL, for example (dest, redirect, url, path, continue, URL, navigation), etc. The URL would be somewhat like this https://www.xyz.com/continue=www.xyz.com/abc. So the attacker removes the entire URL after “Continue” and adds his phishing page URL, which might be as an exact copy of the original webpage. 

Step by Step Working of Attack – 

 

  1. Attacker Intercept the request of URL in Burpsuite.
  2. Send the request to Spider.
  3. Check for the parameters & when found, send the request to the repeater tab.
  4. Attacker Choose the target location, where to apply your payload.
  5. Start attack.

By following the above steps, an attacker will get the list of particular URLs where the website is successfully redirected. 

Impacts of the Attack – 
 

Remediations of Unvalidated Redirects & Forwards Vulnerability – 
 

 

Article Tags :