A threat actor may send a malicious redirection request for a vulnerable target to a victim; the victim gets redirected to a malicious website that downloads an executable file
- Threat actor crafts an email with a malicious redirection request for a vulnerable target and sends the email to a victim
- The victim clicks on the email and sends the request to the vulnerable target
- The target processes the malicious redirection request back to the victim
- The victim's browser redirects the user to a malicious website
app.post("/weclome", (request, response) => {
if (request.redirect){
res.redirect(req.query.redirect);
} else {
res.redirect("/")
}
});
?redirect=test.com
Medium
- Open Redirect
- Redirect users
- Input validation
- Social Engineering
cea84b63-1552-47ad-a160-503f1c913390