CVE-2026-33041
published 2026-03-20CVE-2026-33041: WWBN AVideo is an open source video platform. In versions 25.0 and below, /objects/encryptPass.json.php exposes the application's password hashing algorithm to…
PriorityP338medium5.3CVSS 3.1
AVNACLPRNUINSUCLINAN
EPSS
0.33%
24.6th percentile
WWBN AVideo is an open source video platform. In versions 25.0 and below, /objects/encryptPass.json.php exposes the application's password hashing algorithm to any unauthenticated user. An attacker can submit arbitrary passwords and receive their hashed equivalents, enabling offline password cracking against leaked database hashes. If an attacker obtains password hashes from the database (via SQL injection, backup exposure, etc.), they can instantly crack them by comparing against pre-computed hashes from this endpoint. This endpoint eliminates the need for an attacker to reverse-engineer the hashing algorithm. Combined with the weak hash chain (md5+whirlpool+sha1, no salt by default), an attacker with access to database hashes can crack passwords extremely quickly. This issue was fixed in version 26.0.
Affected
2 ranges
| Vendor | Product | Version range | Fixed in |
|---|---|---|---|
| wwbn | avideo | < 26.0 | 26.0 |
| wwbn | avideo | 0 – 25.0 | — |
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 an Unauthenticated Password Hash Oracle via encryptPass.json.php
ghsa·2026-03-17
CVE-2026-33041 [MEDIUM] CWE-200 AVideo has an Unauthenticated Password Hash Oracle via encryptPass.json.php
AVideo has an Unauthenticated Password Hash Oracle via encryptPass.json.php
### Summary
`/objects/encryptPass.json.php` exposes the application's password hashing algorithm to any unauthenticated user. An attacker can submit arbitrary passwords and receive their hashed equivalents, enabling offline password cracking against leaked database hashes.
### Details
**File:** `objects/encryptPass.json.php`
```php
$obj->password = @$_REQUEST['pass'];
$obj->encryptedPassword = encryptPassword($obj->password);
echo json_encode($obj);
```
No authentication is required. The `encryptPassword()` function in `objects/functions.php` (line ~2101) uses:
```php
function encryptPassword($password, $noSalt = false) {
if (!empty($advancedCustomUser->encryptPasswordsWithSalt) && !empty($global['salt']) &&
OSV
AVideo has an Unauthenticated Password Hash Oracle via encryptPass.json.php
osv·2026-03-17
CVE-2026-33041 [MEDIUM] AVideo has an Unauthenticated Password Hash Oracle via encryptPass.json.php
AVideo has an Unauthenticated Password Hash Oracle via encryptPass.json.php
### Summary
`/objects/encryptPass.json.php` exposes the application's password hashing algorithm to any unauthenticated user. An attacker can submit arbitrary passwords and receive their hashed equivalents, enabling offline password cracking against leaked database hashes.
### Details
**File:** `objects/encryptPass.json.php`
```php
$obj->password = @$_REQUEST['pass'];
$obj->encryptedPassword = encryptPassword($obj->password);
echo json_encode($obj);
```
No authentication is required. The `encryptPassword()` function in `objects/functions.php` (line ~2101) uses:
```php
function encryptPassword($password, $noSalt = false) {
if (!empty($advancedCustomUser->encryptPasswordsWithSalt) && !empty($global['salt']) &&
No detection rules found.
No public exploits indexed.
2026-03-20
Published