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
    • 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-2024-28255

CVE-2024-28255: OpenMetadata Authentication Bypass Flaw

CVE-2024-28255 is an authentication bypass vulnerability in OpenMetadata that allows attackers to bypass JWT authentication using path parameters. This article covers technical details, affected versions, and mitigations.

Updated: January 22, 2026

CVE-2024-28255 Overview

OpenMetadata is a unified platform for discovery, observability, and governance powered by a central metadata repository, in-depth lineage, and seamless team collaboration. A critical authentication bypass vulnerability exists in the JwtFilter component that handles API authentication by requiring and verifying JWT tokens. When a new request comes in, the request's path is checked against an exclusion list. When the request's path contains any of the excluded endpoints, the filter returns without validating the JWT. Unfortunately, an attacker may use Path Parameters to make any path contain any arbitrary strings, allowing complete bypass of the authentication mechanism.

Critical Impact

This vulnerability enables unauthenticated attackers to bypass JWT authentication entirely and access any arbitrary API endpoint, potentially leading to arbitrary SpEL expression injection and complete system compromise.

Affected Products

  • OpenMetadata versions prior to 1.2.4
  • open-metadata openmetadata (all vulnerable versions)
  • OpenMetadata deployments with exposed API endpoints

Discovery Timeline

  • 2024-03-15 - CVE-2024-28255 published to NVD
  • 2025-09-04 - Last updated in NVD database

Technical Details for CVE-2024-28255

Vulnerability Analysis

The vulnerability resides in the JwtFilter class within OpenMetadata's security module. This filter is responsible for authenticating API requests by validating JWT tokens. The filter maintains a list of excluded endpoints that are allowed to bypass authentication—a common pattern for public endpoints like login pages.

The fundamental flaw lies in how the filter checks whether a request path matches the excluded endpoints. The path matching logic is susceptible to manipulation through URL path parameters. In HTTP, path parameters are segments that appear after a semicolon in a URL path. For example, in /api/v1;malicious/endpoint, the ;malicious portion is a path parameter.

When an attacker crafts a request like GET /api/v1;v1%2fusers%2flogin/events/subscriptions/validation/condition/111, the path matching logic sees the URL-encoded string v1/users/login within the path, which matches an excluded endpoint pattern. This causes the filter to skip JWT validation entirely, allowing the request to proceed to any backend endpoint.

This bypass has a notable limitation: it will not work for endpoints that call SecurityContext.getUserPrincipal() since the principal will be null, resulting in a NullPointerException. However, many endpoints do not perform this check, leaving them fully accessible to unauthenticated attackers.

This issue is also tracked as GHSL-2023-237 by GitHub Security Lab.

Root Cause

The root cause is improper input validation in the URL path matching logic within the JwtFilter class. The filter performs substring matching to determine if a request path contains an excluded endpoint pattern, but it fails to properly normalize the path before comparison. This allows attackers to inject arbitrary strings into the path using URL-encoded path parameters, effectively spoofing the path to match exclusion patterns while the actual request is routed to a different endpoint.

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker can exploit this vulnerability by:

  1. Identifying the excluded endpoint patterns used by the JwtFilter
  2. Crafting a malicious URL that includes an excluded endpoint pattern as a URL-encoded path parameter
  3. Appending the actual target endpoint they wish to access after the path parameter
  4. Sending the request to the OpenMetadata API server

The crafted URL structure exploits the loose path matching to bypass authentication while the underlying web server routes the request to the attacker's target endpoint. This can lead to arbitrary SpEL expression injection on vulnerable endpoints, potentially resulting in remote code execution.

For technical details on the vulnerable code, see the GitHub JwtFilter Code Reference and the GitHub Security Advisory GHSA-6wx7-qw5p-wh84.

Detection Methods for CVE-2024-28255

Indicators of Compromise

  • HTTP requests containing semicolons (;) followed by URL-encoded path segments targeting OpenMetadata API endpoints
  • API access logs showing requests to sensitive endpoints without corresponding authentication events
  • Unusual access patterns to /api/v1/ endpoints with malformed or suspicious path structures
  • Error logs indicating NullPointerException from getUserPrincipal() calls following unauthenticated requests

Detection Strategies

  • Monitor web server and application logs for requests containing path parameters (semicolon followed by data) in OpenMetadata API paths
  • Implement Web Application Firewall (WAF) rules to detect and block requests with URL-encoded path traversal patterns such as %2f within path segments
  • Configure intrusion detection systems to alert on requests matching the pattern /api/v1;.*login.* or similar excluded endpoint injections
  • Audit API access logs for successful requests to protected endpoints that lack corresponding JWT validation entries

Monitoring Recommendations

  • Enable detailed access logging on all OpenMetadata API endpoints including full request URIs
  • Implement real-time alerting for requests containing suspicious path parameter patterns targeting the API
  • Monitor for SpEL expression injection attempts in request parameters following potential authentication bypass
  • Track failed authentication attempts and correlate with subsequent successful unauthenticated API access

How to Mitigate CVE-2024-28255

Immediate Actions Required

  • Upgrade OpenMetadata to version 1.2.4 or later immediately as this version addresses the vulnerability
  • If immediate upgrade is not possible, restrict network access to the OpenMetadata API to trusted sources only
  • Deploy a Web Application Firewall (WAF) with rules to block requests containing path parameters (semicolons) in API paths
  • Audit access logs for evidence of exploitation attempts or successful bypass

Patch Information

OpenMetadata has addressed this vulnerability in version 1.2.4. Users are strongly advised to upgrade to this version or later. The fix implements proper path normalization in the JwtFilter to prevent path parameter manipulation from bypassing authentication checks.

For detailed patch information, refer to the GitHub Security Advisory GHSA-6wx7-qw5p-wh84.

Workarounds

  • There are no known workarounds for this vulnerability according to the vendor advisory
  • As a temporary mitigation, restrict network access to OpenMetadata to only trusted IP ranges using firewall rules
  • Implement a reverse proxy with strict URL validation that rejects requests containing semicolons in path segments
  • Monitor and alert on suspicious API access patterns while planning the upgrade to version 1.2.4
bash
# Example: Restrict access to OpenMetadata API using iptables (temporary mitigation)
# Only allow access from trusted network 10.0.0.0/8
iptables -A INPUT -p tcp --dport 8585 -s 10.0.0.0/8 -j ACCEPT
iptables -A INPUT -p tcp --dport 8585 -j DROP

# Example: nginx reverse proxy rule to block path parameters
# Add to nginx server configuration
if ($request_uri ~ ";") {
    return 403;
}

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechOpen Metadata

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability93.99%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-287

  • NVD-CWE-noinfo
  • Technical References
  • GitHub JwtFilter Code Reference

  • GitHub JwtFilter Code Reference

  • Vicarius CVE-2024-28255 Analysis
  • Vendor Resources
  • GitHub Security Advisory GHSA-6wx7-qw5p-wh84
  • Latest CVEs
  • CVE-2025-9185: Mozilla Firefox RCE Vulnerability

  • CVE-2025-9184: Mozilla Firefox RCE Vulnerability

  • CVE-2025-9180: Mozilla Firefox Auth Bypass Vulnerability

  • CVE-2025-8030: Mozilla Firefox RCE 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