Atomic Edge Proof of Concept automated generator using AI diff analysis
Published : April 17, 2026

CVE-2026-6439: VideoZen <= 1.0.1 – Authenticated (Administrator+) Stored Cross-Site Scripting via 'VideoZen available subtitles languages' Field (videozen)

CVE ID CVE-2026-6439
Plugin videozen
Severity Medium (CVSS 4.4)
CWE 79
Vulnerable Version 1.0.1
Patched Version
Disclosed April 15, 2026

Analysis Overview

Atomic Edge analysis of CVE-2026-6439 (metadata-based):
This vulnerability is an authenticated stored cross-site scripting (XSS) flaw in the VideoZen WordPress plugin version 1.0.1. The issue resides in the plugin’s configuration function, which insufficiently sanitizes user input for the ‘VideoZen available subtitles languages’ field. Attackers with administrator privileges can inject malicious scripts that execute for any user viewing the plugin’s settings page. The CVSS score of 4.4 reflects a medium severity rating, constrained by the high attack complexity and required administrator privileges.

Atomic Edge research infers the root cause from the CWE-79 classification and the description. The `videozen_conf()` function receives user input via the ‘lang’ POST parameter. The plugin stores this input directly using WordPress’s `update_option()` function without applying sanitization functions like `sanitize_text_field()`. Later, when the plugin retrieves and outputs this stored value inside a `alert(document.domain)