CVE-2026-55689
Undergoing Analysis Undergoing Analysis - In Progress

OpenFGA JWT Authentication Bypass via Missing Audience Validation

Vulnerability report for CVE-2026-55689, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-07-09

Last updated on: 2026-07-10

Assigner: GitHub, Inc.

Description

OpenFGA is an authorization/permission engine built for developers. Prior to 1.18.0, OpenFGA's OIDC authenticator skipped JWT audience validation when authn.method was set to oidc, authn.oidc.issuer was configured, and authn.oidc.audience was not set, allowing a token minted for an unrelated service by the same identity provider to authenticate to OpenFGA. This issue is fixed in 1.18.0.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-07-09
Last Modified
2026-07-10
Generated
2026-07-11
AI Q&A
2026-07-10
EPSS Evaluated
N/A
NVD

Affected Vendors & Products

Showing 1 associated CPE
Vendor Product Version / Range
openfga openfga to 1.18.0 (exc)

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-287 When an actor claims to have a given identity, the product does not prove or insufficiently proves that the claim is correct.

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Compliance Impact

This vulnerability allows tokens minted for unrelated services by the same identity provider to authenticate to OpenFGA due to skipped JWT audience validation. This could lead to unauthorized access to sensitive data or systems.

Such unauthorized access risks violating data protection and privacy requirements outlined in standards like GDPR and HIPAA, which mandate strict access controls and authentication mechanisms to protect personal and health information.

Therefore, this vulnerability potentially undermines compliance with these regulations by weakening authentication controls and increasing the risk of data breaches.

Executive Summary

This vulnerability exists in OpenFGA versions prior to 1.18.0, where the OIDC authenticator did not properly validate the JWT audience claim under certain configurations. Specifically, if the authentication method was set to OIDC, the issuer was configured, but the audience was not set, the system would skip audience validation. This allowed a token issued for a different service by the same identity provider to be accepted by OpenFGA, potentially granting unauthorized access.

Impact Analysis

The vulnerability can lead to unauthorized authentication to OpenFGA using tokens intended for other services. This means an attacker with a valid token for a different service under the same identity provider could gain access to OpenFGA, potentially compromising confidentiality and integrity of the authorization system.

Mitigation Strategies

To mitigate this vulnerability, upgrade OpenFGA to version 1.18.0 or later, where the issue with skipped JWT audience validation has been fixed.

Detection Guidance

This vulnerability can be detected by checking the OpenFGA configuration and version in use. Specifically, verify if the OpenFGA version is earlier than 1.18.0 and if the OIDC authenticator is configured with the authentication method set to oidc but without the audience parameter (authn.oidc.audience) set.

To detect vulnerable configurations, you can:

  • Check the OpenFGA version to confirm if it is below 1.18.0.
  • Inspect the OpenFGA configuration file or environment variables for the presence and values of authn.method, authn.oidc.issuer, and authn.oidc.audience.
  • Look for missing or empty authn.oidc.audience settings when authn.method is set to oidc.

Example commands to assist in detection might include:

  • To check OpenFGA version: `openfga version` or check the running container/image tag.
  • To inspect configuration files (assuming a typical config file path): `grep -E 'authn.method|authn.oidc.issuer|authn.oidc.audience' /path/to/openfga/config.yaml`
  • To check environment variables (if OpenFGA is run with env vars): `env | grep -E 'AUTHN_METHOD|AUTHN_OIDC_ISSUER|AUTHN_OIDC_AUDIENCE'`

If the audience parameter is missing or empty and the version is below 1.18.0, the system is vulnerable to this issue.

Chat Assistant

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

EPSS Chart