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-2025-28923

CVE-2025-28923: No Disposable Email CSRF Vulnerability

CVE-2025-28923 is a Cross-Site Request Forgery flaw in No Disposable Email plugin that enables stored XSS attacks. This article covers the technical details, affected versions up to 2.5.1, and mitigation strategies.

Published: April 22, 2026

CVE-2025-28923 Overview

CVE-2025-28923 is a Cross-Site Request Forgery (CSRF) vulnerability affecting the WordPress "No Disposable Email" plugin developed by philippe. This security flaw enables attackers to chain CSRF with Stored Cross-Site Scripting (XSS), allowing malicious actors to inject persistent scripts into the WordPress site when an authenticated administrator is tricked into performing unintended actions.

The vulnerability exists in the plugin's handling of user input without proper CSRF token validation, allowing attackers to craft malicious requests that execute in the context of an authenticated administrator's session. When combined with the stored XSS component, this creates a dangerous attack chain that can lead to complete site compromise.

Critical Impact

Attackers can leverage this CSRF-to-Stored-XSS chain to inject persistent malicious scripts, potentially stealing administrator credentials, creating rogue admin accounts, or distributing malware to site visitors.

Affected Products

  • WordPress No Disposable Email plugin versions up to and including 2.5.1
  • WordPress sites using the vulnerable no-disposable-email plugin

Discovery Timeline

  • 2025-03-11 - CVE-2025-28923 published to NVD
  • 2026-04-15 - Last updated in NVD database

Technical Details for CVE-2025-28923

Vulnerability Analysis

This vulnerability combines two distinct attack techniques: Cross-Site Request Forgery (CWE-352) and Stored Cross-Site Scripting. The CSRF component allows an attacker to bypass the same-origin policy by tricking an authenticated WordPress administrator into submitting a malicious request. Because the plugin fails to implement proper CSRF token validation (nonce verification) on sensitive administrative actions, attackers can craft malicious pages or emails containing hidden forms or JavaScript that automatically submit requests to the vulnerable plugin endpoints.

The stored XSS component means that the malicious payload persists in the WordPress database and executes whenever the affected page or administrative interface is loaded. This persistence makes the vulnerability particularly dangerous, as the malicious script continues to execute for all users who access the compromised content until it is manually removed.

Root Cause

The root cause of this vulnerability is the lack of proper CSRF protection mechanisms (WordPress nonces) on plugin settings or configuration endpoints that accept and store user-controlled input. WordPress provides built-in functions like wp_nonce_field() and wp_verify_nonce() specifically to prevent CSRF attacks, but the No Disposable Email plugin fails to implement these protections on vulnerable endpoints. Additionally, input sanitization using functions like wp_kses() or esc_html() is not properly applied to user-supplied data before storing it in the database, enabling the stored XSS payload to persist.

Attack Vector

The attack vector requires social engineering to trick an authenticated administrator into visiting an attacker-controlled page or clicking a malicious link. The attack typically unfolds as follows:

  1. The attacker identifies an unprotected administrative action in the No Disposable Email plugin settings
  2. The attacker crafts a malicious HTML page containing a hidden form with XSS payload targeting the vulnerable endpoint
  3. The form is automatically submitted using JavaScript when an administrator visits the page
  4. The plugin processes the request without validating the CSRF token and stores the malicious script
  5. When any user (including administrators) views the affected settings page or output, the stored XSS payload executes

The attacker-controlled page could be hosted on any domain and delivered via phishing emails, malicious advertisements, or compromised websites. Once the stored XSS is in place, it can steal session cookies, redirect users to phishing pages, inject cryptocurrency miners, or perform administrative actions on behalf of the victim.

Detection Methods for CVE-2025-28923

Indicators of Compromise

  • Unexpected JavaScript code present in plugin settings or database entries related to No Disposable Email
  • Unauthorized administrative actions such as new user creation or plugin installations without admin knowledge
  • Browser console errors indicating blocked or suspicious script execution attempts
  • Unusual outbound requests from the WordPress admin interface to unknown external domains

Detection Strategies

  • Review WordPress database tables for unexpected <script> tags or JavaScript event handlers in plugin-related options
  • Enable WordPress debug logging and monitor for unusual plugin activity or errors
  • Implement Web Application Firewall (WAF) rules to detect and block CSRF attacks and XSS payloads
  • Use security plugins that scan for known vulnerable plugin versions and malicious code injection

Monitoring Recommendations

  • Configure server access logs to alert on suspicious POST requests to the No Disposable Email plugin endpoints
  • Deploy Content Security Policy (CSP) headers to mitigate the impact of successful XSS attacks
  • Set up file integrity monitoring to detect unauthorized changes to plugin files or WordPress options
  • Monitor for new administrator accounts or privilege escalation events that may indicate successful exploitation

How to Mitigate CVE-2025-28923

Immediate Actions Required

  • Immediately deactivate and remove the No Disposable Email plugin version 2.5.1 or earlier from all WordPress installations
  • Audit the WordPress database for any injected malicious scripts in plugin-related options tables
  • Review administrator accounts and remove any unauthorized users that may have been created through exploitation
  • Clear all browser caches and WordPress transients to ensure cached malicious content is removed

Patch Information

At the time of this advisory, the vulnerability affects all versions through 2.5.1. Administrators should check the Patchstack Vulnerability Report for updated patch availability and remediation guidance. If no patch is available, consider using an alternative plugin that provides similar disposable email blocking functionality with proper security controls.

Workarounds

  • Disable or remove the vulnerable plugin until a security patch is released by the developer
  • Implement a Web Application Firewall (WAF) with rules to block CSRF attacks and common XSS payloads
  • Restrict access to the WordPress admin interface using IP allowlisting or VPN requirements to reduce attack surface
  • Use browser extensions like NoScript or uBlock Origin to prevent automatic form submissions on administrator browsers

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

  • Vulnerability Details
  • TypeCSRF

  • Vendor/TechNo Disposable Email

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.07%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-352
  • Technical References
  • Patchstack Vulnerability Report
  • Latest CVEs
  • CVE-2026-46333: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-2586: Eclipse Glassfish RCE Vulnerability

  • CVE-2026-2587: Eclipse Glassfish RCE Vulnerability

  • CVE-2026-45255: FreeBSD bsdinstall/bsdconfig RCE Flaw
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