CVE-2026-34375: CWE-79: Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') in WWBN AVideo
WWBN AVideo is an open source video platform. In versions up to and including 26.0, the YPTWallet Stripe payment confirmation page directly echoes the `$_REQUEST['plugin']` parameter into a JavaScript block without any encoding or sanitization. The `plugin` parameter is not included in any of the framework's input filter lists defined in `security.php`, so it passes through completely raw. An attacker can inject arbitrary JavaScript by crafting a malicious URL and sending it to a victim user. The same script block also outputs the current user's username and password hash via `User::getUserName()` and `User::getUserPass()`, meaning a successful XSS exploitation can immediately exfiltrate these credentials. Commit fa0bc102493a15d79fe03f86c07ab7ca1b5b63e2 fixes the issue.
AI Analysis
Technical Summary
CVE-2026-34375 is a cross-site scripting (XSS) vulnerability classified under CWE-79 affecting WWBN's open source video platform AVideo, specifically versions up to and including 26.0. The issue exists in the YPTWallet Stripe payment confirmation page, where the `plugin` parameter from the `$_REQUEST` superglobal is directly echoed into a JavaScript context without any form of sanitization or encoding. This parameter is not included in the framework's input filtering lists defined in `security.php`, allowing it to pass through unchecked. As a result, an attacker can craft a malicious URL containing JavaScript payloads within the `plugin` parameter, which will execute in the context of the victim's browser when they visit the URL. The same vulnerable script block also outputs the current user's username and password hash via calls to `User::getUserName()` and `User::getUserPass()`. This means a successful exploitation can immediately exfiltrate these sensitive credentials to an attacker-controlled server. The vulnerability requires no privileges (PR:N), has low attack complexity (AC:L), but does require user interaction (UI:R). The scope is changed (S:C) because the vulnerability affects data beyond the vulnerable component. The confidentiality impact is high (C:H), integrity impact is low (I:L), and availability impact is none (A:N). Although no known exploits are reported in the wild yet, the vulnerability poses a significant risk due to the sensitive data exposure and ease of exploitation. A fix has been committed (commit fa0bc102493a15d79fe03f86c07ab7ca1b5b63e2) that presumably adds proper input validation or encoding to the `plugin` parameter to prevent script injection.
Potential Impact
The primary impact of this vulnerability is the potential theft of user credentials, including usernames and password hashes, which can lead to account compromise and unauthorized access to the AVideo platform. Because the vulnerability allows arbitrary JavaScript execution in the context of authenticated users, attackers can also perform session hijacking, perform actions on behalf of users, or pivot to other internal systems if the platform is integrated with other services. The exposure of password hashes increases the risk of offline password cracking, potentially compromising multiple accounts if password reuse occurs. Organizations using AVideo for video hosting and streaming services risk data breaches, loss of user trust, and potential regulatory penalties if user data is compromised. The vulnerability's exploitation requires user interaction, typically via phishing or social engineering, but the low complexity and high confidentiality impact make it a critical concern for any deployment. The lack of input filtering on the `plugin` parameter indicates a broader risk if similar patterns exist elsewhere in the codebase.
Mitigation Recommendations
Organizations should immediately upgrade AVideo to a version that includes the fix for CVE-2026-34375 or apply the patch from commit fa0bc102493a15d79fe03f86c07ab7ca1b5b63e2. In the absence of an official patch, temporary mitigations include implementing strict input validation and output encoding on the `plugin` parameter, especially when embedding user input into JavaScript contexts. Employ Content Security Policy (CSP) headers to restrict the execution of unauthorized scripts and reduce the impact of XSS attacks. Conduct a thorough code audit to identify other instances where user input is embedded without sanitization. Educate users and administrators about phishing risks, as exploitation requires user interaction. Monitor web server logs and application telemetry for suspicious URL parameters or unusual activity related to the `plugin` parameter. Finally, enforce strong password policies and consider multi-factor authentication to mitigate the impact of credential theft.
Affected Countries
United States, Germany, France, United Kingdom, Canada, Australia, Japan, South Korea, India, Brazil, Netherlands, Sweden
CVE-2026-34375: CWE-79: Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') in WWBN AVideo
Description
WWBN AVideo is an open source video platform. In versions up to and including 26.0, the YPTWallet Stripe payment confirmation page directly echoes the `$_REQUEST['plugin']` parameter into a JavaScript block without any encoding or sanitization. The `plugin` parameter is not included in any of the framework's input filter lists defined in `security.php`, so it passes through completely raw. An attacker can inject arbitrary JavaScript by crafting a malicious URL and sending it to a victim user. The same script block also outputs the current user's username and password hash via `User::getUserName()` and `User::getUserPass()`, meaning a successful XSS exploitation can immediately exfiltrate these credentials. Commit fa0bc102493a15d79fe03f86c07ab7ca1b5b63e2 fixes the issue.
AI-Powered Analysis
Machine-generated threat intelligence
Technical Analysis
CVE-2026-34375 is a cross-site scripting (XSS) vulnerability classified under CWE-79 affecting WWBN's open source video platform AVideo, specifically versions up to and including 26.0. The issue exists in the YPTWallet Stripe payment confirmation page, where the `plugin` parameter from the `$_REQUEST` superglobal is directly echoed into a JavaScript context without any form of sanitization or encoding. This parameter is not included in the framework's input filtering lists defined in `security.php`, allowing it to pass through unchecked. As a result, an attacker can craft a malicious URL containing JavaScript payloads within the `plugin` parameter, which will execute in the context of the victim's browser when they visit the URL. The same vulnerable script block also outputs the current user's username and password hash via calls to `User::getUserName()` and `User::getUserPass()`. This means a successful exploitation can immediately exfiltrate these sensitive credentials to an attacker-controlled server. The vulnerability requires no privileges (PR:N), has low attack complexity (AC:L), but does require user interaction (UI:R). The scope is changed (S:C) because the vulnerability affects data beyond the vulnerable component. The confidentiality impact is high (C:H), integrity impact is low (I:L), and availability impact is none (A:N). Although no known exploits are reported in the wild yet, the vulnerability poses a significant risk due to the sensitive data exposure and ease of exploitation. A fix has been committed (commit fa0bc102493a15d79fe03f86c07ab7ca1b5b63e2) that presumably adds proper input validation or encoding to the `plugin` parameter to prevent script injection.
Potential Impact
The primary impact of this vulnerability is the potential theft of user credentials, including usernames and password hashes, which can lead to account compromise and unauthorized access to the AVideo platform. Because the vulnerability allows arbitrary JavaScript execution in the context of authenticated users, attackers can also perform session hijacking, perform actions on behalf of users, or pivot to other internal systems if the platform is integrated with other services. The exposure of password hashes increases the risk of offline password cracking, potentially compromising multiple accounts if password reuse occurs. Organizations using AVideo for video hosting and streaming services risk data breaches, loss of user trust, and potential regulatory penalties if user data is compromised. The vulnerability's exploitation requires user interaction, typically via phishing or social engineering, but the low complexity and high confidentiality impact make it a critical concern for any deployment. The lack of input filtering on the `plugin` parameter indicates a broader risk if similar patterns exist elsewhere in the codebase.
Mitigation Recommendations
Organizations should immediately upgrade AVideo to a version that includes the fix for CVE-2026-34375 or apply the patch from commit fa0bc102493a15d79fe03f86c07ab7ca1b5b63e2. In the absence of an official patch, temporary mitigations include implementing strict input validation and output encoding on the `plugin` parameter, especially when embedding user input into JavaScript contexts. Employ Content Security Policy (CSP) headers to restrict the execution of unauthorized scripts and reduce the impact of XSS attacks. Conduct a thorough code audit to identify other instances where user input is embedded without sanitization. Educate users and administrators about phishing risks, as exploitation requires user interaction. Monitor web server logs and application telemetry for suspicious URL parameters or unusual activity related to the `plugin` parameter. Finally, enforce strong password policies and consider multi-factor authentication to mitigate the impact of credential theft.
Technical Details
- Data Version
- 5.2
- Assigner Short Name
- GitHub_M
- Date Reserved
- 2026-03-27T13:43:14.369Z
- Cvss Version
- 3.1
- State
- PUBLISHED
Threat ID: 69c6d01e3c064ed76fe28e18
Added to database: 3/27/2026, 6:44:46 PM
Last enriched: 3/27/2026, 6:59:43 PM
Last updated: 3/27/2026, 10:40:55 PM
Views: 4
Community Reviews
0 reviewsCrowdsource mitigation strategies, share intel context, and vote on the most helpful responses. Sign in to add your voice and help keep defenders ahead.
Want to contribute mitigation steps or threat intel context? Sign in or create an account to join the community discussion.
Actions
Updates to AI analysis require Pro Console access. Upgrade inside Console → Billing.
Need more coverage?
Upgrade to Pro Console for AI refresh and higher limits.
For incident response and remediation, OffSeq services can help resolve threats faster.
Latest Threats
Check if your credentials are on the dark web
Instant breach scanning across billions of leaked records. Free tier available.