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

CVE-2025-68470: React Router SSRF Vulnerability

CVE-2025-68470 is a server-side request forgery flaw in React Router that enables attackers to redirect applications to external URLs. This article covers the technical details, affected versions, impact, and mitigation.

Updated: January 22, 2026

CVE-2025-68470 Overview

React Router, a widely-used routing library for React applications, contains an open redirect vulnerability (CWE-601) that allows attackers to craft malicious paths that redirect users to external URLs. When a React Router application navigates to an attacker-supplied path via navigate(), <Link>, or redirect(), the application can inadvertently perform navigation to an external URL controlled by the attacker.

Critical Impact

Applications passing untrusted user input to React Router navigation functions are vulnerable to open redirect attacks, potentially leading to phishing, credential theft, or malicious content delivery.

Affected Products

  • React Router versions 6.0.0 through 6.30.1
  • React Router versions 7.0.0 through 7.9.5

Discovery Timeline

  • 2026-01-10 - CVE CVE-2025-68470 published to NVD
  • 2026-01-13 - Last updated in NVD database

Technical Details for CVE-2025-68470

Vulnerability Analysis

This vulnerability is classified as an Open Redirect (CWE-601), which occurs when an application accepts user-controlled input that specifies a link to an external site, and uses that link in a redirect. In the case of React Router, the routing logic fails to properly validate paths passed to navigation functions, allowing specially crafted paths to be interpreted as external URLs.

The vulnerability affects applications that pass untrusted content into navigation paths. This is particularly concerning in scenarios where query parameters, form inputs, or other user-controlled data is used to determine navigation destinations. An attacker can exploit this to redirect users away from the legitimate application to malicious sites for phishing attacks or malware distribution.

Root Cause

The root cause lies in insufficient validation of navigation path inputs within React Router's navigation handling. The routing library does not adequately distinguish between internal application paths and external URLs when processing navigation requests. This allows specially crafted path strings to bypass intended routing restrictions and trigger external navigation.

Attack Vector

The attack requires network access and an authenticated user session. An attacker can craft a malicious URL containing a specially formatted path that, when processed by React Router's navigate(), <Link>, or redirect() functions, causes the application to redirect to an attacker-controlled external domain.

The exploitation scenario typically involves:

  1. Identifying a React Router application that passes user input to navigation functions
  2. Crafting a malicious path that exploits the URL parsing inconsistency
  3. Delivering the malicious link to victims (via phishing, social engineering, or injected content)
  4. When victims click the link, the React Router application redirects them to the attacker's site

For detailed technical analysis and proof-of-concept information, refer to the GitHub Security Advisory.

Detection Methods for CVE-2025-68470

Indicators of Compromise

  • Unusual navigation patterns in client-side logs showing redirects to external domains
  • User reports of unexpected redirects when using the application
  • Web server access logs showing referrer headers from your application to suspicious external sites
  • Application monitoring alerts for navigation to non-whitelisted domains

Detection Strategies

  • Implement Content Security Policy (CSP) headers with navigate-to directive to restrict allowed navigation targets
  • Monitor client-side error logs for navigation to unexpected external URLs
  • Review application code for instances where user input is passed directly to navigate(), <Link>, or redirect()
  • Use static analysis tools to identify untrusted data flow to React Router navigation functions

Monitoring Recommendations

  • Configure web application firewalls to detect and log potential open redirect attack patterns
  • Implement client-side navigation monitoring to flag redirects to external domains
  • Set up alerting for sudden increases in external navigation events from your application
  • Review and audit navigation target whitelists regularly

How to Mitigate CVE-2025-68470

Immediate Actions Required

  • Upgrade React Router to version 6.30.2 or 7.9.6 or later immediately
  • Audit all code paths where user input is used in navigation functions
  • Implement input validation for any navigation paths derived from user input
  • Consider implementing a navigation whitelist for allowed redirect destinations

Patch Information

The vulnerability has been patched in React Router versions 6.30.2 and 7.9.6. Organizations should update their dependencies to these versions or later. The fix addresses the URL parsing logic to properly distinguish between internal paths and external URLs.

For additional information, see the GitHub Security Advisory.

Workarounds

  • Validate all navigation paths against a whitelist of allowed internal routes before passing to navigation functions
  • Implement server-side redirect validation as a defense-in-depth measure
  • Use absolute paths with explicit origin checking when handling dynamic navigation targets
  • Consider implementing a centralized navigation utility that validates all paths before routing
bash
# Example: Update React Router to patched version
npm update react-router-dom@^6.30.2
# or for v7
npm update react-router-dom@^7.9.6

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

  • Vulnerability Details
  • TypeSSRF

  • Vendor/TechReact Router

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-601
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-22029: React Router XSS Vulnerability

  • CVE-2026-22030: React Router CSRF Vulnerability

  • CVE-2025-59057: React Router XSS Vulnerability

  • CVE-2026-21884: React Router ScrollRestoration XSS Flaw
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