Description
MISP's RequestHandlerComponent automatically decodes XML request bodies on all write requests. The underlying Xml::build() library contains a logic error in its readFile guard condition (readFile && http || https), where PHP operator precedence causes the https branch to bypass the readFile check entirely. As a result, a request body containing a bare HTTPS URL is treated as a locator and fetched by the server. Because the cspReport endpoint accepts XML content type and is unauthenticated by design, an unauthenticated remote attacker can send a POST request with a crafted XML body to cause the MISP server to issue an outbound HTTPS request to an arbitrary target reachable from the server.

The attacker does not receive the response body, but can use the vulnerability to probe internal services, trigger actions on internal HTTPS endpoints, or perform timing-based reconnaissance of the server's network environment. 

The vulnerability affects any MISP deployment where the cspReport endpoint is reachable and the server has network access to internal or external HTTPS services.
Published: 2026-09-22
Score: 6.9 Medium
EPSS: n/a
KEV: No
Impact: Unauthenticated Blind SSRF
Action: Patch Now
AI Analysis

Impact

The vulnerability originates from MISP's automatic XML decoding on all write requests; due to a logic error in the underlying Xml::build() library, a body that contains a bare HTTPS URL is interpreted as a locator and fetched by the server. The cspReport endpoint accepts XML content type and is intentionally unauthenticated, so an attacker can send a crafted XML payload that forces the server to issue an outbound HTTPS request. The attacker does not receive the response body, but can use timing or lack of response to probe internal services, trigger actions on internal HTTPS endpoints, or conduct network reconnaissance.

Affected Systems

MISP deployments that expose the cspReport endpoint and have network access to internal or external HTTPS services. The problem exists in any MISP instance that has not applied the patch introducing XML input type validation in AppController::beforeFilter(). No specific product version is listed, so any current deployment is potentially vulnerable unless updated.

Risk and Exploitability

The CVSS score of 6.9 indicates moderate severity. The EPSS score is not available, and the vulnerability is not listed in CISA KEV. Exploitation requires only an unauthenticated HTTP POST with a crafted XML body, so attackers can easily trigger the blind SSRF. The lack of authentication on the cspReport endpoint makes the attack vector widely exploitable, and the server may reach internal networks behind firewalls, increasing the potential impact.

Generated by OpenCVE AI on September 22, 2026 at 15:22 UTC.

Remediation

Vendor Solution

The fix introduces a custom XML input type handler in AppController::beforeFilter() that validates the request body contains an XML document marker (the < character) before passing it to the XML decoder. If the body does not contain <, it returns an empty array, preventing the Xml::build() locator/fetch code path from being reached regardless of the vendored library's internal guard logic. This ensures only actual XML documents are processed, eliminating the SSRF vector.


OpenCVE Recommended Actions

  • Update MISP to the latest version that includes the patch adding XML input type validation in AppController::beforeFilter() or apply the specific change manually.
  • If the cspReport endpoint is not required for operation, disable or restrict it to prevent unauthenticated access; consider blocking access via firewall or network ACL.
  • As an interim measure, restrict outbound HTTPS traffic from the MISP process using firewall rules or container networking controls to limit access to trusted domains until the patch is applied.

Generated by OpenCVE AI on September 22, 2026 at 15:22 UTC.

Tracking

Sign in to view the affected projects.

Advisories

No advisories yet.

History

Tue, 22 Sep 2026 15:45:00 +0000

Type Values Removed Values Added
First Time appeared Misp
Misp misp
Vendors & Products Misp
Misp misp

Tue, 22 Sep 2026 14:00:00 +0000

Type Values Removed Values Added
Description MISP's RequestHandlerComponent automatically decodes XML request bodies on all write requests. The underlying Xml::build() library contains a logic error in its readFile guard condition (readFile && http || https), where PHP operator precedence causes the https branch to bypass the readFile check entirely. As a result, a request body containing a bare HTTPS URL is treated as a locator and fetched by the server. Because the cspReport endpoint accepts XML content type and is unauthenticated by design, an unauthenticated remote attacker can send a POST request with a crafted XML body to cause the MISP server to issue an outbound HTTPS request to an arbitrary target reachable from the server. The attacker does not receive the response body, but can use the vulnerability to probe internal services, trigger actions on internal HTTPS endpoints, or perform timing-based reconnaissance of the server's network environment.  The vulnerability affects any MISP deployment where the cspReport endpoint is reachable and the server has network access to internal or external HTTPS services.
Title MISP Unauthenticated Blind SSRF via XML Body Processing
Weaknesses CWE-20
CWE-918
References
Metrics cvssV4_0

{'score': 6.9, 'vector': 'CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:L/VI:N/VA:N/SC:N/SI:N/SA:N'}


cve-icon MITRE

Status: PUBLISHED

Assigner: CIRCL

Published:

Updated: 2026-09-22T15:37:46.734Z

Reserved: 2026-09-22T13:50:46.243Z

Link: CVE-2026-95679

cve-icon Vulnrichment

No data.

cve-icon NVD

Status : Deferred

Published: 2026-09-22T14:17:22.387

Modified: 2026-09-22T16:18:22.457

Link: CVE-2026-95679

cve-icon Redhat

No data.

cve-icon OpenCVE Enrichment

Updated: 2026-09-22T15:30:09Z

Weaknesses
  • CWE-20

    Improper Input Validation

  • CWE-918

    Server-Side Request Forgery (SSRF)