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
    • 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-24513

CVE-2026-24513: Ingress-Nginx Auth Bypass Vulnerability

CVE-2026-24513 is an authentication bypass flaw in ingress-nginx that can allow unauthorized access when custom-errors backends are misconfigured. This article covers the technical details, affected systems, and mitigation.

Published: February 6, 2026

CVE-2026-24513 Overview

A security issue was discovered in ingress-nginx where the protection afforded by the auth-url Ingress annotation may not be effective in the presence of a specific misconfiguration. If the ingress-nginx controller is configured with a default custom-errors configuration that includes HTTP errors 401 or 403, and if the configured default custom-errors backend is defective and fails to respect the X-Code HTTP header, then an Ingress with the auth-url annotation may be accessed even when authentication fails.

This vulnerability is classified as CWE-754 (Improper Check for Unusual or Exceptional Conditions), where the system fails to properly handle exceptional conditions that could lead to authentication bypass scenarios.

Critical Impact

Authentication mechanisms may be bypassed when a defective external custom-errors backend is configured, potentially allowing unauthorized access to protected resources in Kubernetes environments.

Affected Products

  • ingress-nginx controller with custom-errors configuration
  • Kubernetes deployments using auth-url Ingress annotation
  • Environments with external custom-errors backends configured for HTTP 401/403 errors

Discovery Timeline

  • 2026-02-03 - CVE-2026-24513 published to NVD
  • 2026-02-04 - Last updated in NVD database

Technical Details for CVE-2026-24513

Vulnerability Analysis

The vulnerability exists in ingress-nginx's authentication flow when combined with a misconfigured custom-errors backend. Under normal operation, when authentication fails via the auth-url annotation, ingress-nginx returns a 401 or 403 HTTP response. The custom-errors backend is responsible for handling these error codes and should respect the X-Code header to properly propagate the authentication failure.

However, when an administrator configures an external custom-errors backend that fails to properly handle the X-Code HTTP header, the authentication failure response may not be correctly processed. This can result in the request being forwarded to the backend application despite the authentication check failing, effectively bypassing the intended access controls.

It is important to note that the built-in custom-errors backend works correctly. This vulnerability only manifests when an administrator specifically configures ingress-nginx with a broken external component that does not properly implement the expected error handling behavior.

Root Cause

The root cause is improper validation of exceptional conditions (CWE-754) in the error handling chain. The ingress-nginx controller trusts that the configured custom-errors backend will correctly interpret and act upon the X-Code HTTP header. When this contract is violated by a defective external component, the authentication decision is not properly enforced, leading to potential access control bypass.

Attack Vector

The attack requires the following conditions to be present:

  1. The ingress-nginx controller must be configured with a default custom-errors configuration
  2. The custom-errors configuration must include handling for HTTP status codes 401 or 403
  3. The configured custom-errors backend must be defective and fail to respect the X-Code HTTP header
  4. An Ingress resource must be configured with the auth-url annotation for external authentication

When all conditions are met, an attacker with network access to the ingress endpoint could potentially bypass authentication by exploiting the improper error handling in the custom-errors backend. The attack requires low privileges and is network-accessible, though the high attack complexity reflects the specific misconfiguration requirements.

Detection Methods for CVE-2026-24513

Indicators of Compromise

  • Unexpected successful access to resources protected by auth-url annotation
  • Discrepancies between authentication service logs (showing failures) and backend access logs (showing successful requests)
  • Custom-errors backend logs showing malformed or missing X-Code header handling

Detection Strategies

  • Review ingress-nginx configurations for custom-errors backends handling 401/403 status codes
  • Audit external custom-errors backend implementations to verify proper X-Code header handling
  • Compare authentication failure rates with actual denied request counts
  • Implement logging at both the authentication service and backend application layers

Monitoring Recommendations

  • Enable detailed access logging on ingress-nginx controllers to correlate authentication decisions with request outcomes
  • Monitor for requests that bypass authentication by comparing auth service responses with backend access patterns
  • Set up alerts for configuration changes to custom-errors settings in ingress-nginx deployments
  • Implement security information and event management (SIEM) rules to detect authentication bypass patterns

How to Mitigate CVE-2026-24513

Immediate Actions Required

  • Review ingress-nginx configurations to identify any custom-errors backend configurations
  • Verify that any configured custom-errors backends properly respect the X-Code HTTP header
  • Consider using the built-in custom-errors backend which correctly handles authentication failures
  • Audit access logs for any potential unauthorized access during the exposure window

Patch Information

Administrators should review the GitHub Kubernetes Issue Discussion for the latest guidance and updates regarding this vulnerability. The recommended remediation is to either use the built-in custom-errors backend or ensure any external custom-errors backend properly implements X-Code header handling.

Workarounds

  • Replace defective external custom-errors backends with the built-in ingress-nginx custom-errors backend
  • Remove 401 and 403 from the custom-errors configuration if external error handling is not required
  • Implement additional authorization checks at the application layer as defense-in-depth
  • Consider using network policies to restrict access to sensitive endpoints while investigating the configuration
bash
# Verify custom-errors configuration in ingress-nginx
kubectl get configmap -n ingress-nginx ingress-nginx-controller -o yaml | grep -A5 "custom-http-errors"

# Check if external custom-errors backend is configured
kubectl get pods -n ingress-nginx -l app.kubernetes.io/component=default-backend

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechIngress Nginx

  • SeverityLOW

  • CVSS Score3.1

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:L/I:N/A:N
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-754
  • Technical References
  • GitHub Kubernetes Issue Discussion
  • Related CVEs
  • CVE-2024-7646: Ingress-Nginx Auth Bypass Vulnerability

  • CVE-2026-3288: Ingress-NGINX RCE Vulnerability

  • CVE-2025-15566: Ingress-Nginx RCE Vulnerability

  • CVE-2026-24512: ingress-nginx RCE Vulnerability
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