Atomic Edge analysis of CVE-2026-8904 (metadata-based): This vulnerability is a Cross-Site Request Forgery (CSRF) in the FastPicker plugin for WordPress, affecting versions up to and including 1.0.2. The plugin provides order picking and order management system (OMS) functionality for WooCommerce. An unauthenticated attacker can trick a site administrator into modifying plugin settings, including toggling webhook integration and changing API URLs for FastPicker and KDZ services. The CVSS score is 4.3 (Medium) due to the requirement for user interaction and the limited scope of modification to settings.
Root Cause: Based on the CWE classification (CWE-352: Cross-Site Request Forgery) and the description, the likely root cause is the absence of nonce validation in the settingsPage function. In WordPress plugins, administrative actions that modify settings typically require a nonce check to ensure the request was intentionally made by an authenticated admin. Without this check, an attacker can forge requests that appear legitimate to the server, as the browser automatically sends the admin’s session cookies. This analysis is inferred from the CWE and description; no source code diff confirms the exact implementation.
Exploitation: The attack exploits the plugin’s settings submission endpoint, likely accessed via /wp-admin/admin-ajax.php with a custom action hook such as fastpicker_save_settings. The attacker crafts a malicious HTML form or link that, when clicked by an authenticated administrator, submits a POST request to modify plugin settings. Parameters would include toggle flags for webhook integration (webhook_enabled=1) and new URL values for fastpicker_api_url and kdz_api_url pointing to attacker-controlled servers. The attacker must trick the admin into performing the action, typically through social engineering like embedding the request in a harmless-looking link.
Remediation: Based on the CWE-352 classification, the fix requires adding proper nonce validation to the settingsPage function. The plugin should generate a nonce using wp_create_nonce() when rendering the settings form, then verify it with wp_verify_nonce() when processing the submission. Additionally, implementing capability checks (current_user_cans) ensures only authorized administrators can modify settings. A complete patch would use check_admin_referer() for admin page submissions or check_ajax_referer() for AJAX handlers.
Impact: Successful exploitation allows an attacker to modify critical plugin settings without authentication. Changing API URLs could redirect order data to attacker-controlled endpoints, potentially intercepting sensitive WooCommerce order information. Toggling webhook integration could disrupt normal business operations by stopping order syncs or causing data loss. While direct data theft requires the admin to trigger the action, the consequences of modified settings can persist and affect all site visitors and orders processed through the plugin.







