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
    • 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-2025-64163

CVE-2025-64163: DataEase SSRF Vulnerability via DNS Protocol

CVE-2025-64163 is an SSRF vulnerability in DataEase that exploits unfiltered dns:// protocol handling despite ldap:// protections. This article covers technical details, affected versions, security impact, and mitigation.

Published: March 18, 2026

CVE-2025-64163 Overview

DataEase, an open source data visualization analysis tool, contains a Server-Side Request Forgery (SSRF) vulnerability in versions 2.10.14 and below. While the vendor implemented a blacklist to filter ldap:// and ldaps:// protocols, the omission of protection for the dns:// protocol allows attackers to exploit this SSRF vulnerability. This security gap enables network-based attacks that can compromise the confidentiality and integrity of affected systems.

Critical Impact

Unauthenticated attackers can exploit the incomplete protocol blacklist to perform SSRF attacks via the unprotected dns:// protocol, potentially leading to internal network reconnaissance, data exfiltration, and further exploitation of internal services.

Affected Products

  • DataEase versions 2.10.14 and below
  • DataEase data visualization analysis tool (all installations prior to v2.10.15)

Discovery Timeline

  • 2025-11-06 - CVE-2025-64163 published to NVD
  • 2025-11-07 - Last updated in NVD database

Technical Details for CVE-2025-64163

Vulnerability Analysis

This vulnerability stems from an incomplete blacklist implementation in DataEase's JDBC connection handling. The application attempted to prevent SSRF attacks by blocking ldap:// and ldaps:// protocols, which are commonly exploited for JNDI injection attacks. However, the blacklist implementation failed to account for the dns:// protocol, creating a bypass opportunity.

The SSRF vulnerability allows attackers to manipulate server-side requests to access internal resources that should not be externally accessible. In the context of JDBC connections, this can be particularly dangerous as it may allow attackers to probe internal network infrastructure, perform DNS-based data exfiltration, or chain with other vulnerabilities for more severe attacks.

Root Cause

The root cause is an incomplete input validation blacklist for dangerous protocols in the JDBC datasource configuration. The security control was designed to prevent protocol-based attacks but failed to comprehensively enumerate all dangerous protocols. The dns://, file://, and ftp:// protocols were not included in the original blacklist, allowing attackers to bypass the security measure.

Attack Vector

The vulnerability is exploitable over the network without authentication or user interaction. An attacker can craft malicious JDBC connection strings containing the dns:// protocol to trigger outbound requests from the server. This network-based attack vector makes it particularly dangerous in environments where DataEase instances are exposed to untrusted networks.

The attack flow involves:

  1. Attacker identifies a DataEase instance running version 2.10.14 or below
  2. Attacker crafts a malicious datasource configuration containing dns:// protocol references
  3. The server processes the request and makes outbound DNS queries to attacker-controlled infrastructure
  4. Attacker can leverage this for internal network mapping or data exfiltration via DNS tunneling
java
// Security patch showing the fix in Db2.java datasource handler
// Source: https://github.com/dataease/dataease/commit/869b7fb8b10069ac6c326554bfa8f060a539ba85

             // 新增:LDAP协议及相关危险参数
             "ldap://", "ldaps://", "java.naming.factory.object", "java.naming.factory.state",
             // 其他JDBC危险参数
-            "autoDeserialize", "connectionProperties", "initSQL"
+            "autoDeserialize", "connectionProperties", "initSQL", "dns", "file", "ftp"
     );

     public String getJdbc() {

The patch extends the blacklist to include dns, file, and ftp protocols, addressing the bypass vector.

Detection Methods for CVE-2025-64163

Indicators of Compromise

  • Unusual outbound DNS queries from DataEase servers to external or suspicious domains
  • JDBC connection attempts containing dns://, file://, or ftp:// protocol strings in datasource configurations
  • Unexpected network connections from the DataEase application to internal resources
  • Log entries showing datasource creation or modification with protocol-based URL patterns

Detection Strategies

  • Monitor DataEase application logs for datasource configuration changes containing suspicious protocol handlers
  • Implement network-level monitoring for outbound DNS queries from DataEase server infrastructure
  • Deploy web application firewall (WAF) rules to detect and block SSRF attack patterns in API requests
  • Audit datasource configurations for any entries containing dns://, file://, or ftp:// strings

Monitoring Recommendations

  • Enable verbose logging on DataEase instances to capture datasource configuration activities
  • Configure DNS query logging on internal DNS servers to identify anomalous resolution requests from DataEase hosts
  • Set up alerts for outbound connections from DataEase servers to non-whitelisted destinations
  • Implement egress filtering to restrict outbound protocols from application servers

How to Mitigate CVE-2025-64163

Immediate Actions Required

  • Upgrade DataEase to version 2.10.15 or later immediately
  • Audit existing datasource configurations for any suspicious protocol handlers
  • Implement network segmentation to limit the impact of potential SSRF exploitation
  • Review and restrict outbound network access from DataEase server instances

Patch Information

DataEase has released version 2.10.15 which addresses this vulnerability by extending the protocol blacklist to include dns, file, and ftp protocols. The fix is available in the GitHub Release v2.10.15. Additional details about the vulnerability and patch can be found in the GitHub Security Advisory GHSA-8397-v66p-539m.

Workarounds

  • If immediate patching is not possible, implement network-level controls to block outbound DNS queries from DataEase servers except to trusted DNS resolvers
  • Configure web application firewall rules to block requests containing dns://, file://, or ftp:// in datasource parameters
  • Restrict DataEase datasource configuration permissions to trusted administrators only
  • Implement egress filtering at the network perimeter to prevent SSRF exploitation
bash
# Example: Block suspicious outbound protocols using iptables
# Restrict outbound connections from DataEase server (adjust IP/interface as needed)

# Block direct outbound DNS to non-corporate resolvers
iptables -A OUTPUT -p udp --dport 53 -d ! 10.0.0.53 -j DROP
iptables -A OUTPUT -p tcp --dport 53 -d ! 10.0.0.53 -j DROP

# Block outbound FTP connections from application server
iptables -A OUTPUT -p tcp --dport 21 -j DROP
iptables -A OUTPUT -p tcp --dport 20 -j DROP

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

  • Vulnerability Details
  • TypeSSRF

  • Vendor/TechDataease

  • SeverityHIGH

  • CVSS Score8.9

  • EPSS Probability0.10%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/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-918
  • Technical References
  • GitHub Release v2.10.15
  • Vendor Resources
  • GitHub Commit Details

  • GitHub Security Advisory GHSA-8397-v66p-539m
  • Related CVEs
  • CVE-2026-5417: Dataease SQLbot SSRF Vulnerability

  • CVE-2026-32939: DataEase Authentication Bypass Vulnerability

  • CVE-2026-32139: DataEase SVG Upload XSS Vulnerability

  • CVE-2026-32140: Dataease JDBC Driver RCE Vulnerability
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