Security Considerations To Account for When Redirecting From Microservice to Another

I am evaluating the above service design where I want to have mechanism to pass a user through multiple microservices. In this simple example, the user goes through a sign-up process and once done, the user is redirected to another micro… Continue reading Security Considerations To Account for When Redirecting From Microservice to Another

Can a user be redirected to a malicious website if only a part of the url can be controlled by user input?

I have a site located at

https://gooddomain.com/wonderful?returnPath=goodThings

which redirects me to

https://gooddomain.com/somegoodplace/goodThings

At the server side, the redirect is defined by

String path = request… Continue reading Can a user be redirected to a malicious website if only a part of the url can be controlled by user input?