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

CVE-2026-33084: DataEase SQL Injection Vulnerability

CVE-2026-33084 is a SQL injection flaw in DataEase analytics platform that allows authenticated attackers to inject malicious SQL commands. This article covers the technical details, affected versions, and mitigation steps.

Published: April 17, 2026

CVE-2026-33084 Overview

DataEase is an open-source data visualization and analytics platform that enables users to create dashboards and perform data analysis. A SQL injection vulnerability has been identified in versions 2.10.20 and below, specifically affecting the sort parameter of the /de2api/datasetData/enumValueObj endpoint. This vulnerability allows authenticated attackers to inject arbitrary SQL commands, potentially compromising the confidentiality, integrity, and availability of the underlying database system.

Critical Impact

Authenticated attackers can exploit this SQL injection vulnerability to execute arbitrary SQL commands through time-based blind injection, potentially leading to unauthorized data access, modification, or deletion.

Affected Products

  • DataEase versions 2.10.20 and below
  • DataEase installations using the /de2api/datasetData/enumValueObj endpoint
  • DataEase deployments with CalciteProvider SQL execution

Discovery Timeline

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

Technical Details for CVE-2026-33084

Vulnerability Analysis

This SQL injection vulnerability stems from improper handling of user-supplied input in the sort parameter processing chain. The DatasetDataManage service layer accepts user-controlled sort values and directly transfers them to the sorting metadata DTO without proper sanitization. This unsanitized input is then passed to Order2SQLObj, where it becomes incorporated into the SQL ORDER BY clause. The lack of whitelist validation at any point in this data flow allows malicious SQL statements to be constructed and subsequently executed via CalciteProvider.

The vulnerability enables time-based blind SQL injection, a technique where attackers infer database information by observing response time differences caused by injected SQL timing functions. This attack method is particularly dangerous because it can be automated and requires minimal prerequisites beyond authenticated access to the affected endpoint.

Root Cause

The root cause of this vulnerability is the absence of proper input validation and sanitization in the sort parameter handling logic. Specifically:

  1. The DatasetDataManage service accepts arbitrary user input without validation
  2. No whitelist filtering is implemented to restrict allowed sort values
  3. The Order2SQLObj component directly concatenates user input into SQL ORDER BY clauses
  4. The CalciteProvider executes the resulting SQL without additional security checks

This represents a classic CWE-89 (SQL Injection) vulnerability pattern where untrusted data reaches a SQL interpreter without proper neutralization of special characters.

Attack Vector

The attack is conducted over the network, requiring the attacker to have authenticated access to the DataEase platform. Once authenticated, an attacker can craft malicious requests to the /de2api/datasetData/enumValueObj endpoint with specially crafted sort parameter values. The injected SQL payload is processed through the vulnerable code path and executed against the database.

The attack leverages time-based blind SQL injection techniques, allowing attackers to extract sensitive information character by character by observing response timing variations. This method enables complete database enumeration without requiring direct error messages or visible output from the injection point.

Detection Methods for CVE-2026-33084

Indicators of Compromise

  • Unusual or excessive requests to the /de2api/datasetData/enumValueObj endpoint from single users or IP addresses
  • HTTP requests containing SQL injection patterns in the sort parameter (e.g., SLEEP(), BENCHMARK(), WAITFOR, pg_sleep())
  • Database query logs showing abnormal ORDER BY clause constructs or time-delay functions
  • Increased database response times correlating with specific API requests

Detection Strategies

  • Implement web application firewall (WAF) rules to detect and block SQL injection patterns in request parameters
  • Configure database activity monitoring to alert on suspicious query patterns, particularly those involving time-delay functions
  • Deploy application-level logging to capture all requests to the vulnerable endpoint with full parameter details
  • Use SIEM correlation rules to identify sequential requests with incrementing or iterating patterns typical of blind SQL injection automation

Monitoring Recommendations

  • Enable detailed access logging for the DataEase API endpoints, particularly /de2api/datasetData/enumValueObj
  • Monitor database query execution times for anomalous patterns that may indicate time-based injection attempts
  • Track authentication events to identify compromised accounts being used for exploitation
  • Implement alerting for any SQL errors or exceptions originating from the affected code paths

How to Mitigate CVE-2026-33084

Immediate Actions Required

  • Upgrade DataEase to version 2.10.21 or later immediately
  • Audit access logs for any signs of exploitation attempts prior to patching
  • Review database contents for unauthorized modifications if exploitation is suspected
  • Implement network-level restrictions to limit access to the DataEase API from trusted sources only

Patch Information

The vulnerability has been addressed in DataEase version 2.10.21. Organizations should upgrade to this version or later to remediate the SQL injection vulnerability. The fix implements proper input validation and whitelist filtering for the sort parameter, preventing arbitrary SQL injection through the ORDER BY clause.

For detailed patch information, refer to the GitHub Release v2.10.21 and the GitHub Security Advisory GHSA-r897-r9q8-3p2x.

Workarounds

  • Implement a reverse proxy or WAF rule to filter requests containing SQL injection patterns in the sort parameter
  • Restrict access to the /de2api/datasetData/enumValueObj endpoint to only trusted internal users until patching is complete
  • Apply principle of least privilege to database accounts used by DataEase to limit potential impact of successful exploitation
  • Monitor and alert on any requests to the vulnerable endpoint while awaiting patch deployment
bash
# Example: WAF rule to block suspicious sort parameter patterns (adjust for your WAF solution)
# Block requests containing common SQL injection time-based patterns
SecRule ARGS:sort "@rx (SLEEP|BENCHMARK|WAITFOR|pg_sleep|DELAY)" \
    "id:1001,phase:2,deny,status:403,msg:'Potential SQL Injection in sort parameter'"

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

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

  • GitHub Security Advisory GHSA-r897-r9q8-3p2x
  • Related CVEs
  • CVE-2026-33121: DataEase SQL Injection Vulnerability

  • CVE-2026-40900: DataEase SQL Injection Vulnerability

  • CVE-2026-33207: DataEase SQL Injection Vulnerability

  • CVE-2026-33122: DataEase SQL Injection Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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