CVE-2025-66595 Overview
A Cross-Site Request Forgery (CSRF) vulnerability has been identified in FAST/TOOLS, an industrial automation software suite provided by Yokogawa Electric Corporation. This vulnerability allows attackers to craft malicious links that, when accessed by an authenticated user, can compromise the user's account by executing unauthorized actions on their behalf.
FAST/TOOLS is widely deployed in industrial control system (ICS) environments for monitoring and managing critical infrastructure. The CSRF vulnerability affects multiple packages within the product suite, potentially enabling attackers to manipulate SCADA/HMI operations without proper authorization.
Critical Impact
Authenticated users accessing attacker-crafted links may have their accounts compromised, potentially allowing unauthorized modifications to industrial control system configurations.
Affected Products
- FAST/TOOLS Package RVSVRN versions R9.01 to R10.04
- FAST/TOOLS Package UNSVRN versions R9.01 to R10.04
- FAST/TOOLS Package HMIWEB versions R9.01 to R10.04
- FAST/TOOLS Package FTEES versions R9.01 to R10.04
- FAST/TOOLS Package HMIMOB versions R9.01 to R10.04
Discovery Timeline
- 2026-02-09 - CVE-2025-66595 published to NVD
- 2026-02-09 - Last updated in NVD database
Technical Details for CVE-2025-66595
Vulnerability Analysis
This vulnerability is classified as Cross-Site Request Forgery (CWE-352), a web application security flaw that allows attackers to induce authenticated users to perform unintended actions. In the context of FAST/TOOLS, the application fails to properly validate whether requests originate from the legitimate user interface or from an attacker-controlled source.
The vulnerability exists in the web-based management interface components of FAST/TOOLS, specifically affecting the HMIWEB and HMIMOB packages that provide browser-based access to the industrial control system. When a user with an active authenticated session visits a malicious website or clicks on a crafted link, the attacker can force the user's browser to send state-changing requests to the FAST/TOOLS application.
Given that FAST/TOOLS is deployed in operational technology (OT) environments managing critical industrial processes, successful exploitation could have significant consequences for industrial operations.
Root Cause
The root cause of CVE-2025-66595 is the absence or improper implementation of anti-CSRF tokens in the FAST/TOOLS web interface. The application does not adequately verify that state-changing requests originate from the application's own interface rather than from external sources. This allows attackers to construct requests that the victim's browser will automatically authenticate using existing session credentials.
Web applications should implement synchronizer token patterns or other CSRF mitigation mechanisms to ensure that sensitive operations can only be performed through legitimate user interactions with the application interface.
Attack Vector
The attack requires a network-accessible vector where the attacker must craft a malicious link or embed hidden forms within a webpage. The attack sequence follows this pattern:
- The attacker identifies state-changing endpoints in FAST/TOOLS that lack CSRF protection
- The attacker creates a malicious webpage containing hidden forms or auto-submitting scripts targeting these endpoints
- The victim, who has an active authenticated session with FAST/TOOLS, is lured to visit the malicious page
- The victim's browser automatically sends the forged request to FAST/TOOLS, including the victim's session cookies
- FAST/TOOLS processes the request as if it originated from the legitimate user, executing the unauthorized action
The attacker does not need any prior privileges on the target system, but successful exploitation requires the victim to have an active authenticated session. For detailed technical information, refer to the Yokogawa Security Advisory YSAR-26-0001.
Detection Methods for CVE-2025-66595
Indicators of Compromise
- Unusual or unexpected configuration changes in FAST/TOOLS that cannot be attributed to authorized personnel
- Web server logs showing state-changing requests with referrer headers from external domains
- User session activity showing rapid successive requests originating from different source contexts
- Reports from users about actions being performed that they did not initiate
Detection Strategies
- Monitor HTTP referrer headers for state-changing requests to identify potential CSRF attacks from external sources
- Implement web application firewalls (WAF) with CSRF detection rules to block suspicious cross-origin requests
- Review FAST/TOOLS access logs for patterns indicating automated or scripted requests following user authentication
- Deploy network monitoring to detect unusual traffic patterns between user workstations and FAST/TOOLS servers
Monitoring Recommendations
- Enable detailed access logging on FAST/TOOLS web interface components to capture request metadata
- Configure alerts for configuration changes performed through the web interface outside of normal change windows
- Monitor for failed authentication attempts followed by successful state-changing operations from different origins
- Implement user behavior analytics to detect anomalous patterns in how operators interact with the system
How to Mitigate CVE-2025-66595
Immediate Actions Required
- Review the Yokogawa Security Advisory YSAR-26-0001 for vendor-specific remediation guidance
- Restrict network access to FAST/TOOLS web interfaces to trusted internal networks only
- Implement strict Content Security Policy (CSP) headers to limit the ability of external pages to interact with the application
- Educate users about the risks of clicking links from untrusted sources while authenticated to FAST/TOOLS
- Consider requiring re-authentication for sensitive operations until patches are applied
Patch Information
Yokogawa Electric Corporation has published security advisory YSAR-26-0001 addressing this vulnerability. Organizations should consult the official security advisory for specific patch availability and upgrade instructions for their affected FAST/TOOLS packages.
Contact Yokogawa technical support to obtain the appropriate security updates for your deployment of FAST/TOOLS versions R9.01 through R10.04.
Workarounds
- Implement network segmentation to isolate FAST/TOOLS web interfaces from general user browsing networks
- Deploy a reverse proxy with additional CSRF protection capabilities in front of FAST/TOOLS web interfaces
- Configure browsers used to access FAST/TOOLS to block third-party cookies and restrict cross-origin requests
- Require VPN access for remote users before allowing connections to FAST/TOOLS management interfaces
- Implement session timeout policies to reduce the window of opportunity for CSRF attacks
# Example: Configure web server headers for additional protection
# Add to reverse proxy or web server configuration
# Restrict framing to prevent clickjacking attacks
Header always set X-Frame-Options "DENY"
# Enable strict transport security
Header always set Strict-Transport-Security "max-age=31536000; includeSubDomains"
# Implement content security policy
Header always set Content-Security-Policy "default-src 'self'; frame-ancestors 'none'"
# Set referrer policy to limit information leakage
Header always set Referrer-Policy "strict-origin-when-cross-origin"
Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

