Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-23742

CVE-2026-23742: Skipper Information Disclosure Vulnerability

CVE-2026-23742 is an information disclosure flaw in Skipper HTTP router that allows untrusted users to read filesystem secrets through lua filters. This post covers technical details, affected versions, and mitigation.

Published: January 23, 2026

CVE-2026-23742 Overview

CVE-2026-23742 is a Code Injection vulnerability affecting Zalando Skipper, an HTTP router and reverse proxy for service composition. The default Skipper configuration before version 0.23.0 included -lua-sources=inline,file, which allowed untrusted users to create Lua filters capable of reading the filesystem accessible to the Skipper process. When combined with log access, attackers could exfiltrate sensitive secrets from Skipper deployments.

Critical Impact

Untrusted users with the ability to create Lua filters (for example, through Kubernetes Ingress resources) can read arbitrary files from the Skipper process filesystem and potentially access secrets through log files.

Affected Products

  • Zalando Skipper versions prior to 0.23.0
  • Kubernetes environments using Skipper as an Ingress controller with default Lua configuration
  • Deployments with -lua-sources=inline enabled (default before 0.23.0)

Discovery Timeline

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

Technical Details for CVE-2026-23742

Vulnerability Analysis

This vulnerability stems from CWE-94 (Improper Control of Generation of Code - Code Injection). The Skipper HTTP router allows users to define custom Lua scripts for request filtering and routing logic. Prior to version 0.23.0, the default configuration permitted inline Lua script definitions, creating a dangerous attack surface in multi-tenant environments.

In Kubernetes deployments where Skipper serves as an Ingress controller, users with permission to create or modify Ingress resources can inject arbitrary Lua code through filter definitions. This code executes within the context of the Skipper process, inheriting its file system access permissions. An attacker can craft malicious Lua scripts that read sensitive files such as service account tokens, environment variables, or configuration files containing credentials.

The attack becomes particularly severe when combined with log access. If the attacker can view Skipper logs (common in shared Kubernetes clusters), they can use the Lua script to read sensitive data and then output it to logs via standard logging functions, effectively exfiltrating secrets through legitimate logging channels.

Root Cause

The root cause is an insecure default configuration where -lua-sources=inline,file was enabled by default. The inline option permits users to embed Lua code directly within filter definitions, bypassing any file-based restrictions. This design assumed trusted users would be creating Lua filters, but in multi-tenant environments like shared Kubernetes clusters, this assumption does not hold. The vulnerability allows code injection because user-controlled input (Lua script content) is executed without sufficient sandboxing or restriction.

Attack Vector

The attack requires network access and low privileges—specifically, the ability to create or modify Kubernetes Ingress resources that Skipper processes. An authenticated attacker can inject malicious Lua code through Ingress annotations or filter definitions. The injected script can then:

  1. Enumerate and read files accessible to the Skipper process
  2. Access Kubernetes service account tokens at /var/run/secrets/kubernetes.io/serviceaccount/token
  3. Read environment variables containing secrets
  4. Output sensitive data to logs for exfiltration

The attack does not require user interaction and can be performed remotely against any Skipper deployment using the vulnerable default configuration.

Detection Methods for CVE-2026-23742

Indicators of Compromise

  • Unusual Lua filter definitions in Kubernetes Ingress resources containing file I/O operations
  • Skipper logs containing unexpected data that may indicate exfiltration attempts
  • Access to sensitive file paths such as /var/run/secrets/ or /etc/ from Skipper process logs
  • New or modified Ingress resources with inline Lua scripts from unexpected users

Detection Strategies

  • Monitor Kubernetes audit logs for Ingress resource creation or modification events containing Lua filter definitions
  • Implement log analysis to detect patterns consistent with file content being written to logs
  • Review existing Ingress resources for suspicious Lua code referencing file system operations like io.open() or os.execute()
  • Deploy runtime security monitoring on Skipper pods to detect unexpected file access patterns

Monitoring Recommendations

  • Enable detailed audit logging for Kubernetes Ingress resources managed by Skipper
  • Configure alerts for Skipper pod file access to sensitive directories like /var/run/secrets/
  • Implement log aggregation with pattern matching for base64-encoded data or known secret formats in Skipper output
  • Monitor for unusual network egress from Skipper pods that could indicate data exfiltration

How to Mitigate CVE-2026-23742

Immediate Actions Required

  • Upgrade Zalando Skipper to version 0.23.0 or later immediately
  • Audit existing Kubernetes Ingress resources for potentially malicious Lua filter definitions
  • Review Skipper logs for signs of prior exploitation or data exfiltration
  • Restrict permissions for creating or modifying Ingress resources in shared environments

Patch Information

The vulnerability is fixed in Skipper version 0.23.0. The patch modifies the default Lua sources configuration to prevent inline script execution by untrusted users. For detailed patch information, see the GitHub Security Advisory GHSA-cc8m-98fm-rc9g and the specific commit 0b52894 that addresses this issue. The patched version is available via the v0.23.0 release.

Workarounds

  • Explicitly configure Skipper with -lua-sources=file to disable inline Lua script execution
  • Implement Kubernetes RBAC policies to restrict Ingress resource creation to trusted administrators only
  • Deploy Open Policy Agent (OPA) or similar admission controllers to validate Ingress resources and reject those containing inline Lua filters
  • Run Skipper with minimal file system permissions and read-only root filesystem where possible
bash
# Configuration example - Disable inline Lua sources
skipper -lua-sources=file -routes-file=/etc/skipper/routes.eskip

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechSkipper

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability0.05%

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

  • GitHub Release v0.23.0

  • GitHub Security Advisory GHSA-cc8m-98fm-rc9g
  • Related CVEs
  • CVE-2026-24470: Skipper Ingress SSRF 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