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

CVE-2026-1390: Redirect Countdown Plugin CSRF Vulnerability

CVE-2026-1390 is a Cross-Site Request Forgery flaw in the Redirect Countdown WordPress plugin that allows attackers to modify settings via forged requests. This post covers technical details, affected versions, and mitigation.

Published: March 27, 2026

CVE-2026-1390 Overview

The Redirect countdown plugin for WordPress is vulnerable to Cross-Site Request Forgery (CSRF) in all versions up to, and including, 1.0. This vulnerability exists due to missing nonce validation on the countdown_settings_content() function. As a result, unauthenticated attackers can update the plugin settings—including the countdown timeout, redirect URL, and custom text—via a forged request, provided they can trick a site administrator into performing an action such as clicking on a malicious link.

Critical Impact

Attackers can manipulate plugin settings to redirect site visitors to malicious destinations or inject harmful content without authentication, requiring only social engineering of an administrator.

Affected Products

  • Redirect countdown plugin for WordPress version 1.0 and earlier

Discovery Timeline

  • 2026-03-21 - CVE CVE-2026-1390 published to NVD
  • 2026-03-23 - Last updated in NVD database

Technical Details for CVE-2026-1390

Vulnerability Analysis

This Cross-Site Request Forgery vulnerability stems from the plugin's failure to implement proper CSRF protection mechanisms in the administrative settings interface. WordPress plugins that handle configuration changes should validate request authenticity using nonces—cryptographic tokens that verify requests originate from legitimate admin sessions.

The countdown_settings_content() function processes settings updates without verifying a nonce token. This architectural flaw allows attackers to craft malicious HTML pages or links that, when visited by an authenticated administrator, silently submit forged requests to modify plugin settings.

The attack surface includes the ability to alter the countdown timeout duration, change the redirect URL (potentially directing visitors to phishing or malware sites), and modify custom display text. While the integrity impact is limited to plugin configuration, the consequences can cascade to affect all site visitors through malicious redirects.

Root Cause

The root cause is CWE-352 (Cross-Site Request Forgery)—specifically, the absence of nonce validation in the countdown_settings_content() function. WordPress provides built-in functions like wp_nonce_field() and wp_verify_nonce() to protect against CSRF attacks, but these were not implemented in the vulnerable code path. The vulnerable code can be examined at the WordPress Plugin Code repository.

Attack Vector

The attack requires network access and user interaction. An attacker must:

  1. Craft a malicious webpage or email containing a forged form submission or JavaScript that targets the plugin's settings endpoint
  2. Trick an authenticated WordPress administrator into visiting the malicious page or clicking a link
  3. The forged request executes in the context of the administrator's session, modifying plugin settings without their knowledge

The attacker does not require any prior authentication to the target WordPress site. Once successful, the modified redirect URL could send site visitors to attacker-controlled domains for phishing, malware distribution, or credential harvesting.

Detection Methods for CVE-2026-1390

Indicators of Compromise

  • Unexpected changes to Redirect countdown plugin settings, particularly the redirect URL pointing to external or suspicious domains
  • Administrator accounts showing access patterns inconsistent with normal usage, such as settings modifications without corresponding admin panel login activity
  • Web server logs containing POST requests to the plugin settings endpoint from unexpected referrer URLs
  • Site visitors reporting being redirected to unfamiliar or malicious websites

Detection Strategies

  • Monitor WordPress plugin settings for unauthorized modifications using file integrity monitoring or configuration change detection
  • Implement web application firewall rules to detect and block requests with suspicious referrer headers or missing expected parameters
  • Review admin action logs for settings changes that lack corresponding authenticated session activity
  • Deploy browser-based protections to warn administrators about potentially malicious external links

Monitoring Recommendations

  • Enable WordPress audit logging to capture all plugin configuration changes with timestamp and source IP information
  • Configure alerts for any modifications to the Redirect countdown plugin settings outside normal maintenance windows
  • Implement egress monitoring to detect if site visitors are being redirected to newly added or suspicious external domains
  • Regularly review the redirect URL configuration against an approved whitelist of legitimate destinations

How to Mitigate CVE-2026-1390

Immediate Actions Required

  • Verify current Redirect countdown plugin settings have not been tampered with, especially the redirect URL field
  • Temporarily deactivate the Redirect countdown plugin until a patched version is available if redirect functionality is not critical
  • Educate WordPress administrators to avoid clicking links in unsolicited emails or messages while logged into the admin panel
  • Implement additional browser-based CSRF protections such as SameSite cookie attributes on WordPress session cookies

Patch Information

Check for updates to the Redirect countdown plugin through the WordPress plugin repository. The vulnerability affects all versions up to and including 1.0. A patched version should implement proper nonce validation in the countdown_settings_content() function. Monitor the Wordfence Vulnerability Report for remediation guidance and the WordPress Plugin trunk code for patch availability.

Workarounds

  • Restrict WordPress admin panel access to trusted IP addresses using .htaccess rules or web server configuration to limit the attack surface
  • Use a web application firewall (WAF) with CSRF protection rules that validate request origin and referrer headers
  • Implement Content Security Policy (CSP) headers on the WordPress site to reduce the effectiveness of external page-based CSRF attacks
  • Consider using alternative redirect plugins that implement proper CSRF protections until this plugin is patched
bash
# Example: Restrict WordPress admin access by IP in .htaccess
<Files wp-admin>
    Order Deny,Allow
    Deny from all
    Allow from 192.168.1.0/24
    Allow from 10.0.0.0/8
</Files>

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.01%

  • 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 Version

  • WordPress Plugin Code Trunk

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2026-1032: WordPress Conditional Menus CSRF Vulnerability

  • CVE-2026-3572: iTracker360 WordPress Plugin CSRF Vulnerability

  • CVE-2026-4143: Neos Connector for Fakturama CSRF Flaw

  • CVE-2026-3332: WordPress Xhanch Plugin CSRF Vulnerability
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