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-2026-7562

CVE-2026-7562: WP-Redirection Plugin CSRF Vulnerability

CVE-2026-7562 is a Cross-Site Request Forgery flaw in the WP-Redirection plugin for WordPress that allows attackers to manipulate URL redirection rules. This post covers technical details, affected versions, and mitigation.

Published: May 18, 2026

CVE-2026-7562 Overview

CVE-2026-7562 is a Cross-Site Request Forgery (CSRF) vulnerability affecting the WP-Redirection plugin for WordPress in all versions up to and including 1.0.3. The plugin's admin settings form omits a nonce field, and the displayWPRedirectionManagementPage() function processes POST requests without calling check_admin_referer() or wp_verify_nonce(). Unauthenticated attackers can craft a malicious link that, when clicked by a logged-in administrator, adds, modifies, or deletes URL redirection records in the plugin's database table. The flaw maps to CWE-352: Cross-Site Request Forgery.

Critical Impact

An attacker who lures an authenticated WordPress administrator to a crafted page can silently manipulate redirection rules, enabling traffic hijacking to attacker-controlled destinations and integrity loss across the site's redirect logic.

Affected Products

  • WP-Redirection plugin for WordPress, versions up to and including 1.0.3
  • WordPress sites with an administrator account active during the attacker-controlled request
  • Any deployment using the trunk branch of wp-redirection referenced in the WordPress plugin code repository

Discovery Timeline

  • 2026-05-12 - CVE-2026-7562 published to NVD
  • 2026-05-12 - Last updated in NVD database

Technical Details for CVE-2026-7562

Vulnerability Analysis

The WP-Redirection plugin manages URL redirection rules through an administrative settings page rendered by displayWPRedirectionManagementPage(). This handler accepts POST submissions for adding, editing, and deleting redirection entries, but it does not validate the origin of the request. Without a server-side anti-CSRF check, the browser of an authenticated administrator becomes a confused deputy that submits attacker-supplied form data using valid session cookies. The result is silent state-changing operations against the plugin's database table.

Root Cause

The root cause is the absence of a WordPress nonce in both the rendered form and the request handler. The settings form does not emit a nonce field via wp_nonce_field(), and the receiving function does not call check_admin_referer() or wp_verify_nonce() before mutating data. The plugin therefore treats any authenticated POST request as legitimate, regardless of whether the request originated from the plugin's own admin UI. The relevant logic is referenced at line 219 and line 39 of wp-redirection.php in the tagged 1.0.3 source.

Attack Vector

Exploitation requires network access to deliver a crafted page or link and user interaction from a logged-in WordPress administrator. The attacker hosts an HTML page containing an auto-submitting form, an image tag, or JavaScript that issues a POST request to the WP-Redirection management endpoint of the target site. When the administrator visits the page in an authenticated browser session, the browser attaches the WordPress session cookies, and the server processes the redirection create, edit, or delete action. Authentication on the attacker side is not required; only the victim's active admin session is needed.

No verified exploit code is publicly available. Technical details are documented in the Wordfence vulnerability report.

Detection Methods for CVE-2026-7562

Indicators of Compromise

  • Unexpected entries in the WP-Redirection plugin's database table, including unfamiliar source URLs or destination targets pointing to external domains.
  • WordPress access logs showing POST requests to the WP-Redirection admin page with Referer headers from third-party domains or no Referer header at all.
  • Visitor reports of unexpected redirects from legitimate site URLs to unknown external locations.

Detection Strategies

  • Audit the plugin's redirection table for recently created or modified rules and compare them against an approved baseline maintained by site administrators.
  • Inspect web server and WordPress logs for state-changing POST requests to wp-admin pages that lack a same-origin Referer header.
  • Correlate administrator browsing activity with redirection table changes to identify mutations that did not originate from a legitimate admin workflow.

Monitoring Recommendations

  • Enable WordPress audit logging to capture all changes performed by administrator accounts, including plugin settings updates.
  • Monitor outbound traffic from site visitors for redirects to suspicious or newly registered domains.
  • Alert on file integrity changes to wp-redirection.php and on database writes to the plugin's redirection table outside change windows.

How to Mitigate CVE-2026-7562

Immediate Actions Required

  • Deactivate the WP-Redirection plugin on all affected WordPress sites until a fixed version is installed.
  • Review the plugin's redirection rule table and remove any entries that cannot be attributed to a legitimate administrator action.
  • Require administrators to log out of WordPress when not actively managing the site, reducing the window for CSRF exploitation.

Patch Information

No fixed version is identified in the available advisory data. Monitor the WordPress plugin repository for WP-Redirection and the Wordfence vulnerability report for a release that introduces nonce generation in the settings form and check_admin_referer() or wp_verify_nonce() validation in displayWPRedirectionManagementPage().

Workarounds

  • Replace the plugin with an actively maintained redirection plugin that implements WordPress nonces on all state-changing operations.
  • Restrict access to wp-admin using IP allow-listing or a web application firewall rule that blocks cross-origin POST requests to the WP-Redirection management endpoint.
  • Train administrators to avoid clicking untrusted links while authenticated to WordPress and to use a dedicated browser profile for site administration.
bash
# Example WAF rule concept: block cross-origin POSTs to the WP-Redirection admin page
# Pseudocode for an ModSecurity-style rule
SecRule REQUEST_METHOD "@streq POST" \
  "chain,deny,status:403,msg:'Block cross-origin POST to WP-Redirection admin (CVE-2026-7562)'"
SecRule REQUEST_URI "@contains wp-admin" "chain"
SecRule ARGS:page "@streq wp-redirection" "chain"
SecRule REQUEST_HEADERS:Referer "!@beginsWith https://your-site.example/"

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

  • Vulnerability Details
  • TypeCSRF

  • Vendor/TechWordpress

  • SeverityMEDIUM

  • CVSS Score4.3

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityLow
  • AvailabilityNone
  • CWE References
  • CWE-352
  • Technical References
  • WordPress Plugin Code Reference

  • WordPress Plugin Code Reference

  • WordPress Plugin Code Reference

  • WordPress Plugin Code Reference

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2026-5365: LatePoint WordPress Plugin CSRF Vulnerability

  • CVE-2022-50955: WordPress Curtain Plugin CSRF Vulnerability

  • CVE-2026-6710: Skysa Text Ticker App CSRF Vulnerability

  • CVE-2026-7561: WordPress Redirection Plugin CSRF Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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