CVE-2026-95683 PUBLISHED

MISP Overmind Event View Discloses Report Content Bypassing Report-Level ACL

Assigner: CIRCL
Reserved: 22.09.2026 Published: 22.09.2026 Updated: 22.09.2026

In MISP, the Overmind event view enriches an event with its most recent attached report for preview purposes. The enrichment logic fetched the report using only the event ID as the lookup condition, without applying the report's own distribution/ACL constraints. Because MISP reports carry an independent distribution setting that can be more restrictive than the parent event's distribution, an authenticated user who had read access to the event could retrieve and view a report whose distribution explicitly excluded that user. Additionally, the query did not filter out soft-deleted reports, allowing retrieval of reports that had been administratively removed.

The result is an unauthorized disclosure of threat-intelligence report content to users who should not have access under the report's own access-control policy.

The vulnerability requires an authenticated MISP user with at least read access to the affected event.

Metrics

CVSS Vector: CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:L/VI:N/VA:N/SC:N/SI:N/SA:N
CVSS Score: 5.3

Product Status

Vendor MISP
Product MISP
Versions
  • affected from 0 to 2.5.47 (excl.)

Solutions

The report fetch in the Overmind event enrichment now applies the caller's ACL via EventReport::buildACLConditions($user), enforcing the report's own distribution policy in addition to the event-level access. A condition on EventReport.deleted = 0 is also added to exclude soft-deleted reports. The query is further hardened with recursive = -1 and an explicit contain clause to limit the data retrieved.

Credits

  • Jeroen Pinoy reporter
  • iglocska remediation developer
  • Claude Fable 5.1 remediation developer

References

Problem Types

  • CWE-862 Missing Authorization CWE
  • CWE-639 Authorization Bypass Through User-Controlled Key CWE

Impacts

  • CAPEC-126 Exploiting Incorrectly Configured Access Controls