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

CVE-2026-22030: React Router CSRF Vulnerability

CVE-2026-22030 is a CSRF vulnerability in React Router and Remix that affects document POST requests to UI routes when using server-side route action handlers. This article covers technical details, affected versions, impact, and mitigation.

Updated: January 22, 2026

CVE-2026-22030 Overview

A Cross-Site Request Forgery (CSRF) vulnerability has been identified in React Router, affecting @remix-run/server-runtime versions prior to 2.17.3 and react-router versions 7.0.0 through 7.11.0. The vulnerability allows attackers to perform CSRF attacks on document POST requests to UI routes when applications use server-side route action handlers in Framework Mode or React Server Actions in unstable RSC modes.

Critical Impact

Attackers can forge requests on behalf of authenticated users to execute unauthorized actions via malicious POST requests to vulnerable React Router applications using Framework Mode or RSC modes.

Affected Products

  • @remix-run/server-runtime versions prior to 2.17.3
  • react-router versions 7.0.0 through 7.11.0
  • Applications using Framework Mode with server-side route action handlers or unstable RSC modes

Discovery Timeline

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

Technical Details for CVE-2026-22030

Vulnerability Analysis

This CSRF vulnerability (CWE-346: Origin Validation Error) affects React Router applications that utilize server-side route action handlers. The flaw stems from insufficient origin validation when processing document POST requests to UI routes. Applications running in Framework Mode or using React Server Actions in unstable RSC modes are susceptible to forged cross-origin requests.

Importantly, applications using Declarative Mode (<BrowserRouter>) or Data Mode (createBrowserRouter/<RouterProvider>) are not affected by this vulnerability. The issue specifically targets the server-side request handling mechanisms in Framework Mode configurations.

Root Cause

The vulnerability originates from improper origin validation in the request handling pipeline for server-side route actions. When processing incoming POST requests to UI routes, the affected versions fail to properly verify the request origin, allowing cross-site requests to bypass security controls. This weakness is classified as CWE-346 (Origin Validation Error), indicating that the application does not adequately validate the source of incoming requests before processing them.

Attack Vector

The attack is network-based and requires user interaction. An attacker can craft a malicious webpage containing a form or JavaScript that submits POST requests to a vulnerable React Router application. When an authenticated user visits the attacker's page, the malicious request is sent to the target application with the victim's credentials, potentially triggering unauthorized actions through the server-side route handlers.

The exploitation mechanism involves:

  1. Attacker creates a malicious page with a hidden form targeting the victim application's route action endpoint
  2. Victim user, authenticated to the target application, visits the attacker's page
  3. The malicious form auto-submits a POST request to the vulnerable route
  4. The server-side action handler processes the request without proper origin validation
  5. Unauthorized actions are executed with the victim's session context

For detailed technical information about the exploitation mechanism, refer to the GitHub Security Advisory.

Detection Methods for CVE-2026-22030

Indicators of Compromise

  • Unexpected POST requests to server-side route action endpoints from external referrers
  • Unusual form submission patterns from untrusted origins
  • Server logs showing POST requests with mismatched or missing origin headers
  • Anomalous state changes triggered by route actions without corresponding user activity

Detection Strategies

  • Monitor server access logs for POST requests to route action endpoints with external Referer headers
  • Implement origin header validation alerts in web application firewalls (WAF)
  • Review application audit logs for unexpected state modifications via route actions
  • Deploy SentinelOne Singularity to detect and correlate suspicious request patterns across your infrastructure

Monitoring Recommendations

  • Enable detailed logging for all server-side route action invocations
  • Configure alerting for POST requests with missing or mismatched Origin headers
  • Monitor for sudden increases in cross-origin requests to framework-mode routes
  • Implement session-based activity correlation to detect unauthorized action execution

How to Mitigate CVE-2026-22030

Immediate Actions Required

  • Upgrade @remix-run/server-runtime to version 2.17.3 or later
  • Upgrade react-router to version 7.12.0 or later
  • Audit applications to identify usage of Framework Mode or RSC modes with server-side route actions
  • Review recent route action logs for potential exploitation indicators

Patch Information

The vulnerability has been addressed in the following versions:

PackageFixed Version
@remix-run/server-runtime2.17.3
react-router7.12.0

For complete patch details and release notes, see the GitHub Security Advisory.

Workarounds

  • Migrate to Declarative Mode (<BrowserRouter>) or Data Mode (createBrowserRouter/<RouterProvider>) if upgrading is not immediately possible
  • Implement custom CSRF token validation in server-side route action handlers
  • Add origin validation middleware to filter requests from untrusted sources
  • Configure Content Security Policy headers to restrict form submissions to same-origin
bash
# Update packages to patched versions
npm update @remix-run/server-runtime@2.17.3
npm update react-router@7.12.0

# Or using yarn
yarn upgrade @remix-run/server-runtime@2.17.3
yarn upgrade react-router@7.12.0

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

  • Vulnerability Details
  • TypeCSRF

  • Vendor/TechReact Router

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability0.01%

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

  • CVE-2025-68470: React Router SSRF 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