CVE-2026-49279
PHP 脆弱性の分析と軽減

概要

CVE-2026-49279 is a stored Cross-Site Scripting (XSS) vulnerability in WWBN AVideo's WebSocket messaging system, specifically a bypass of a prior incomplete fix (CVE-2026-43874). The vulnerability exists in plugin/YPTSocket/MessageSQLite.php, where the autoEvalCodeOnHTML sanitization only covers the $json['msg'] key but not the $json['json'] key read by msgToResourceId(). It affects AVideo versions up to and including 29.0 (composer package wwbn/avideo). The advisory was published on May 25, 2026, and reviewed on June 4, 2026, with a CVSS v4 base score of 7.7 (High) (Github Advisory, AVideo Advisory).

技術的な詳細

The root cause is an incomplete sanitization implementation classified as CWE-79 (Improper Neutralization of Input During Web Page Generation). In MessageSQLite.php, lines 268–271 only call unset($json['msg']['autoEvalCodeOnHTML']), stripping the dangerous key from the msg path only. However, msgToResourceId() at lines 361–367 reads from $msg['json'] with higher priority than $msg['msg'], and this path is never sanitized. An authenticated attacker exploits this by placing an autoEvalCodeOnHTML payload inside the json key of a WebSocket message rather than the msg key, bypassing the shallow strip entirely. Notably, sibling files Message.php and MessageSQLiteV2.php correctly apply removeAutoEvalCodeOnHTMLRecursive($json) across all nested paths, but MessageSQLite.php does not call this function at all (Github Advisory, AVideo Commit).

影響

A successful exploit allows an authenticated attacker to execute arbitrary JavaScript in any connected victim's browser session via the WebSocket messaging system. This enables theft of session cookies and authentication tokens, account takeover through session hijacking, and the ability to chain with CSRF to perform admin-level actions on behalf of the victim. The vulnerability affects the default SQLite WebSocket backend configuration, meaning it is present in standard AVideo deployments without special configuration (AVideo Advisory).

エクスプロイテーションのステップ

  1. Authenticate: Obtain a valid user account and authentication token on the target AVideo instance (low-privilege access is sufficient).
  2. Identify target: Determine the WebSocket endpoint URL (wss://TARGET/plugin/YPTSocket/server.php) and obtain the victim's user ID (VICTIM_USER_ID) and a valid RESOURCE_ID.
  3. Craft malicious WebSocket message: Construct a JSON payload placing the XSS code in the json key (not msg) to bypass sanitization:
const ws = new WebSocket('wss://TARGET/plugin/YPTSocket/server.php?token=USER_TOKEN');
ws.onopen = () => {
  ws.send(JSON.stringify({
    msg: "Hello",                              // decoy — sanitized path
    json: {autoEvalCodeOnHTML: "alert('XSS')"},// payload — unsanitized path
    to_users_id: VICTIM_USER_ID,
    resourceId: RESOURCE_ID
  }));
};
  1. Bypass sanitization: The server's MessageSQLite.php strips autoEvalCodeOnHTML only from $json['msg']; the json key passes through unmodified.
  2. Payload delivery: msgToResourceId() reads $msg['json'] first (higher priority), relaying the unsanitized payload to the victim's WebSocket client.
  3. JavaScript execution: The victim's browser evaluates the autoEvalCodeOnHTML value, executing the attacker's JavaScript — enabling cookie theft, session hijacking, or further exploitation (AVideo Advisory).

妥協の兆候

  • Network: Unusual WebSocket messages to wss://TARGET/plugin/YPTSocket/server.php containing both a msg key and a json key with an autoEvalCodeOnHTML field; WebSocket traffic with JavaScript payloads (e.g., alert, document.cookie, fetch) embedded in the json object.
  • Logs: AVideo WebSocket server logs showing messages with a json key containing autoEvalCodeOnHTML from non-CLI, non-PHP sources; repeated WebSocket connections from a single authenticated user targeting multiple victim user IDs.
  • File System: No direct file system artifacts expected for this XSS vector, but secondary payloads (e.g., credential harvesters) may be delivered to victim browsers and exfiltrate data to external hosts.
  • Process/Application: Unexpected outbound HTTP requests from victim browsers to attacker-controlled domains following WebSocket message receipt, potentially visible in browser developer tools or proxy logs (AVideo Advisory).

軽減策と回避策

The fix is implemented in commit 3e0b3ce by replacing the shallow unset($json['msg']['autoEvalCodeOnHTML']) with a call to $this->removeAutoEvalCodeOnHTMLRecursive($json) in MessageSQLite.php, consistent with the approach already used in Message.php and MessageSQLiteV2.php. Administrators should update to a version of AVideo that includes this commit. No configuration-based workaround is available; upgrading is the only reliable remediation. As an interim measure, restricting access to the WebSocket endpoint to trusted users or disabling the YPTSocket plugin can reduce exposure (AVideo Commit, Github Advisory).

関連情報


ソースこのレポートは AI を使用して生成されました

関連 PHP 脆弱 性:

CVE 識別子

重大度

スコア

テクノロジー

コンポーネント名

CISA KEV エクスプロイト

修正あり

公開日

CVE-2026-54458CRITICAL9.6
  • PHP logoPHP
  • wwbn/avideo
いいえいいえJul 15, 2026
CVE-2026-49279HIGH7.7
  • PHP logoPHP
  • wwbn/avideo
いいえいいえJul 15, 2026
GHSA-xg43-5579-qw6vMEDIUM6.5
  • PHP logoPHP
  • adawolfa/isdoc
いいえはいJul 15, 2026
CVE-2026-50182MEDIUM6.1
  • PHP logoPHP
  • wwbn/avideo
いいえいいえJul 15, 2026
CVE-2026-50183MEDIUM4.7
  • PHP logoPHP
  • wwbn/avideo
いいえいいえJul 15, 2026

無料の脆弱性評価

クラウドセキュリティポスチャーのベンチマーク

9つのセキュリティドメインにわたるクラウドセキュリティプラクティスを評価して、リスクレベルをベンチマークし、防御のギャップを特定します。

評価を依頼する

パーソナライズされたデモを見る

実際に Wiz を見てみませんか?​

"私が今まで見た中で最高のユーザーエクスペリエンスは、クラウドワークロードを完全に可視化します。"
デビッド・エストリックCISO (最高情報責任者)
"Wiz を使えば、クラウド環境で何が起こっているかを 1 つの画面で確認することができます"
アダム・フレッチャーチーフ・セキュリティ・オフィサー
"Wizが何かを重要視した場合、それは実際に重要であることを私たちは知っています。"
グレッグ・ポニャトフスキ脅威および脆弱性管理責任者