Open Redirect in mosparo/mosparo
Reported on
Sep 30th 2023
Description
There is an open redirect in the endpoint /project/switch/{project}
due to the use of symfony's redirect()
function from a user controlled input.
Proof of Concept
$targetPath = $request->query->get('targetPath', false);
if ($targetPath) {
return $this->redirect($targetPath);
}
http://127.0.0.1:8080/project/switch/1?targetPath=https://google.com
Impact
Open redirection attacks are most commonly used to support phishing attacks, or redirect users to malicious websites.
@tomorrowisnew_
As far as I understand, huntr will assign the CVE automatically. We've verified the issue and can confirm it is valid.
@admin Is it possible to add a CVE for it? Or what do I have to do as a maintainer so that you can add a CVE?
I have went ahead and assigned this report a CVE as requested.