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-2024-23328

CVE-2024-23328: Dataease RCE Vulnerability via Deserialization

CVE-2024-23328 is a deserialization vulnerability in Dataease that enables remote code execution through MySQL JDBC blacklist bypass. This article covers the technical details, affected versions, and mitigation strategies.

Published: April 8, 2026

CVE-2024-23328 Overview

CVE-2024-23328 is an insecure deserialization vulnerability in DataEase, an open source data visualization analysis tool. The vulnerability exists in the DataEase MySQL datasource component, where attackers can bypass the blacklist protection for MySQL JDBC attacks to execute arbitrary code or read arbitrary files from vulnerable systems.

Critical Impact

This vulnerability allows unauthenticated remote attackers to bypass security controls and achieve arbitrary code execution or sensitive file disclosure on systems running vulnerable versions of DataEase.

Affected Products

  • DataEase versions prior to 1.18.15
  • DataEase versions prior to 2.3.0

Discovery Timeline

  • 2024-02-29 - CVE-2024-23328 published to NVD
  • 2025-01-08 - Last updated in NVD database

Technical Details for CVE-2024-23328

Vulnerability Analysis

The vulnerability resides in the MySQL datasource configuration handling within DataEase. Specifically, the vulnerable code is located at core/core-backend/src/main/java/io/dataease/datasource/type/Mysql.java. The application implements a blacklist approach to prevent malicious MySQL JDBC connection string parameters that could trigger deserialization attacks. However, this blacklist can be bypassed by attackers using URL encoding or other evasion techniques.

When a user configures a MySQL datasource connection, the application fails to properly decode and validate the connection parameters before checking against the blacklist. This allows attackers to craft malicious JDBC connection strings that evade detection while still triggering unsafe deserialization behavior when the connection is established.

Root Cause

The root cause is classified as CWE-502 (Deserialization of Untrusted Data). The application's blacklist-based security approach for MySQL JDBC parameters is insufficient because:

  1. The blacklist validation does not properly handle URL-encoded input
  2. Attackers can bypass the blacklist by encoding malicious parameters
  3. The MySQL JDBC driver supports features that can trigger deserialization of attacker-controlled data

The security patch addresses this by implementing proper URL decoding before validation, as shown in the commit changes that add URLDecoder imports to properly normalize input before blacklist checking.

Attack Vector

The attack is network-based and can be executed by an unauthenticated remote attacker. The exploitation flow involves:

  1. An attacker accesses the DataEase datasource configuration interface
  2. The attacker crafts a malicious MySQL JDBC connection string with URL-encoded parameters designed to bypass the blacklist
  3. When the datasource connection is tested or established, the malicious parameters trigger deserialization
  4. The attacker achieves arbitrary code execution or arbitrary file read depending on the payload used
java
// Security patch excerpt from Mysql.java
// Source: https://github.com/dataease/dataease/commit/4128adf5fc4592b55fa1722a53b178967545d46a

import org.apache.commons.lang3.StringUtils;
import org.springframework.stereotype.Component;

+import java.net.URLDecoder;
import java.util.Arrays;
import java.util.List;

The patch introduces URLDecoder to properly decode connection parameters before validation, preventing encoded bypass attempts.

Detection Methods for CVE-2024-23328

Indicators of Compromise

  • Unusual MySQL datasource configurations containing encoded or obfuscated connection parameters
  • Unexpected outbound connections from the DataEase application server to external hosts
  • Evidence of file access outside normal application directories
  • Java deserialization-related error messages or stack traces in application logs
  • Suspicious process spawning from the DataEase Java process

Detection Strategies

  • Monitor DataEase application logs for unusual datasource configuration attempts, particularly those containing URL-encoded special characters
  • Implement network monitoring for JDBC connections to unexpected destinations or ports
  • Deploy endpoint detection rules to identify deserialization attack patterns in Java applications
  • Review audit logs for datasource creation or modification events from unauthorized users

Monitoring Recommendations

  • Enable verbose logging for the DataEase datasource module to capture connection string parameters
  • Implement alerting on failed datasource connection attempts that may indicate reconnaissance activity
  • Monitor for file system access patterns indicative of arbitrary file read exploitation
  • Track process execution trees to identify code execution following datasource operations

How to Mitigate CVE-2024-23328

Immediate Actions Required

  • Upgrade DataEase to version 1.18.15 or later for the 1.x branch
  • Upgrade DataEase to version 2.3.0 or later for the 2.x branch
  • Review existing datasource configurations for suspicious or unauthorized entries
  • Restrict network access to the DataEase administration interface to trusted networks only

Patch Information

DataEase has released security patches addressing this vulnerability. The fixes are available in versions 1.18.15 and 2.3.0. The patches implement proper URL decoding of MySQL JDBC connection parameters before blacklist validation, preventing encoded bypass techniques.

Relevant commits:

  • GitHub Commit 4128adf5 - Fix for core-backend module
  • GitHub Commit bb540e6d - Fix for backend module

For complete details, see the GitHub Security Advisory GHSA-8x8q-p622-jf25.

Workarounds

  • Implement network segmentation to restrict access to the DataEase datasource configuration interface
  • Deploy a web application firewall (WAF) to filter malicious JDBC connection parameters
  • Disable or restrict datasource creation capabilities to only trusted administrators
  • Monitor and audit all datasource configuration changes until patching is complete
bash
# Example: Restrict network access to DataEase admin interface using iptables
iptables -A INPUT -p tcp --dport 8080 -s 10.0.0.0/8 -j ACCEPT
iptables -A INPUT -p tcp --dport 8080 -j DROP

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechDataease

  • SeverityCRITICAL

  • CVSS Score9.1

  • EPSS Probability0.60%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-502
  • Vendor Resources
  • GitHub Commit Change 4128adf5

  • GitHub Commit Change bb540e6d

  • GitHub Security Advisory GHSA-8x8q-p622-jf25
  • Related CVEs
  • CVE-2026-40901: DataEase RCE Vulnerability

  • CVE-2026-32140: Dataease JDBC Driver RCE Vulnerability

  • CVE-2025-58748: Dataease JDBC URL Validation RCE Flaw

  • CVE-2025-57773: Dataease JNDI Injection RCE 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