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-0976

CVE-2026-0976: Keycloak Path Traversal Vulnerability

CVE-2026-0976 is a path traversal flaw in Keycloak that exploits RFC-compliant matrix parameters to bypass reverse proxy filtering. Attackers can expose sensitive endpoints. This article covers technical details, impact, and mitigation.

Published: January 23, 2026

CVE-2026-0976 Overview

A flaw was found in Keycloak involving improper input validation of RFC-compliant matrix parameters in URL path segments. While Keycloak accepts these matrix parameters, common reverse proxy configurations may ignore or mishandle them, creating a security gap. A remote attacker can craft requests to mask path segments, potentially bypassing proxy-level path filtering. This could expose administrative or sensitive endpoints that operators believe are not externally reachable.

Critical Impact

Attackers may bypass reverse proxy access controls to reach sensitive or administrative Keycloak endpoints that were intended to be restricted, potentially leading to unauthorized access to identity management functions.

Affected Products

  • Keycloak (specific versions not disclosed in advisory)

Discovery Timeline

  • 2026-01-15 - CVE-2026-0976 published to NVD
  • 2026-01-16 - Last updated in NVD database

Technical Details for CVE-2026-0976

Vulnerability Analysis

This vulnerability stems from a discrepancy in how Keycloak and reverse proxies handle RFC-compliant matrix parameters in URL paths. Matrix parameters are a lesser-known URL feature defined in RFC 3986 that allows key-value pairs to be embedded within path segments using semicolons (e.g., /path;param=value/resource).

Keycloak properly parses and processes these matrix parameters according to RFC specifications. However, many reverse proxies (such as nginx, Apache, or cloud load balancers) either strip, ignore, or misinterpret these parameters when performing path-based access control decisions. This creates a bypass vector where an attacker can craft URLs that appear innocuous to the proxy but resolve to restricted endpoints within Keycloak.

The vulnerability is classified under CWE-20 (Improper Input Validation), as the core issue lies in the inconsistent handling of input between different components in the request chain.

Root Cause

The root cause is the inconsistent interpretation of matrix parameters between Keycloak and upstream reverse proxies. When organizations deploy Keycloak behind a reverse proxy and configure path-based access restrictions (e.g., blocking /admin/*), attackers can potentially embed matrix parameters to obfuscate the actual path being accessed. For example, a request to /admin;ignored=value/console might bypass a proxy rule blocking /admin/ while still being interpreted by Keycloak as a request to the admin console.

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker can remotely craft malicious HTTP requests containing matrix parameters designed to bypass proxy-level path filtering. The attack complexity is considered high because successful exploitation depends on specific proxy configurations and the attacker's knowledge of the target environment's architecture.

Example attack scenario:

  1. An organization deploys Keycloak behind nginx with a rule blocking direct access to /auth/admin/*
  2. An attacker crafts a request such as /auth;matrix=bypass/admin/console
  3. The nginx proxy evaluates the path as /auth;matrix=bypass/admin/console which doesn't match the blocking rule
  4. Keycloak receives the request and processes it as access to the admin console
  5. The attacker gains access to an endpoint that should have been restricted

For detailed technical analysis, refer to the Red Hat CVE-2026-0976 Advisory and Red Hat Bug Report #2429869.

Detection Methods for CVE-2026-0976

Indicators of Compromise

  • HTTP requests containing semicolons (;) in URL path segments before sensitive endpoints
  • Unusual URL patterns in access logs showing matrix parameter syntax (e.g., /path;param=value/)
  • Access to administrative endpoints from unexpected source IPs or without expected authentication flows
  • Log entries showing successful access to restricted paths that should have been blocked by proxy rules

Detection Strategies

  • Configure web application firewalls (WAF) to flag or block requests containing semicolons in URL path segments
  • Implement logging and alerting for requests with matrix parameter patterns targeting sensitive endpoints
  • Audit reverse proxy logs for discrepancies between blocked and allowed requests to Keycloak admin paths
  • Deploy SentinelOne Singularity to detect anomalous access patterns and potential bypass attempts in real-time

Monitoring Recommendations

  • Enable verbose access logging on both the reverse proxy and Keycloak to capture full request URIs
  • Set up alerts for access to administrative endpoints (/admin/*, /auth/admin/*) from external networks
  • Monitor for authentication events on admin interfaces that don't correlate with expected administrator activity
  • Regularly review proxy and Keycloak logs for unusual URL encoding or parameter patterns

How to Mitigate CVE-2026-0976

Immediate Actions Required

  • Review and update reverse proxy configurations to normalize URLs before applying path-based access rules
  • Configure the reverse proxy to strip or reject matrix parameters in URL paths before forwarding requests
  • Implement defense-in-depth by adding authentication requirements directly within Keycloak for administrative endpoints
  • Consider network-level restrictions to limit admin interface access to specific trusted IP ranges

Patch Information

Red Hat has acknowledged this vulnerability and is tracking it. Organizations should monitor the Red Hat CVE-2026-0976 Advisory for patch availability and updated guidance. Apply vendor patches as soon as they become available for your Keycloak deployment.

Workarounds

  • Configure reverse proxies to decode and normalize URLs before applying access control rules
  • Block requests containing semicolons in path segments at the WAF or proxy level if matrix parameters are not needed
  • Restrict admin endpoint access to internal networks only using firewall rules
  • Enable additional authentication mechanisms (MFA) for administrative access regardless of network path
bash
# Example nginx configuration to reject requests with matrix parameters
# Add to server or location block
if ($request_uri ~* ";") {
    return 403;
}

# Alternative: Normalize URIs before processing
# This requires the ngx_http_rewrite_module
set $clean_uri $request_uri;
if ($clean_uri ~* "^([^;]*);[^/]*(/.*)$") {
    return 403;
}

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechKeycloak

  • SeverityLOW

  • CVSS Score3.7

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-20
  • Technical References
  • Red Hat CVE-2026-0976 Advisory

  • Red Hat Bug Report #2429869
  • Related CVEs
  • CVE-2025-11419: Keycloak TLS DoS Vulnerability

  • CVE-2026-37980: Keycloak Stored XSS Vulnerability

  • CVE-2026-37977: Keycloak CORS Information Disclosure Flaw

  • CVE-2026-4636: Keycloak 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