Description
Affected versions of MISP allow authenticated users to retrieve object-reference records by UUID through EventGraphTool::get_reference_data() without first checking whether the requester is authorized to view the object the reference belongs to.


The vulnerable code queried ObjectReference.uuid directly and returned the matching row whenever it existed. Because no parent-object ACL was applied, a user who knew or obtained a reference UUID could retrieve information associated with an object outside their normal access scope. The commit explicitly states that any object reference could be returned by UUID without authorizing its parent object.


The fix retrieves the referenced object's object_id and calls fetchObjectSimple() with the current user. If the user cannot access that parent object, MISP now returns NotFoundException instead of exposing the reference.

Version affected: ≤2.5.45
Published: 2026-09-07
Score: 5.3 Medium
EPSS: n/a
KEV: No
Impact: n/a
Action: n/a
AI Analysis

Impact

Authenticated users can query object reference data by UUID through EventGraphTool::get_reference_data() without verifying that the user is authorized to view the parent object. This flaw allows an attacker to read references that belong to objects outside the user’s access scope, exposing potentially sensitive information about events, incidents, or other data. The vulnerability is a classic example of missing authorization (CWE-862) and inadvertent correlation through an opaque identifier (CWE-639).

Affected Systems

The flaw exists in MISP versions up to and including 2.5.45. Users employing older releases should consider them at risk.

Risk and Exploitability

The CVSS score of 5.3 indicates a moderate severity. The EPSS score is not available and the vulnerability is not listed in the CISA KEV catalog, suggesting that exploitation is not yet widely known. However, because the attacker must be authenticated and knows or can discover a valid reference UUID, the threat is limited to users with legitimate credentials who exploit the lack of ACL checks. Once a UUID is known, the attacker can retrieve the reference data for any object the UUID points to, regardless of the object's parent access restrictions.

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

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Apply the latest MISP release (2.5.46 or newer) or the patch commit c0cb5c9f8 to enforce parent-object authorization on reference lookups.
  • After updating, audit the system for any exposed reference UUIDs; rotate or invalidate any that may have been leaked to unauthorized users.
  • Verify that all object-level ACLs and access‑control checks are active for every API endpoint, ensuring that no other tool or endpoint can retrieve object data without proper authorization.

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

Tracking

Sign in to view the affected projects.

Advisories

No advisories yet.

History

Mon, 07 Sep 2026 15:45:00 +0000

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

Mon, 07 Sep 2026 13:15:00 +0000

Type Values Removed Values Added
Description Affected versions of MISP allow authenticated users to retrieve object-reference records by UUID through EventGraphTool::get_reference_data() without first checking whether the requester is authorized to view the object the reference belongs to. The vulnerable code queried ObjectReference.uuid directly and returned the matching row whenever it existed. Because no parent-object ACL was applied, a user who knew or obtained a reference UUID could retrieve information associated with an object outside their normal access scope. The commit explicitly states that any object reference could be returned by UUID without authorizing its parent object. The fix retrieves the referenced object's object_id and calls fetchObjectSimple() with the current user. If the user cannot access that parent object, MISP now returns NotFoundException instead of exposing the reference. Version affected: ≤2.5.45
Title MISP Event Graph Object Reference Lookup Exposes References from Unauthorized Objects
Weaknesses CWE-639
CWE-862
References
Metrics cvssV4_0

{'score': 5.3, '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'}


cve-icon MITRE

Status: PUBLISHED

Assigner: CIRCL

Published:

Updated: 2026-09-07T12:59:43.472Z

Reserved: 2026-09-07T12:59:41.676Z

Link: CVE-2026-86451

cve-icon Vulnrichment

No data.

cve-icon NVD

Status : Received

Published: 2026-09-07T13:20:43.427

Modified: 2026-09-07T13:20:43.427

Link: CVE-2026-86451

cve-icon Redhat

No data.

cve-icon OpenCVE Enrichment

Updated: 2026-09-07T15:30:06Z

Weaknesses
  • CWE-639

    Authorization Bypass Through User-Controlled Key

  • CWE-862

    Missing Authorization