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-2025-64386

CVE-2025-64386: JWT Token Authentication Bypass Flaw

CVE-2025-64386 is an authentication bypass flaw in JWT token handling that allows attackers to hijack active sessions and modify security parameters. This article covers the technical details, impact, and mitigation.

Published: May 11, 2026

CVE-2025-64386 Overview

CVE-2025-64386 is a session management vulnerability affecting Circutor industrial equipment. The device issues a JSON Web Token (JWT) for each web session, but the server fails to invalidate previously issued tokens during an active session. An attacker who obtains an old JWT can replay it against the web server and gain access to the active session without alerting the legitimate user. Once authenticated through the stolen token, the attacker can modify security parameters, change access settings, or fully hijack the session. The flaw is tracked under CWE-613: Insufficient Session Expiration.

Critical Impact

An attacker holding a captured JWT can reuse it during an active session to take over administrative functions on the affected industrial gateway, with no notification to the legitimate user.

Affected Products

  • Circutor industrial IoT gateway and conversion equipment (see Circutor Product Information)
  • Web management interface issuing JWT-based session tokens
  • Deployments exposing the device web server to reachable networks

Discovery Timeline

  • 2025-10-31 - CVE-2025-64386 published to NVD
  • 2026-04-15 - Last updated in NVD database

Technical Details for CVE-2025-64386

Vulnerability Analysis

The affected equipment authenticates web users by issuing a JWT for each login. The server treats any signature-valid JWT as authoritative for session state. It does not bind tokens to a single active session, does not track issued token identifiers (jti), and does not revoke prior tokens when a new session begins. As a result, an attacker possessing an older JWT for the same account can reuse it in parallel with the legitimate user.

The attacker gains the same privileges as the legitimate user. This includes changing security settings, modifying access control parameters, and reading or altering device telemetry. The legitimate session remains active and receives no indication of the parallel access. The vulnerability requires network reach to the device web interface and user interaction to capture or surface the token.

Root Cause

The root cause is insufficient session expiration [CWE-613]. The web server validates JWTs solely by signature and expiry claim. It maintains no server-side session registry, so revoking, rotating, or invalidating a token on re-login is not possible. Stateless JWT validation without a deny list or token binding leaves replay as a viable attack path.

Attack Vector

An attacker first obtains a valid JWT through one of several routes. These include sniffing unencrypted or weakly protected HTTP traffic, recovering tokens from browser storage, or capturing tokens through a phishing or man-in-the-middle scenario. The attacker then submits the captured token in the Authorization header to authenticated endpoints on the device web server. The server accepts the token as long as the signature is valid and the expiration has not passed, granting full session privileges. Detailed analysis is available in the Hackrtu Blog on 0-Day Analysis.

Detection Methods for CVE-2025-64386

Indicators of Compromise

  • Concurrent authenticated requests carrying the same JWT jti or iat value from different source IP addresses
  • Configuration or access-control changes on the device that do not correlate with the legitimate user's activity window
  • JWT reuse across sessions after a new login event was recorded on the device
  • Unexpected modifications to security parameters in the device audit log

Detection Strategies

  • Inspect web server access logs for repeated use of identical JWT identifiers across distinct client fingerprints or source addresses
  • Correlate device administrative actions with originating IP, user-agent, and login timestamps to surface deviations
  • Alert on changes to authentication, role assignment, or network configuration outside maintenance windows

Monitoring Recommendations

  • Forward device web server and audit logs to a centralized log platform for cross-session correlation
  • Monitor north-south traffic to the device management interface for plaintext token exposure or unexpected client geographies
  • Track failed and successful authentication events and compare them against active session counts to detect anomalies

How to Mitigate CVE-2025-64386

Immediate Actions Required

  • Restrict network access to the device web interface using firewall rules or a management VLAN, allowing only trusted administrative hosts
  • Force TLS for all management traffic and disable any HTTP fallback to prevent token capture in transit
  • Rotate credentials on affected accounts and invalidate any long-lived tokens currently in use
  • Review device audit logs for unauthorized configuration changes since deployment

Patch Information

No vendor patch reference is published in the available data. Operators should contact Circutor and consult the Hackrtu Blog on 0-Day Analysis and Thales Group Security Overview for updates. Apply firmware updates as soon as the vendor releases a fix.

Workarounds

  • Place the device behind a reverse proxy that enforces short token lifetimes and rejects reused token identifiers
  • Require VPN access to reach the management interface, eliminating direct network exposure
  • Reduce session duration through any available device configuration and instruct operators to log out promptly after administrative tasks
  • Segment the industrial network so that only dedicated engineering workstations can reach the device
bash
# Example firewall rule restricting management access to a single jump host
iptables -A INPUT -p tcp --dport 443 -s 10.10.20.5 -j ACCEPT
iptables -A INPUT -p tcp --dport 443 -j DROP

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechN/A

  • SeverityHIGH

  • CVSS Score7.7

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:H/AT:N/PR:N/UI:P/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
  • ConfidentialityHigh
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-613
  • Technical References
  • Thales Group Security Overview

  • Circutor Product Information

  • Hackrtu Blog on 0-Day Analysis
  • Latest CVEs
  • CVE-2026-8468: Elixir Plug Library DoS Vulnerability

  • CVE-2026-8295: simdjson Information Disclosure Vulnerability

  • CVE-2025-68421: Comarch ERP Optima Auth Bypass Vulnerability

  • CVE-2025-68420: Comarch ERP Optima Privilege Escalation
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