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

CVE-2026-3293: Snowflake JDBC DOS Vulnerability

CVE-2026-3293 is a denial of service vulnerability in Snowflake JDBC caused by inefficient regular expression complexity in the nonProxyHosts parameter. This article covers technical details, affected versions, and mitigation.

Published: March 6, 2026

CVE-2026-3293 Overview

A vulnerability has been identified in the Snowflake JDBC Driver (snowflake-jdbc) affecting versions up to 4.0.1. The weakness exists in the SdkProxyRoutePlanner class within the JDBC URL Handler component, specifically in the handling of the nonProxyHosts argument. An attacker with local access can manipulate this parameter to trigger inefficient regular expression complexity, leading to potential denial of service through resource exhaustion.

This vulnerability is classified as CWE-400 (Uncontrolled Resource Consumption) and represents an algorithmic complexity attack vector where specially crafted input can cause the regex engine to consume excessive CPU resources.

Critical Impact

Local attackers can exploit the nonProxyHosts parameter to cause denial of service through CPU exhaustion via inefficient regular expression processing in the Snowflake JDBC Driver.

Affected Products

  • Snowflake JDBC Driver versions up to 4.0.1
  • Applications using snowflake:snowflake_jdbc component for database connectivity

Discovery Timeline

  • 2026-02-27 - CVE-2026-3293 published to NVD
  • 2026-03-02 - Last updated in NVD database

Technical Details for CVE-2026-3293

Vulnerability Analysis

The vulnerability resides in the SdkProxyRoutePlanner.java file within the Snowflake JDBC Driver's internal core package. The affected code processes the nonProxyHosts configuration parameter, which specifies hosts that should bypass proxy settings.

The root issue lies in how the driver converts wildcard patterns into regular expressions. The original implementation transformed user-supplied patterns by replacing wildcard characters (*) with the regex pattern .*?, which created the potential for catastrophic backtracking when processing maliciously crafted input strings.

An attacker with local access to the system can supply specially crafted nonProxyHosts values that cause the regex engine to enter pathological matching states, consuming excessive CPU cycles and potentially causing denial of service for applications relying on the JDBC driver.

Root Cause

The vulnerability stems from unsafe regular expression construction in the SdkProxyRoutePlanner class. The original code parsed the nonProxyHosts parameter by:

  1. Splitting the input on pipe (|) delimiters
  2. Converting each segment to lowercase
  3. Replacing asterisk wildcards (*) with the regex quantifier .*?

This conversion created regex patterns susceptible to ReDoS (Regular Expression Denial of Service) attacks, where crafted input can trigger exponential time complexity in pattern matching.

Attack Vector

The attack requires local access to the system and the ability to control or influence the nonProxyHosts configuration parameter passed to the JDBC driver. The exploitation is straightforward:

  1. An attacker crafts a malicious nonProxyHosts value with patterns designed to trigger catastrophic regex backtracking
  2. The JDBC driver parses this value using the vulnerable regex construction logic
  3. Subsequent host matching operations consume excessive CPU resources
  4. The application becomes unresponsive or crashes due to resource exhaustion

The following patch shows how Snowflake addressed the vulnerability by removing the unsafe regex conversion:

