CVE-2026-9137
Analyzed Analyzed - Analysis Complete
Content Security Policy Report Endpoint Log Flooding Vulnerability

Publication date: 2026-05-20

Last updated on: 2026-06-02

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

Description
The CSP report endpoint in MISP intended to limit logged CSP reports to 1 KB but incorrectly allowed reports up to 1 MB before truncation. On deployments where the endpoint is reachable by untrusted clients, this could allow attackers to generate excessive log volume and contribute to resource exhaustion or log flooding.
CVSS Scores
EPSS Scores
Probability:
Percentile:
Meta Information
Published
2026-05-20
Last Modified
2026-06-02
Generated
2026-06-10
AI Q&A
2026-05-21
EPSS Evaluated
2026-06-08
NVD
EUVD
Affected Vendors & Products
Showing 1 associated CPE
Vendor Product Version / Range
misp misp From 2.5.0 (inc) to 2.5.38 (exc)
Helpful Resources
Exploitability
CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-400 The product does not properly control the allocation and maintenance of a limited resource.
Attack-Flow Graph
AI Quick Actions
Instant insights powered by AI
Compliance Impact

The vulnerability allows attackers to generate excessive log volume through oversized CSP reports, which could lead to resource exhaustion or log flooding on affected deployments.

While the provided information does not explicitly mention compliance with standards such as GDPR or HIPAA, excessive logging and resource exhaustion could potentially impact the integrity and availability of log data, which are important aspects of compliance with such regulations.

However, there is no direct information in the provided context or resources linking this vulnerability to specific compliance violations or regulatory impacts.

Executive Summary

This vulnerability involves the Content Security Policy (CSP) report endpoint in the MISP software. The endpoint was intended to limit the size of logged CSP reports to 1 KB, but due to incorrect validation, it allowed reports up to 1 MB before truncation.

Because of this mistake, attackers could send very large CSP reports, which could overwhelm the logging system.

Impact Analysis

If the vulnerable endpoint is accessible by untrusted clients, attackers could exploit this flaw to generate excessive log volume.

This could lead to resource exhaustion or log flooding, potentially degrading system performance or causing denial of service conditions.

Detection Guidance

This vulnerability involves the CSP report endpoint accepting reports up to 1 MB instead of the intended 1 KB, which can lead to excessive log volume or resource exhaustion.

To detect this vulnerability on your system, you can monitor the size of incoming CSP reports to the endpoint. Look for unusually large CSP report payloads, especially those exceeding 1 KB.

Commands to help detect this might include:

  • Using network monitoring tools like tcpdump or Wireshark to capture HTTP POST requests to the CSP report endpoint and filter by payload size.
  • Example tcpdump command to capture large CSP reports (assuming endpoint at /csp-report):
  • tcpdump -i any -A 'tcp port 80 or tcp port 443' | grep -B 5 -A 20 '/csp-report' | awk 'length($0) > 1024'
  • Alternatively, check your application logs for CSP reports larger than 1 KB, which indicates the vulnerability is present.
Mitigation Strategies

The immediate mitigation is to ensure that the CSP report endpoint properly limits the size of incoming reports to 1 KB as intended.

This can be done by applying the fix that corrects the size validation in the ServersController.php file, changing the limit check from 1 MB to 1 KB and truncating reports accordingly before logging.

Additionally, restrict access to the CSP report endpoint to trusted clients only, to prevent untrusted clients from flooding logs with large reports.

Monitoring and alerting on unusually large CSP reports or excessive logging can also help detect and mitigate attempts to exploit this vulnerability.

Chat Assistant
Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-9137. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70
EPSS Chart