The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2026-3584

CVE-2026-3584: Kali Forms WordPress Plugin RCE Vulnerability

CVE-2026-3584 is a remote code execution vulnerability in the Kali Forms WordPress plugin that allows unauthenticated attackers to execute arbitrary code on the server. This article covers technical details, affected versions, and mitigation.

Published: March 27, 2026

CVE-2026-3584 Overview

The Kali Forms plugin for WordPress contains a critical Remote Code Execution (RCE) vulnerability affecting all versions up to and including 2.4.9. The vulnerability exists in the form_process function where the prepare_post_data function maps user-supplied keys directly into internal placeholder storage. Combined with the use of call_user_func on these placeholder values, unauthenticated attackers can execute arbitrary code on the server.

Critical Impact

Unauthenticated attackers can achieve complete server compromise by executing arbitrary code through malicious form submissions, potentially leading to full site takeover, data theft, and lateral movement within the hosting environment.

Affected Products

  • Kali Forms plugin for WordPress versions up to and including 2.4.9

Discovery Timeline

  • 2026-03-20 - CVE CVE-2026-3584 published to NVD
  • 2026-03-23 - Last updated in NVD database

Technical Details for CVE-2026-3584

Vulnerability Analysis

This vulnerability is classified as CWE-94 (Improper Control of Generation of Code / Code Injection). The flaw stems from a dangerous combination of two insecure coding practices within the Kali Forms plugin's form processing logic.

The prepare_post_data function accepts user-controlled input and directly maps the supplied keys into the plugin's internal placeholder storage mechanism. This design flaw allows an attacker to inject arbitrary placeholder names and values into the application's data structures. The critical escalation occurs because the plugin subsequently uses PHP's call_user_func on these placeholder values, enabling attackers to invoke arbitrary PHP functions with controlled arguments.

Since the vulnerability requires no authentication, any visitor to a WordPress site running a vulnerable version of Kali Forms can exploit this flaw simply by submitting a specially crafted form request.

Root Cause

The root cause is improper input validation combined with unsafe use of dynamic function invocation. The prepare_post_data function trusts user-supplied keys without sanitization, allowing attackers to pollute internal data structures. The subsequent use of call_user_func on these attacker-controlled values creates a direct path to arbitrary code execution. This violates the principle of never executing user-controlled data as code.

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker can craft a malicious HTTP POST request to a WordPress site's form endpoint, injecting specially formatted keys that map to dangerous PHP functions. When the form processor evaluates the placeholders using call_user_func, the attacker's chosen function is executed with attacker-controlled arguments.

The attack flow involves:

  1. Identifying a WordPress site using a vulnerable version of Kali Forms
  2. Crafting a POST request with malicious key-value pairs targeting the form_process endpoint
  3. The prepare_post_data function stores these malicious values as placeholders
  4. When placeholder resolution occurs via call_user_func, arbitrary PHP code executes

Technical details can be found in the WordPress Kali Forms Code Review.

Detection Methods for CVE-2026-3584

Indicators of Compromise

  • Unexpected POST requests to WordPress form endpoints containing unusual parameter names resembling PHP function calls
  • Web server logs showing form submissions with parameters like system, exec, passthru, or other dangerous PHP functions as keys
  • New files created in WordPress directories, particularly PHP files in upload or temporary folders
  • Unusual outbound network connections from the web server process

Detection Strategies

  • Monitor web application firewall (WAF) logs for POST requests to Kali Forms endpoints containing suspicious parameter patterns
  • Implement file integrity monitoring to detect new or modified PHP files in WordPress installations
  • Review web server access logs for anomalous form submission patterns, particularly requests with function-like parameter names
  • Deploy runtime application self-protection (RASP) solutions to detect call_user_func invocations with suspicious arguments

Monitoring Recommendations

  • Enable detailed logging on WordPress sites using Kali Forms and review for unusual form processing activity
  • Configure security plugins to alert on code execution attempts and suspicious PHP function invocations
  • Implement network monitoring to detect command-and-control traffic originating from compromised WordPress servers
  • Set up automated vulnerability scanning to identify WordPress plugins requiring security updates

How to Mitigate CVE-2026-3584

Immediate Actions Required

  • Update Kali Forms plugin to the latest patched version immediately
  • If unable to update immediately, temporarily disable the Kali Forms plugin until patching is possible
  • Review server logs for indicators of prior exploitation attempts
  • Conduct a security audit of the WordPress installation for signs of compromise

Patch Information

The vulnerability has been addressed in versions after 2.4.9. The fix can be reviewed in the WordPress Kali Forms Changeset. Site administrators should update to the latest available version through the WordPress plugin update mechanism. Additional vulnerability details are available in the Wordfence Vulnerability Report.

Workarounds

  • Disable the Kali Forms plugin entirely until the patch can be applied
  • Implement a Web Application Firewall (WAF) rule to block POST requests containing suspicious parameter names targeting form endpoints
  • Restrict access to form submission endpoints using IP-based access controls where feasible
  • Enable WordPress hardening measures including disabling file editing and restricting PHP execution in upload directories
bash
# WordPress wp-config.php hardening example
# Add to wp-config.php to disable file editing
define('DISALLOW_FILE_EDIT', true);

# .htaccess rule to block PHP execution in uploads
# Add to wp-content/uploads/.htaccess
<FilesMatch "\.php$">
    Deny from all
</FilesMatch>

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechWordpress

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability0.29%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-94
  • Technical References
  • WordPress Kali Forms Code Review

  • WordPress Kali Forms Changeset

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2026-3328: WordPress Frontend Admin Plugin RCE Flaw

  • CVE-2026-3533: Jupiter X Core WordPress Plugin RCE Flaw

  • CVE-2026-4004: WordPress Task Manager RCE Vulnerability

  • CVE-2025-10679: ReviewX WordPress Plugin RCE Vulnerability
Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English