Cyber Resilience

CVE-2026-9803

Memory Safety in Redhat Build Of Keycloak

Published
28 May 2026
Modified
26 June 2026
Patch / advisory
CVSS Score v3.1 5.3
Click a component to see what it means
Raw vectorCVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L
EPSS Score 0.0042 34th percentile
Risk Priority 35 floored blend · peak EPSS

Summary

CVE-2026-9803 is a medium-severity Out-of-bounds Read (CWE-125) vulnerability in Redhat Build Of Keycloak. Its CVSS base score is 5.3 (Medium).

Operationally, exploitation aligns with the MITRE ATT&CK technique Exploit Public-Facing Application (T1190); ranked at the 34th percentile by exploit likelihood (below the median); it is not currently listed in the CISA KEV catalog.

The strongest mitigations our analysis identified map to SI-10 (Information Input Validation) and SI-11 (Error Handling) — see the control section below for these in your framework.

EU & UK References

Vulnerability Data

A flaw was found in Keycloak's ClientRegistrationAuth component. A remote unauthenticated attacker can exploit this vulnerability by sending a specially crafted POST request with a malformed 'Authorization: Bearer' header to any client registration endpoint. This can lead to an ArrayIndexOutOfBoundsException,…

more

causing the server to return an HTTP 500 error and resulting in a Denial of Service (DoS) for the affected service.

CWE(s)

Related Threats

MITRE ATT&CK Enterprise TechniquesAI

T1190 Exploit Public-Facing Application Initial Access
Adversaries may attempt to exploit a weakness in an Internet-facing host or system to initially access a network.
T1499.004 Application or System Exploitation Impact
Adversaries may exploit software vulnerabilities that can cause an application or system to crash and deny availability to users.
Why these techniques?

Malformed input to public client registration endpoint triggers application crash (CWE-125) enabling remote unauthenticated DoS via exploitation.

Confidence: HIGH · MITRE ATT&CK Enterprise v19.0

Likely ATT&CK TechniquesAI

Techniques this vulnerability likely enables, inferred from its description, weakness type, and attributed-actor tradecraft. Confidence is per-technique.

T1499 Endpoint Denial of Service Impactconfidence: HIGH
Malformed Authorization header triggers unhandled ArrayIndexOutOfBoundsException leading to HTTP 500 and service denial.
T1499.004 Application or System Exploitation Impactconfidence: HIGH
The exception is triggered by exploiting the application logic, resulting in application-layer denial of service.
inferred from description + CWE · MITRE ATT&CK Enterprise v19.0

CVEs Like This One

CVE-2026-55654Same vendor: Redhat
CVE-2023-6121Same vendor: Redhat
CVE-2026-11786Same vendor: Redhat
CVE-2026-12969Same vendor: Redhat
CVE-2026-2443Same vendor: Redhat
CVE-2026-58011Same vendor: Redhat
CVE-2023-6610Same vendor: Redhat
CVE-2026-4424Same vendor: Redhat
CVE-2024-6505Same vendor: Redhat
CVE-2025-2784Same vendor: Redhat

Affected Assets

redhat
build of keycloak
all versions

Mitigating Controls

Control response

Prevent
Stop it (NIST 800-53)
  • SI-10 Information Input Validation
  • SI-11 Error Handling
  • SC-7 Boundary Protection
Detect
Catch it (NIST detect / respond)

Harden
Shrink the surface (DISA STIG)

Validate
Prove the fix (OWASP ASVS)

Mitigating Controls (NIST 800-53 r5) AI

prevent

Directly validates Authorization header contents before ClientRegistrationAuth processing, blocking the malformed Bearer token that triggers the ArrayIndexOutOfBoundsException.

prevent

Ensures the endpoint gracefully handles parsing exceptions from malformed input instead of returning HTTP 500 and causing DoS.

prevent

Boundary protection devices can filter or rate-limit malformed POST requests to client registration endpoints before they reach Keycloak.

Mitigating Controls (NIST CSF 2.0) AI

Derived directly from the weakness types (CWEs) cited in the NVD entry via our AI-authored CWE→CSF cross-walk (authority under review) — links open the control.

PR.PS-06 mostly match
prevents

Secure-development practices such as bounds checking and memory-safe languages directly prevent out-of-bounds reads.

ID.RA-01 partial match
prevents

Vulnerability scanning and recording can discover instances of out-of-bounds reads after code is deployed.

PR.PS-02 partial match
prevents

Routine patching replaces vulnerable code containing out-of-bounds read flaws.

Mitigating Controls (ISO/IEC 27001:2022 Annex A) AI

Derived directly from the weakness types (CWEs) cited in the NVD entry via our AI-authored CWE→ISO cross-walk (authority under review) — links open the control.

detects

Security testing in development and acceptance includes fuzzing and static analysis that detect out-of-bounds read defects before release.

A.8.15 Logging partial match
detects

Logging can record evidence of an out-of-bounds read but does not prevent the weakness itself.

prevents

Secure development life cycle mandates input validation and bounds checking that directly prevent out-of-bounds reads.

prevents

Application security requirements include explicit bounds and memory-safety specifications that mitigate buffer over-reads.

prevents

Secure system architecture and engineering principles require memory-safe design patterns and runtime protections against out-of-bounds access.

prevents

Secure coding standards explicitly forbid unsafe pointer arithmetic and mandate bounds-checked reads, eliminating CWE-125.

References