java
       String proxyHost, int proxyPort, HttpProtocol proxyProtocol, String nonProxyHosts) {
     super(DefaultSchemePortResolver.INSTANCE);
     proxy = new HttpHost(proxyHost, proxyPort, proxyProtocol.toString());
-    // parseNonProxyHosts
     if (!SnowflakeUtil.isNullOrEmpty(nonProxyHosts)) {
-      String[] hosts = nonProxyHosts.split("\\|");
-      hostPatterns = new String[hosts.length];
-      for (int i = 0; i < hosts.length; ++i) {
-        hostPatterns[i] = hosts[i].toLowerCase().replace("*", ".*?");
-      }
+      hostPatterns = nonProxyHosts.split("\\|");
     } else {
       hostPatterns = null;
     }

Source: GitHub Commit 5fb0a8a

The fix removes the vulnerable wildcard-to-regex conversion, instead using the raw split patterns with proper sanitization handled by the SnowflakeUtil class:

java
 import java.util.concurrent.ThreadFactory;
 import java.util.concurrent.ThreadPoolExecutor;
 import java.util.concurrent.TimeUnit;
+import java.util.regex.Pattern;
 import java.util.stream.Collectors;
 import net.snowflake.client.api.exception.ErrorCode;
 import net.snowflake.client.api.exception.SnowflakeSQLException;

Source: GitHub Commit 5fb0a8a

Detection Methods for CVE-2026-3293

Indicators of Compromise

  • Unusual CPU spikes in applications using Snowflake JDBC Driver
  • Thread pool exhaustion or hung threads related to proxy routing operations
  • Application logs showing slow or timed-out database connection attempts
  • Stack traces referencing SdkProxyRoutePlanner or regex pattern matching

Detection Strategies

  • Monitor CPU utilization patterns in Java applications using Snowflake JDBC connectivity
  • Implement application performance monitoring (APM) to detect regex-related CPU spikes
  • Review JDBC connection configuration for suspicious nonProxyHosts values containing complex wildcard patterns
  • Enable JVM thread dump analysis to identify threads stuck in regex matching operations

Monitoring Recommendations

  • Configure alerting for sustained high CPU usage in database connectivity components
  • Deploy SentinelOne endpoint protection to monitor for local exploitation attempts
  • Implement logging for JDBC driver configuration changes
  • Establish baselines for normal database connection establishment times to detect anomalies

How to Mitigate CVE-2026-3293

Immediate Actions Required

  • Upgrade the Snowflake JDBC Driver to a patched version beyond 4.0.1
  • Review and validate all nonProxyHosts configuration values for malicious patterns
  • Monitor applications using the affected driver for signs of resource exhaustion
  • Implement network segmentation to limit local access to systems running vulnerable drivers

Patch Information

Snowflake has released a security patch addressing this vulnerability. The fix is available in commit 5fb0a8a318a2ed87f4022a1f56e742424ba94052 and removes the unsafe regex pattern construction that enabled the ReDoS attack.

Organizations should upgrade their Snowflake JDBC Driver dependencies to incorporate this fix. The patch can be reviewed in the GitHub Commit History and related details are tracked in Snowflake Jira Issue SNOW-3104251.

Workarounds

  • Restrict local access to systems running applications with vulnerable Snowflake JDBC Driver configurations
  • Implement input validation on nonProxyHosts values before they reach the JDBC driver
  • Use application-level firewalls or security policies to limit configuration modifications
  • Deploy containerization or sandboxing to isolate applications using the vulnerable driver
bash
# Verify current Snowflake JDBC Driver version in Maven projects
mvn dependency:tree | grep snowflake-jdbc

# Update to patched version in pom.xml
# Ensure version is greater than 4.0.1

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechSnowflake

  • SeverityMEDIUM

  • CVSS Score4.8

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:L/AC:L/AT:N/PR:L/UI:N/VC:N/VI:N/VA:L/SC:N/SI:N/SA:N/E:P/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-400
  • Technical References
  • GitHub Repository for JDBC Driver

  • VulDB #348035 CTI

  • VulDB #348035

  • VulDB Submission #760428
  • Vendor Resources
  • GitHub Commit History

  • GitHub Issue Tracker

  • GitHub Detailed Issue Discussion

  • Snowflake Computing Jira Issue
  • Related CVEs
  • CVE-2022-42965: Snowflake-connector-python DoS Vulnerability

  • CVE-2026-6442: Snowflake Cortex Code CLI RCE Vulnerability

  • CVE-2025-24790: Snowflake JDBC Information Disclosure

  • CVE-2025-24793: Snowflake Connector Python SQLi Flaw
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