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

CVE-2026-38428: Kestra SQL Injection Vulnerability

CVE-2026-38428 is a SQL injection vulnerability in Kestra v1.3.3 and earlier versions that allows attackers to inject malicious SQL code via GET parameters. This article covers technical details, affected versions, and mitigation.

Published: May 7, 2026

CVE-2026-38428 Overview

CVE-2026-38428 is a SQL Injection vulnerability affecting Kestra v1.3.3 and earlier versions. The flaw exists because user-controlled input from a GET parameter is directly concatenated into an SQL query without sanitization or parameterization. Attackers can inject arbitrary SQL expressions into the database query through a network-accessible endpoint.

The vulnerability requires no authentication and no user interaction. It maps to CWE-89: Improper Neutralization of Special Elements used in an SQL Command. Successful exploitation can compromise confidentiality, integrity, and availability of the underlying database.

Critical Impact

Unauthenticated remote attackers can read, modify, or delete database contents through crafted GET parameter values, leading to full data compromise of Kestra deployments.

Affected Products

  • Kestra v1.3.3 and earlier versions
  • Kestra orchestration platform deployments exposing the affected GET endpoint
  • Self-hosted and containerized Kestra installations on the vulnerable releases

Discovery Timeline

  • 2026-05-05 - CVE-2026-38428 published to NVD
  • 2026-05-07 - Last updated in NVD database

Technical Details for CVE-2026-38428

Vulnerability Analysis

The vulnerability resides in a Kestra HTTP handler that accepts a GET parameter and concatenates the value directly into an SQL statement. Because the application performs no input validation, escaping, or parameter binding, attacker-controlled characters terminate the original query context. The attacker can then append additional SQL clauses such as UNION SELECT, OR 1=1, or stacked statements depending on the database driver.

Kestra is a workflow orchestration platform that frequently stores execution metadata, secrets, and flow definitions in its backing database. SQL Injection at this layer exposes operational data and pipeline configuration. Attackers can also abuse database functions to read files, write files, or execute commands depending on the database engine privileges.

Root Cause

The root cause is the use of string concatenation to build SQL queries from untrusted input. The codebase fails to apply prepared statements or an ORM-level binding mechanism for the affected endpoint. This pattern violates secure coding guidance in [CWE-89] and ignores parameterization features available in modern Java database libraries used by Kestra.

Attack Vector

An unauthenticated attacker sends a crafted HTTP GET request containing SQL metacharacters in the vulnerable parameter. The request travels over the network, requires no privileges, and produces no user interaction prompt. The injected payload executes inside the database session used by Kestra. Refer to the Kestra GitHub Security Advisory GHSA-365w-2m69-mp9x for technical specifics.

Detection Methods for CVE-2026-38428

Indicators of Compromise

  • HTTP GET requests to Kestra endpoints containing SQL syntax tokens such as UNION, SELECT, --, ;, ', or OR 1=1 in query parameters
  • Database error messages or stack traces returned in HTTP responses from the Kestra application
  • Unexpected outbound connections from the Kestra database host or anomalous read volume against execution and flow tables
  • New or modified rows in Kestra authentication or secret storage tables outside of normal change windows

Detection Strategies

  • Inspect web server and reverse proxy logs for GET parameters containing URL-encoded SQL metacharacters targeting Kestra routes
  • Deploy Web Application Firewall rules with SQL Injection signatures in front of the Kestra UI and API
  • Enable database query logging and alert on syntactically unusual queries originating from the Kestra service account
  • Correlate Kestra application logs with database audit logs to identify injected payload execution

Monitoring Recommendations

  • Monitor Kestra HTTP access logs for spikes in 500-class responses tied to specific GET parameters
  • Track database CPU and row-read metrics for the Kestra schema to detect bulk extraction attempts
  • Alert on Kestra service account queries that reference information_schema, pg_catalog, or system tables

How to Mitigate CVE-2026-38428

Immediate Actions Required

  • Upgrade Kestra to a release later than v1.3.3 that contains the fix referenced in the GitHub Security Advisory GHSA-365w-2m69-mp9x
  • Restrict network exposure of the Kestra UI and API to trusted administrative networks or VPN segments
  • Review Kestra database audit logs for suspicious queries dating back to the deployment of v1.3.3 or earlier
  • Rotate any credentials, API keys, or secrets stored in the Kestra database after patching

Patch Information

Apply the patched Kestra release identified in the vendor advisory. The fix replaces unsafe string concatenation with parameterized queries on the affected endpoint. Validate the running version with kestra --version after upgrade and confirm no v1.3.3 or earlier instances remain in the environment.

Workarounds

  • Place a Web Application Firewall in front of Kestra and enable signatures that block SQL Injection patterns in GET parameters
  • Restrict the Kestra database account to least privilege, removing file I/O and DDL permissions where possible
  • Disable or firewall the affected GET endpoint at the reverse proxy layer until the upgrade is applied
bash
# Example reverse proxy rule to block SQL metacharacters in Kestra GET parameters
# nginx snippet - adjust location to the affected route
location /api/v1/ {
    if ($args ~* "(union|select|--|;|or\s+1=1|information_schema)") {
        return 403;
    }
    proxy_pass http://kestra_backend;
}

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

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechKestra

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability0.03%

  • 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-89
  • Technical References
  • GitHub Security Advisory

  • Link.com Resource
  • Related CVEs
  • CVE-2026-34612: Kestra SQL Injection RCE Vulnerability

  • CVE-2026-33664: Kestra Orchestration Platform XSS Vulnerability

  • CVE-2026-29082: Kestra XSS Vulnerability in Markdown
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