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-2026-25632

CVE-2026-25632: EPyT-Flow REST API RCE Vulnerability

CVE-2026-25632 is a remote code execution flaw in EPyT-Flow's REST API that allows attackers to execute OS commands through malicious JSON. This post explains its impact, affected versions, and mitigation steps.

Published: February 13, 2026

CVE-2026-25632 Overview

CVE-2026-25632 is a critical insecure deserialization vulnerability in EPyT-Flow, a Python package designed for the easy generation of hydraulic and water quality scenario data of water distribution networks. Prior to version 0.16.1, EPyT-Flow's REST API parses attacker-controlled JSON request bodies using a custom deserializer (my_load_from_json) that supports a type field. When type is present, the deserializer dynamically imports an attacker-specified module/class and instantiates it with attacker-supplied arguments.

This design flaw allows invoking dangerous classes such as subprocess.Popen, which can lead to OS command execution during JSON parsing. This vulnerability also affects the loading of JSON files through the same deserialization mechanism.

Critical Impact

Unauthenticated remote attackers can achieve arbitrary command execution on systems running vulnerable EPyT-Flow instances by sending maliciously crafted JSON payloads to the REST API or by manipulating JSON files processed by the application.

Affected Products

  • EPyT-Flow versions prior to 0.16.1
  • Systems exposing EPyT-Flow REST API endpoints
  • Applications processing untrusted JSON files through EPyT-Flow's deserialization functions

Discovery Timeline

  • February 6, 2026 - CVE-2026-25632 published to NVD
  • February 6, 2026 - Last updated in NVD database

Technical Details for CVE-2026-25632

Vulnerability Analysis

This vulnerability falls under CWE-502 (Deserialization of Untrusted Data), representing one of the most dangerous vulnerability classes in web applications. The custom JSON deserializer in EPyT-Flow implements a dynamic class instantiation feature that was designed for flexibility but inadvertently created a severe security gap.

The my_load_from_json function processes JSON input and checks for the presence of a type field. When found, it uses Python's importlib module to dynamically import the specified module and class, then instantiates the object with provided arguments. This pattern is inherently dangerous because it allows attackers to specify any Python class available in the runtime environment, including system classes designed for process execution.

The attack surface includes both the REST API endpoints that accept JSON input and any functionality that loads JSON files from disk or external sources, significantly expanding potential exploitation scenarios in water distribution network management systems.

Root Cause

The root cause is the use of dynamic module importing and class instantiation based on user-controlled input in the my_load_from_json deserialization function. The lack of allowlisting or sanitization of the type field permits attackers to specify arbitrary Python classes, including dangerous ones like subprocess.Popen that can execute system commands.

Attack Vector

An attacker can exploit this vulnerability by sending a specially crafted JSON payload to the EPyT-Flow REST API. The payload includes a type field specifying a dangerous class (e.g., subprocess.Popen) along with the necessary arguments to execute arbitrary commands. The deserialization process automatically imports the specified module and instantiates the class, leading to immediate command execution.

The attack requires network access to the REST API endpoint and does not require any authentication, making it exploitable by unauthenticated remote attackers.

python
 from abc import abstractmethod, ABC
 from io import BufferedIOBase
 import pathlib
-import importlib
 import json
 import gzip
 import umsgpack

Source: GitHub Commit Details

The security patch removes the importlib import entirely, indicating that the dynamic module loading functionality was eliminated from the deserialization logic as the fix for this vulnerability.

Detection Methods for CVE-2026-25632

Indicators of Compromise

  • Unusual JSON payloads containing type fields with module paths like subprocess.Popen, os.system, or other dangerous class references in API logs
  • Unexpected child processes spawned by the EPyT-Flow application or its parent Python process
  • Network connections or file system modifications originating from the EPyT-Flow service that are inconsistent with normal water network simulation operations
  • Log entries showing JSON parsing errors with unusual module/class names

Detection Strategies

  • Implement application-layer firewall rules to inspect JSON payloads for suspicious type field values containing dangerous module names
  • Deploy runtime application self-protection (RASP) solutions to detect and block dynamic class instantiation attempts with dangerous classes
  • Monitor for command injection patterns in web application firewall (WAF) logs targeting EPyT-Flow endpoints
  • Use behavioral analysis to detect process execution anomalies from Python-based services

Monitoring Recommendations

  • Enable verbose logging on EPyT-Flow REST API endpoints to capture full request bodies for forensic analysis
  • Set up alerts for process creation events originating from the EPyT-Flow application service account
  • Monitor network egress from systems running EPyT-Flow for unexpected outbound connections that may indicate post-exploitation activity
  • Implement file integrity monitoring on systems processing JSON files through EPyT-Flow

How to Mitigate CVE-2026-25632

Immediate Actions Required

  • Upgrade EPyT-Flow to version 0.16.1 or later immediately, as this version contains the security fix
  • If immediate upgrade is not possible, restrict network access to EPyT-Flow REST API endpoints using firewall rules
  • Audit all JSON files processed by EPyT-Flow deployments for suspicious type field entries
  • Review application logs for evidence of prior exploitation attempts

Patch Information

The vulnerability has been fixed in EPyT-Flow version 0.16.1. The patch removes the dynamic import functionality from the JSON deserialization process, eliminating the ability for attackers to specify arbitrary classes for instantiation. The security fix is documented in the GitHub Security Advisory GHSA-74vm-8frp-7w68 and the corresponding release notes for version 0.16.1.

Workarounds

  • Deploy a reverse proxy or WAF in front of EPyT-Flow REST API endpoints to filter JSON payloads containing suspicious type fields
  • Implement network segmentation to limit access to EPyT-Flow services to trusted internal networks only
  • Disable REST API functionality if not required for operations until the upgrade can be completed
  • Validate all JSON files from external sources before processing through EPyT-Flow
bash
# Example: Upgrade EPyT-Flow to patched version
pip install --upgrade epyt-flow>=0.16.1

# Verify installed version
pip show epyt-flow | grep Version

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechEpyt Flow

  • SeverityCRITICAL

  • CVSS Score10.0

  • EPSS Probability0.14%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-502
  • Technical References
  • GitHub Commit Details

  • GitHub Release Version 0.16.1

  • GitHub Security Advisory GHSA-74vm-8frp-7w68
  • Latest CVEs
  • CVE-2026-35467: Browser API Key Information Disclosure

  • CVE-2026-35466: cveInterface.js XSS Vulnerability

  • CVE-2026-30252: ZenShare Suite XSS Vulnerability

  • CVE-2026-30251: ZenShare Suite v17.0 XSS 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