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

CVE-2026-27194: D-Tale RCE Vulnerability

CVE-2026-27194 is a remote code execution vulnerability in D-Tale, a pandas data structure visualizer, affecting versions prior to 3.20.0. Attackers can exploit the /save-column-filter endpoint to run malicious code on publicly hosted servers. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: February 27, 2026

CVE-2026-27194 Overview

D-Tale is a visualizer for pandas data structures that provides an interactive web interface for data exploration. A critical Remote Code Execution (RCE) vulnerability exists in versions prior to 3.20.0 through the /save-column-filter endpoint. Attackers can exploit improper input validation in the query handling mechanism to execute arbitrary code on servers hosting publicly accessible D-Tale instances.

Critical Impact

Unauthenticated attackers can achieve remote code execution on D-Tale servers by injecting malicious code through the column filter functionality, potentially leading to complete server compromise.

Affected Products

  • D-Tale versions prior to 3.20.0
  • Man Group D-Tale deployments with public network exposure
  • Applications integrating vulnerable D-Tale components

Discovery Timeline

  • 2026-02-21 - CVE CVE-2026-27194 published to NVD
  • 2026-02-23 - Last updated in NVD database

Technical Details for CVE-2026-27194

Vulnerability Analysis

This vulnerability stems from a Code Injection flaw (CWE-74) in D-Tale's query handling mechanism. The /save-column-filter endpoint accepts user-supplied filter expressions that are processed by pandas' DataFrame.query() method without adequate sanitization. Since DataFrame.query() can evaluate Python expressions, attackers can craft malicious payloads containing dangerous function calls that execute arbitrary code on the server.

The attack surface is particularly concerning for D-Tale instances exposed to the network without authentication. An attacker can send a specially crafted HTTP request to the vulnerable endpoint, injecting Python code that bypasses the data filtering context and achieves arbitrary code execution.

Root Cause

The vulnerability originates from insufficient input validation before passing user-controlled strings to pandas' DataFrame.query() method. The query function in D-Tale processes filter expressions without checking for dangerous Python constructs such as __import__, exec(), eval(), open(), or module access patterns like os. and subprocess. This allows attackers to escape the intended query context and execute arbitrary Python code with the privileges of the D-Tale server process.

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker can target publicly accessible D-Tale instances by sending HTTP requests to the /save-column-filter endpoint with malicious payloads embedded in the filter expression. Common exploitation techniques include:

  • Using __import__('os').system() to execute system commands
  • Leveraging eval() or exec() for arbitrary code execution
  • Accessing sensitive data through open() calls
  • Establishing reverse shells via subprocess module access
python
+import re
+
 import pandas as pd
 
 import dtale.global_state as global_state
 
 from dtale.pandas_util import check_pandas_version, is_pandas3
 from dtale.utils import format_data, get_bool_arg
 
+# Patterns that could enable code execution via pandas.DataFrame.query()
+_DANGEROUS_QUERY_PATTERNS = re.compile(
+    r"(__\w+__"  # dunder attributes (__import__, __class__, etc.)
+    r"|(?<!\w)import\s*\("  # import() calls
+    r"|(?<!\w)exec\s*\("  # exec() calls
+    r"|(?<!\w)eval\s*\("  # eval() calls
+    r"|(?<!\w)compile\s*\("  # compile() calls
+    r"|(?<!\w)open\s*\("  # open() calls
+    r"|(?<!\w)getattr\s*\("  # getattr() calls
+    r"|(?<!\w)setattr\s*\("  # setattr() calls
+    r"|(?<!\w)delattr\s*\("  # delattr() calls
+    r"|(?<!\w)globals\s*\("  # globals() calls
+    r"|(?<!\w)locals\s*\("  # locals() calls
+    r"|(?<!\w)vars\s*\("  # vars() calls
+    r"|(?<!\w)dir\s*\("  # dir() calls
+    r"|(?<!\w)os\."  # os module access
+    r"|(?<!\w)sys\."  # sys module access
+    r"|(?<!\w)subprocess"  # subprocess module access
+    r"|(?<!\w)shutil\."  # shutil module access
+    r")",
+    re.IGNORECASE,

Source: GitHub Commit Reference

Detection Methods for CVE-2026-27194

Indicators of Compromise

  • Suspicious HTTP POST requests to /save-column-filter endpoint containing Python code patterns
  • Web server logs showing requests with dunder attributes (__import__, __class__, __builtins__)
  • Unusual child processes spawned by the D-Tale/Python application process
  • Network connections initiated from the D-Tale server to unexpected external destinations

Detection Strategies

  • Implement web application firewall (WAF) rules to detect and block requests containing dangerous Python patterns such as __import__, exec(, eval(, and os.system
  • Monitor application logs for filter expressions containing suspicious function calls or module references
  • Deploy endpoint detection to identify anomalous process execution chains originating from Python web applications
  • Enable audit logging on the D-Tale application to track all filter operations

Monitoring Recommendations

  • Configure alerting on HTTP requests to D-Tale endpoints containing code injection patterns
  • Monitor for new network connections and file system modifications from the D-Tale server process
  • Implement behavioral analysis to detect exploitation attempts through abnormal query patterns
  • Review access logs regularly for repeated requests to the /save-column-filter endpoint from external sources

How to Mitigate CVE-2026-27194

Immediate Actions Required

  • Upgrade D-Tale to version 3.20.0 or later immediately
  • Restrict network access to D-Tale instances to trusted networks only
  • Implement authentication in front of any publicly accessible D-Tale deployments
  • Review server logs for evidence of exploitation attempts

Patch Information

The vulnerability has been fixed in D-Tale version 3.20.0. The patch implements regex-based input validation in dtale/query.py that blocks dangerous Python patterns before they reach the DataFrame.query() function. The fix specifically detects and rejects filter expressions containing dunder attributes, dangerous built-in functions (exec, eval, compile, open), attribute manipulation functions, and dangerous module references (os, sys, subprocess, shutil).

Review the security advisory and security patch for complete details.

Workarounds

  • Place D-Tale behind a reverse proxy with authentication requirements
  • Implement network segmentation to prevent external access to D-Tale instances
  • Use a WAF to filter malicious patterns in requests to the /save-column-filter endpoint
  • Run D-Tale in a containerized environment with restricted privileges and capabilities
bash
# Configuration example: Restrict D-Tale to localhost only
# Start D-Tale bound to localhost interface
dtale --host 127.0.0.1 --port 40000

# Use a reverse proxy (nginx example) with basic auth
# location /dtale/ {
#     auth_basic "Restricted Access";
#     auth_basic_user_file /etc/nginx/.htpasswd;
#     proxy_pass http://127.0.0.1:40000/;
# }

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechD Tale

  • SeverityHIGH

  • CVSS Score8.1

  • EPSS Probability0.29%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N/E:U/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-74
  • Vendor Resources
  • GitHub Commit Reference

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-35052: D-Tale 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