{ "dataType": "CVE_RECORD", "dataVersion": "5.2", "cveMetadata": { "cveId": "CVE-2026-86408", "assignerOrgId": "5a6e4751-2f3f-4070-9419-94fb35b644e8", "state": "PUBLISHED", "assignerShortName": "CIRCL", "dateReserved": "2026-09-07T12:11:12.888Z", "datePublished": "2026-09-07T12:11:18.233Z", "dateUpdated": "2026-09-08T14:49:54.747Z" }, "containers": { "cna": { "affected": [ { "defaultStatus": "unaffected", "product": "MISP", "programFiles": [ "app/Controller/CryptographicKeysController.php" ], "repo": "https://github.com/MISP/MISP", "vendor": "MISP", "versions": [ { "lessThanOrEqual": "2.5.45", "status": "affected", "version": "0", "versionType": "semver" } ] } ], "credits": [ { "lang": "en", "type": "finder", "value": "Scottish Government - National Cyber Team" }, { "lang": "en", "type": "remediation developer", "value": "iglocska" }, { "lang": "en", "type": "remediation developer", "value": "Claude Opus 5 (1M context)" } ], "descriptions": [ { "lang": "en", "supportingMedia": [ { "base64": false, "type": "text/html", "value": "
Affected versions of MISP do not enforce parent-event visibility when serving cryptographic keys through CryptographicKeysController::view().
The vulnerable handler queried CryptographicKey directly using the supplied key ID and selected sensitive fields such as:
type\nkey_data\nfingerprint\nbut did not fetch or authorize the associated parent event first.
\nThe upstream commit explicitly states that cryptographicKeys/view could return a protected event’s signing key to any authenticated user.
The fix adds parent_id and parent_type to the lookup and then enforces authorization through the associated event using fetchSimpleEvent($user, parent_id). If the parent is not an Event, access is limited to site administrators.