CVE-2025-12979
BaseFortify
Publication date: 2025-11-13
Last updated on: 2025-11-13
Assigner: Wordfence
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| welcart | woocommerce | * |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-862 | The product does not perform an authorization check when an actor attempts to access a resource or perform an action. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability in the Welcart e-Commerce WordPress plugin (up to version 2.11.24) allows unauthenticated attackers to access sensitive store data due to a missing capability check on the 'usces_export' action. Attackers can retrieve payment credentials like PayPal API secrets, business contact details, mail templates, and other operational settings without authorization.
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include updating the Welcart e-Commerce plugin to version 2.11.25 or later, which contains security enhancements such as added capability checks and nonce verification to prevent unauthorized access and CSRF attacks. If updating is not immediately possible, restrict access to the 'usces_export' action by limiting administrative privileges and applying web application firewall (WAF) rules to block unauthorized requests targeting this action. Additionally, review and monitor payment credential exposure and consider rotating any potentially compromised API secrets. [1]
How can this vulnerability impact me? :
The vulnerability can lead to unauthorized disclosure of sensitive payment credentials and business information, potentially resulting in financial fraud, unauthorized transactions, and exposure of confidential operational data. This compromises the security and trustworthiness of the e-commerce store.
How can this vulnerability be detected on my network or system? Can you suggest some commands?
Detection can involve checking if the Welcart e-Commerce plugin version is 2.11.24 or earlier, as these versions lack proper capability checks on the 'usces_export' action. You can verify the plugin version via WordPress admin or by inspecting the plugin files. Additionally, monitoring for unauthorized access attempts to the 'usces_export' action or unusual export of payment credentials could indicate exploitation. Specific commands might include: 1) Checking plugin version via WP-CLI: `wp plugin list | grep welcart` 2) Searching web server logs for requests to 'usces_export': `grep usces_export /var/log/apache2/access.log` or `grep usces_export /var/log/nginx/access.log` 3) Using network monitoring tools to detect unusual outbound data exports related to payment credentials. However, no explicit detection commands are provided in the resources. [1]