CVE-2026-10861
Undergoing Analysis Undergoing Analysis - In Progress
Open Redirect Vulnerability in MISP After Login

Publication date: 2026-06-04

Last updated on: 2026-06-04

Assigner: 5a6e4751-2f3f-4070-9419-94fb35b644e8

Description
An open redirect vulnerability existed in MISP UsersController::routeafterlogin() because the value stored in the pre_login_requested_url session key was used as the post-login redirect destination without sufficiently enforcing that it was a local application path. An unauthenticated remote attacker could craft a link that causes a victim to visit a trusted MISP instance and, after successful authentication, be redirected to an attacker-controlled external URL. This could be abused to increase the credibility of phishing attacks, redirect users to counterfeit login pages, or deliver attacker-controlled content from an untrusted domain. CWE-601 describes this weakness as accepting user-controlled input that specifies an external link and using it in a redirect, with phishing as a common consequence. The patch mitigates the issue by decoding and parsing the URL, rejecting URLs with a scheme, host, user component, missing or non-local path, and protocol-relative forms such as //example.com and /\example.com.
CVSS Scores
EPSS Scores
Probability:
Percentile:
Meta Information
Published
2026-06-04
Last Modified
2026-06-04
Generated
2026-06-04
AI Q&A
2026-06-04
EPSS Evaluated
N/A
NVD
EUVD
Affected Vendors & Products
Showing 1 associated CPE
Vendor Product Version / Range
misp misp to 3.0.0 (inc)
Helpful Resources
Exploitability
CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-601 The web application accepts a user-controlled input that specifies a link to an external site, and uses that link in a redirect.
Attack-Flow Graph
AI Powered Q&A
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:

This open redirect vulnerability could be exploited by attackers to redirect authenticated users to malicious external sites, potentially facilitating phishing attacks or delivery of malicious content.

Such exploitation may lead to unauthorized disclosure or compromise of user credentials or sensitive information, which can negatively impact compliance with data protection regulations like GDPR or HIPAA that require safeguarding user data and preventing unauthorized access.

Therefore, the vulnerability poses a risk to maintaining the security controls necessary for compliance with these standards, as it undermines user trust and the integrity of authentication flows.


What immediate steps should I take to mitigate this vulnerability?

Immediate mitigation involves applying the patch that validates the pre_login_requested_url session value before redirecting.

The patch includes decoding and parsing the URL, rejecting URLs with schemes, hosts, user components, missing or non-local paths, and protocol-relative forms.

If patching is not immediately possible, consider implementing temporary input validation to ensure redirect URLs are local paths only.

Additionally, educate users about phishing risks related to open redirects and monitor for suspicious redirect behavior.


Can you explain this vulnerability to me?

This vulnerability is an open redirect issue in the MISP application's UsersController::routeafterlogin() function. It occurs because the application uses the value stored in the pre_login_requested_url session key as the destination URL after a user logs in, without properly verifying that this URL is a local path within the application.

An attacker can craft a malicious link that directs a user to a trusted MISP instance, and after the user logs in, the application redirects them to an external URL controlled by the attacker. This can be exploited to make phishing attacks more convincing, redirect users to fake login pages, or deliver malicious content from untrusted domains.

The vulnerability is addressed by validating and parsing the URL to reject any that contain schemes, hosts, user information, or non-local paths, including protocol-relative URLs like //example.com or /\example.com.


How can this vulnerability impact me? :

This vulnerability can impact you by enabling attackers to redirect authenticated users to malicious external websites after login. This can increase the success of phishing attacks by leveraging the trust users have in the legitimate MISP instance.

Users might be redirected to counterfeit login pages designed to steal credentials or to sites that deliver malicious content, potentially leading to credential compromise, malware infection, or other security breaches.


How can this vulnerability be detected on my network or system? Can you suggest some commands?

Detection of this vulnerability involves monitoring for suspicious URLs used in the pre_login_requested_url session key that lead to external domains after login.

One approach is to analyze web server logs or application logs for redirect URLs that contain external hosts or schemes instead of local application paths.

Commands to assist detection could include searching logs for redirect parameters or session values containing suspicious URL patterns.

  • Using grep or similar tools to find redirect URLs with external domains, e.g., `grep -E 'pre_login_requested_url=.*(http|//|\\)' /path/to/logs`
  • Inspecting session data or application logs for URLs that do not start with a forward slash or contain host/scheme components.

Ask Our AI Assistant
Need more information? Ask your question to get an AI reply (Powered by our expertise)
0/70
EPSS Chart