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

CVE-2026-33122: DataEase SQL Injection Vulnerability

CVE-2026-33122 is a SQL injection flaw in DataEase that allows authenticated attackers to execute arbitrary SQL commands during datasource updates. This article covers technical details, affected versions, and mitigation steps.

Published: April 17, 2026

CVE-2026-33122 Overview

DataEase is an open-source data visualization and analytics platform used for building dashboards and analyzing data. A SQL injection vulnerability has been identified in versions 2.10.20 and below affecting the API datasource update process. When a new table definition is added during a datasource update via the /de2api/datasource/update endpoint, the deTableName field from the user-submitted configuration is passed to DatasourceSyncManage.createEngineTable, where it is substituted into a CREATE TABLE statement template without any sanitization or identifier escaping. An authenticated attacker can inject arbitrary SQL commands by crafting a deTableName that breaks out of identifier quoting, enabling error-based SQL injection that can extract database information.

Critical Impact

Authenticated attackers can execute arbitrary SQL commands to extract sensitive database information, potentially compromising confidential data stored within the DataEase platform.

Affected Products

  • DataEase versions 2.10.20 and below
  • DataEase open-source data visualization platform deployments
  • Self-hosted DataEase instances with datasource management enabled

Discovery Timeline

  • 2026-04-16 - CVE CVE-2026-33122 published to NVD
  • 2026-04-16 - Last updated in NVD database

Technical Details for CVE-2026-33122

Vulnerability Analysis

This vulnerability is classified as CWE-89 (SQL Injection), a critical web application security flaw that allows attackers to interfere with the queries an application makes to its database. The vulnerability exists in the datasource update functionality of DataEase, specifically in how user-supplied table names are processed.

The attack requires authentication but can be exploited over the network without any user interaction. When successful, an attacker gains the ability to read and potentially modify database contents, though no availability impact has been identified. The error-based SQL injection technique allows attackers to extract database information by observing error messages returned by the application.

Root Cause

The root cause of this vulnerability lies in the improper handling of the deTableName field within the DatasourceSyncManage.createEngineTable function. The application directly incorporates user-supplied input into a CREATE TABLE SQL statement template without implementing proper input sanitization or identifier escaping mechanisms. This lack of parameterized queries or input validation allows malicious SQL syntax to be injected and executed by the database engine.

Attack Vector

The attack vector is network-based, requiring an authenticated user to submit a specially crafted API request to the /de2api/datasource/update endpoint. The attacker must craft a malicious deTableName value that breaks out of the expected identifier quoting context within the CREATE TABLE statement. By manipulating the table name field, the attacker can inject additional SQL commands that execute alongside the intended query.

The exploitation technique leverages error-based SQL injection, where the attacker extracts database information through carefully crafted queries that cause the database to return meaningful error messages. This method allows for data exfiltration even when direct query results are not visible to the attacker.

Detection Methods for CVE-2026-33122

Indicators of Compromise

  • Unusual or malformed table names in datasource update API requests containing SQL syntax characters such as single quotes, semicolons, or SQL keywords
  • Error messages in application logs indicating SQL syntax errors during datasource operations
  • Unexpected database queries or table creation attempts with suspicious naming patterns
  • Anomalous activity from authenticated user accounts targeting the /de2api/datasource/update endpoint

Detection Strategies

  • Implement Web Application Firewall (WAF) rules to detect SQL injection patterns in API request parameters
  • Monitor application logs for SQL syntax errors and unusual database operations related to datasource management
  • Deploy runtime application self-protection (RASP) solutions to detect and block SQL injection attempts
  • Configure database activity monitoring to alert on suspicious query patterns or unauthorized data access

Monitoring Recommendations

  • Enable detailed logging for all datasource-related API endpoints, particularly /de2api/datasource/update
  • Set up alerts for multiple failed or error-generating datasource update requests from the same user session
  • Monitor database audit logs for unexpected CREATE TABLE statements or SQL syntax anomalies
  • Track user behavior patterns to identify authenticated accounts exhibiting unusual datasource management activity

How to Mitigate CVE-2026-33122

Immediate Actions Required

  • Upgrade DataEase to version 2.10.21 or later immediately
  • Review application logs for evidence of exploitation attempts targeting the datasource update endpoint
  • Audit recent datasource update activities for suspicious table names or configurations
  • Consider temporarily restricting access to datasource management features until patching is complete

Patch Information

DataEase has released version 2.10.21 which addresses this SQL injection vulnerability. The fix implements proper sanitization and identifier escaping for the deTableName field before it is used in SQL statements. Organizations should prioritize upgrading to this patched version.

For detailed patch information, refer to the GitHub Release v2.10.21 and the GitHub Security Advisory GHSA-28vg-3hv7-w92f.

Workarounds

  • Implement network-level access controls to restrict access to the DataEase API endpoints to trusted users and networks only
  • Deploy a Web Application Firewall (WAF) with SQL injection detection rules to filter malicious requests before they reach the application
  • Limit datasource management permissions to only essential administrative users
  • Monitor and audit all datasource update operations until the patch can be applied
bash
# Example: Restrict access to DataEase API using iptables (temporary mitigation)
# Allow only trusted IP ranges to access the DataEase application port
iptables -A INPUT -p tcp --dport 8100 -s 10.0.0.0/8 -j ACCEPT
iptables -A INPUT -p tcp --dport 8100 -j DROP

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

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechDataease

  • SeverityHIGH

  • CVSS Score8.6

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:H/VA:N/SC:N/SI:N/SA:N/E:X/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
  • AvailabilityNone
  • CWE References
  • CWE-89
  • Technical References
  • GitHub Release v2.10.21

  • GitHub Security Advisory GHSA-28vg-3hv7-w92f
  • Related CVEs
  • CVE-2026-40900: DataEase SQL Injection Vulnerability

  • CVE-2026-33207: DataEase SQL Injection Vulnerability

  • CVE-2026-33083: DataEase SQL Injection Vulnerability

  • CVE-2026-33121: DataEase SQL Injection 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