CVE-2026-33767
published 2026-03-27CVE-2026-33767: WWBN AVideo is an open source video platform. In versions up to and including 26.0, in `objects/like.php`, the `getLike()` method constructs a SQL query using…
PriorityP359high8.8CVSS 3.1
AVNACLPRLUINSUCHIHAH
EPSS
0.51%
39.5th percentile
WWBN AVideo is an open source video platform. In versions up to and including 26.0, in `objects/like.php`, the `getLike()` method constructs a SQL query using a prepared statement placeholder (`?`) for `users_id` but directly concatenates `$this->videos_id` into the query string without parameterization. An attacker who can control the `videos_id` value (via a crafted request) can inject arbitrary SQL, bypassing the partial prepared-statement protection. Commit 0215d3c4f1ee748b8880254967b51784b8ac4080 contains a patch.
Affected
2 ranges
| Vendor | Product | Version range | Fixed in |
|---|---|---|---|
| wwbn | avideo | <= 26.0 | — |
| wwbn | avideo | >= 0 < 26.0 | 26.0 |
CVSS provenance
nvdv3.18.8HIGHCVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
nvdv4.07.1HIGHCVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:L/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
Stop checking back — get the weekly exploitation signal.
Every Monday: what got weaponized or added to CISA KEV in the last seven days — each CVE cross-linked to its PoC, Nuclei template, and detection rule. Free, one email a week, unsubscribe in one click.
GHSA
AVideo has SQL Injection via Partial Prepared Statement — videos_id Concatenated Directly into Query
ghsa·2026-03-26
CVE-2026-33767 [HIGH] CWE-89 AVideo has SQL Injection via Partial Prepared Statement — videos_id Concatenated Directly into Query
AVideo has SQL Injection via Partial Prepared Statement — videos_id Concatenated Directly into Query
### Summary
In `objects/like.php`, the `getLike()` method constructs a SQL query using a prepared statement placeholder (`?`) for `users_id` but directly concatenates `$this->videos_id` into the query string without parameterization. An attacker who can control the `videos_id` value (via a crafted request) can inject arbitrary SQL, bypassing the partial prepared-statement protection.
### Details
**File:** `objects/like.php`
**Vulnerable code:**
```php
$sql = "SELECT * FROM likes WHERE users_id = ? AND videos_id = ".$this->videos_id." LIMIT 1;";
$res = sqlDAL::readSql($sql, "i", [$this->users_id]);
```
The query mixes a parameterized placeholder for `users_id` with raw string concatena
OSV
AVideo has SQL Injection via Partial Prepared Statement — videos_id Concatenated Directly into Query
osv·2026-03-26
CVE-2026-33767 [HIGH] AVideo has SQL Injection via Partial Prepared Statement — videos_id Concatenated Directly into Query
AVideo has SQL Injection via Partial Prepared Statement — videos_id Concatenated Directly into Query
### Summary
In `objects/like.php`, the `getLike()` method constructs a SQL query using a prepared statement placeholder (`?`) for `users_id` but directly concatenates `$this->videos_id` into the query string without parameterization. An attacker who can control the `videos_id` value (via a crafted request) can inject arbitrary SQL, bypassing the partial prepared-statement protection.
### Details
**File:** `objects/like.php`
**Vulnerable code:**
```php
$sql = "SELECT * FROM likes WHERE users_id = ? AND videos_id = ".$this->videos_id." LIMIT 1;";
$res = sqlDAL::readSql($sql, "i", [$this->users_id]);
```
The query mixes a parameterized placeholder for `users_id` with raw string concatena
No detection rules found.
No public exploits indexed.
2026-03-27
Published