The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2026-40293

CVE-2026-40293: OpenFGA Information Disclosure Vulnerability

CVE-2026-40293 is an information disclosure flaw in OpenFGA that exposes preshared API keys through the playground endpoint. This article covers the technical details, affected versions, impact, and mitigation strategies.

Published: April 23, 2026

CVE-2026-40293 Overview

CVE-2026-40293 is an information exposure vulnerability in OpenFGA, an authorization and permission engine built for developers. When OpenFGA is configured to use preshared-key authentication with the built-in playground enabled, the local server inadvertently includes the preshared API key in the HTML response of the /playground endpoint. This endpoint is enabled by default, does not require authentication, and is accessible without any authorization checks.

Critical Impact

Exposed preshared API keys can allow unauthorized access to the OpenFGA authorization engine, potentially enabling attackers to manipulate authorization policies, query sensitive permission data, or compromise the integrity of access control decisions across applications relying on OpenFGA.

Affected Products

  • OpenFGA versions 0.1.4 through 1.13.1
  • Deployments using --authn-method preshared authentication
  • Instances with playground endpoint accessible beyond localhost or trusted networks

Discovery Timeline

  • 2026-04-17 - CVE CVE-2026-40293 published to NVD
  • 2026-04-20 - Last updated in NVD database

Technical Details for CVE-2026-40293

Vulnerability Analysis

This vulnerability falls under CWE-200 (Exposure of Sensitive Information to an Unauthorized Actor). The core issue stems from the /playground endpoint embedding the preshared API key directly into its HTML response. The playground feature is designed as a development and debugging tool, intended only for local use. However, when exposed beyond localhost or trusted network boundaries, attackers can retrieve the API key without authentication.

The vulnerability requires a specific configuration combination: preshared-key authentication must be enabled (--authn-method preshared), the playground must be active (which is the default state), and the playground endpoint must be network-accessible to untrusted parties. Organizations that have inadvertently exposed their OpenFGA instances to the internet while using preshared-key authentication are at risk.

Root Cause

The root cause is the playground feature's design assumption that it would only be accessed in trusted development environments. The implementation did not account for scenarios where users might expose the playground endpoint to untrusted networks while using preshared-key authentication. The preshared API key is embedded in the client-side HTML/JavaScript to facilitate local testing, but this creates a sensitive data exposure when the endpoint is accessible externally.

Attack Vector

An attacker with network access to the /playground endpoint can perform a simple HTTP GET request to retrieve the HTML response containing the embedded preshared API key. Once obtained, the attacker can use this key to authenticate to the OpenFGA API and perform any authorized operations, including reading authorization models, querying relationships, and potentially modifying access control policies.

The attack requires no prior authentication, as the playground endpoint is intentionally unauthenticated to facilitate local development workflows. The attacker simply needs to access the /playground path and extract the API key from the response.

Detection Methods for CVE-2026-40293

Indicators of Compromise

  • Unexpected external access attempts to the /playground endpoint from non-localhost IP addresses
  • API requests authenticated with the preshared key originating from unknown or suspicious IP addresses
  • Anomalous authorization model queries or relationship checks from unfamiliar sources
  • Evidence of API key extraction in web server access logs showing GET requests to /playground

Detection Strategies

  • Monitor web server and application logs for requests to the /playground endpoint from external IP addresses
  • Implement network-level detection for traffic patterns indicating reconnaissance of OpenFGA endpoints
  • Audit API authentication logs to identify preshared key usage from unexpected source addresses
  • Deploy web application firewalls (WAF) with rules to alert on playground endpoint access from external networks

Monitoring Recommendations

  • Configure alerting for any access to /playground from IP addresses outside trusted network ranges
  • Establish baseline metrics for legitimate API key usage patterns to detect anomalous authentication activity
  • Implement periodic security audits of OpenFGA deployment configurations to ensure playground is disabled in production
  • Monitor for unauthorized changes to authorization models or relationship tuples that could indicate compromised API access

How to Mitigate CVE-2026-40293

Immediate Actions Required

  • Upgrade OpenFGA to version v1.14.0 or later, which addresses this vulnerability
  • If immediate upgrade is not possible, disable the playground by running ./openfga run --playground-enabled=false
  • Rotate any preshared API keys that may have been exposed through the vulnerability
  • Audit access logs to determine if the playground endpoint was accessed by unauthorized parties

Patch Information

OpenFGA version v1.14.0 resolves this vulnerability. Users should upgrade to this version or later to ensure the preshared API key is no longer exposed through the playground endpoint. The fix can be obtained from the GitHub Release v1.14.0. Additional details are available in the GitHub Security Advisory GHSA-68m9-983m-f3v5.

Workarounds

  • Disable the playground endpoint entirely using the --playground-enabled=false flag when starting OpenFGA
  • Restrict network access to the OpenFGA instance using firewall rules to limit exposure to trusted networks only
  • Consider switching to alternative authentication methods such as OIDC if preshared-key authentication is not strictly required
  • Implement reverse proxy configurations to block external access to the /playground path while allowing legitimate API traffic
bash
# Configuration example
# Disable the playground endpoint to prevent API key exposure
./openfga run --playground-enabled=false

# Alternative: Use firewall rules to restrict playground access
# Example using iptables to allow only localhost
iptables -A INPUT -p tcp --dport 8080 -s 127.0.0.1 -j ACCEPT
iptables -A INPUT -p tcp --dport 8080 -j DROP

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechOpenfga

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability0.07%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-200
  • Technical References
  • GitHub Release v1.14.0

  • GitHub Security Advisory GHSA-68m9-983m-f3v5
  • Related CVEs
  • CVE-2026-41131: OpenFGA Auth Bypass Vulnerability

  • CVE-2026-34972: OpenFGA Auth Bypass Vulnerability

  • CVE-2026-33729: OpenFGA Auth Bypass Vulnerability

  • CVE-2026-24851: OpenFGA Auth Bypass Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English