CVE-2025-12130
BaseFortify
Publication date: 2025-12-05
Last updated on: 2025-12-08
Assigner: Wordfence
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| woocommerce | wc_vendors | * |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-352 | The web application does not, or cannot, sufficiently verify whether a request was intentionally provided by the user who sent the request, which could have originated from an unauthorized actor. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is a Cross-Site Request Forgery (CSRF) issue in the WC Vendors β WooCommerce Multivendor, WooCommerce Marketplace, Product Vendors plugin for WordPress. It affects all versions up to and including 2.6.4. The problem arises because the plugin does not properly validate nonces on the /vendor_dashboard/product/delete/ endpoint. As a result, an unauthenticated attacker can trick a site administrator into performing an unwanted action, such as deleting vendor products, by making them click on a malicious link.
How can this vulnerability impact me? :
This vulnerability can allow an attacker to delete vendor products without authorization by tricking a site administrator into clicking a malicious link. This could lead to loss of product data, disruption of vendor operations, and potential damage to the reputation and functionality of the affected e-commerce site.
How can this vulnerability be detected on my network or system? Can you suggest some commands?
You can detect attempts to exploit this vulnerability by monitoring HTTP requests to the /vendor_dashboard/product/delete/ endpoint for missing or invalid nonce parameters (_wpnonce). Look for unusual POST requests to this endpoint without proper nonce verification or from unauthorized users. Since the vulnerability involves Cross-Site Request Forgery (CSRF), inspecting web server logs or using web application firewall (WAF) rules to detect POST requests lacking valid nonces can help. Specific commands depend on your environment, but for example, using grep on access logs: grep '/vendor_dashboard/product/delete/' /path/to/access.log | grep -v '_wpnonce=' to find requests missing the nonce parameter. Additionally, monitoring for unexpected product deletions or admin actions without proper authentication can indicate exploitation attempts. [2]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include updating the WC Vendors plugin to version 2.6.4.1 or later, which includes nonce verification and permission checks to prevent unauthorized product deletions. If updating is not immediately possible, restrict access to the /vendor_dashboard/product/delete/ endpoint to trusted users only, and implement web application firewall (WAF) rules to block requests lacking valid nonces (_wpnonce). Additionally, educate site administrators to avoid clicking on suspicious links that could trigger CSRF attacks. Applying strict input validation and sanitization as per the patch also helps mitigate injection risks. [2]