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

CVE-2025-70973: ScadaBR Session Fixation Vulnerability

CVE-2025-70973 is a session fixation flaw in ScadaBR 1.12.4 that enables attackers to hijack authenticated sessions by exploiting unregenerated session identifiers. This article covers technical details, impact, and mitigation.

Published: March 13, 2026

CVE-2025-70973 Overview

A session fixation vulnerability exists in ScadaBR 1.12.4, an open-source SCADA (Supervisory Control and Data Acquisition) system. The application assigns a JSESSIONID session cookie to unauthenticated users and fails to regenerate the session identifier after successful authentication. This design flaw allows an attacker who knows or controls a session ID to hijack an authenticated session once a victim logs in using that same session.

Critical Impact

Attackers can hijack authenticated sessions in ScadaBR SCADA systems, potentially gaining unauthorized access to industrial control system interfaces and sensitive operational data.

Affected Products

  • ScadaBR 1.12.4

Discovery Timeline

  • 2026-03-09 - CVE CVE-2025-70973 published to NVD
  • 2026-03-11 - Last updated in NVD database

Technical Details for CVE-2025-70973

Vulnerability Analysis

This vulnerability is classified under CWE-384 (Session Fixation). The core issue lies in ScadaBR's session management implementation, which violates secure session handling best practices. When a user first accesses the application, a JSESSIONID cookie is assigned to establish a session. However, when that same user subsequently authenticates, the application does not invalidate the existing session and create a new one. Instead, the pre-authentication session simply becomes elevated to an authenticated state.

This behavior creates an exploitable window where an attacker can obtain or set a session identifier before authentication occurs, then wait for the victim to authenticate using that session. The network-based attack vector requires high complexity to execute successfully, as the attacker must position themselves to influence or capture the victim's session ID before login.

Root Cause

The root cause is the absence of session regeneration logic in ScadaBR's authentication workflow. Proper session management requires that web applications invalidate the current session and issue a new session identifier immediately after successful authentication. ScadaBR 1.12.4 skips this critical step, allowing pre-authentication sessions to persist and inherit authenticated privileges.

Attack Vector

An attacker can exploit this vulnerability through several techniques:

  1. Session ID Injection: If the application accepts session identifiers via URL parameters or can be influenced through cross-site attacks, the attacker can force a victim to use a known session ID before authentication.

  2. Network Interception: In scenarios where the attacker has network visibility (e.g., shared Wi-Fi, compromised network segment), they can capture the JSESSIONID cookie assigned to an unauthenticated user's session.

  3. Phishing/Social Engineering: The attacker crafts a link containing a fixed session ID and tricks the victim into using it to access ScadaBR. Once the victim authenticates, the attacker uses the same session ID to access the authenticated session.

The attack requires the attacker to either control or observe the victim's session before authentication occurs, then use that same session ID after the victim logs in to gain access to the authenticated session. This provides the attacker with whatever access level the victim possesses within the ScadaBR system.

Detection Methods for CVE-2025-70973

Indicators of Compromise

  • Multiple authentication events from different IP addresses using the same JSESSIONID value
  • Session cookies being used from geographically disparate locations within short time frames
  • Concurrent active sessions for a single user account where one session lacks initial authentication logs

Detection Strategies

  • Monitor authentication logs for session IDs that were assigned before authentication but continue to be used after successful login from different source IPs
  • Implement alerting for session tokens observed in pre-authentication traffic that subsequently appear in authenticated requests from different clients
  • Review web server access logs for patterns indicating session ID sharing or reuse across multiple client fingerprints

Monitoring Recommendations

  • Enable detailed session tracking and logging for all ScadaBR authentication events
  • Deploy network monitoring to detect anomalous session behavior patterns
  • Consider implementing user behavior analytics to identify session hijacking attempts

How to Mitigate CVE-2025-70973

Immediate Actions Required

  • Restrict network access to ScadaBR instances to trusted networks only using firewall rules or network segmentation
  • Implement additional authentication factors where possible to reduce the impact of session hijacking
  • Monitor active sessions closely and consider implementing shorter session timeouts
  • Review access logs for signs of exploitation

Patch Information

No vendor patch information is currently available for this vulnerability. Users should monitor the GitHub SCADA Project README for updates and security advisories.

Workarounds

  • Deploy ScadaBR behind a reverse proxy that can be configured to regenerate session identifiers after authentication
  • Implement IP-binding for sessions at the network or application gateway level to prevent session use from different IP addresses
  • Use HTTPS exclusively to prevent session ID interception via network eavesdropping
  • Consider implementing custom authentication wrappers that invalidate and regenerate sessions post-authentication

Since no verified code examples are available for this vulnerability, administrators should consult the external references for detailed technical information. For session fixation mitigation at the application server level, Java servlet containers like Tomcat can be configured to change session IDs upon authentication by enabling changeSessionIdOnAuthentication in the container's security configuration. However, this requires access to the underlying application server configuration and may not be sufficient if the application itself manages sessions differently.

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechScadabr

  • SeverityMEDIUM

  • CVSS Score4.8

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:N
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-384
  • Technical References
  • GitHub SCADA Project README
  • Latest CVEs
  • CVE-2025-70797: LimeSurvey XSS Vulnerability

  • CVE-2025-30650: Juniper Junos OS Auth Bypass Vulnerability

  • CVE-2026-35471: Goshs Path Traversal Vulnerability

  • CVE-2026-35393: Goshs Path Traversal 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