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-2888

CVE-2026-2888: Formidable Forms Auth Bypass Vulnerability

CVE-2026-2888 is an authorization bypass flaw in Formidable Forms for WordPress that allows attackers to manipulate payment amounts before completion. This article covers technical details, affected versions, and mitigation.

Published: March 20, 2026

CVE-2026-2888 Overview

The Formidable Forms plugin for WordPress contains an authorization bypass vulnerability through a user-controlled key affecting all versions up to and including 6.28. This vulnerability exists in the frm_strp_amount AJAX handler (update_intent_ajax) which overwrites the global $_POST data with attacker-controlled JSON input. The manipulated values are then used to recalculate payment amounts via field shortcode resolution in generate_false_entry().

The handler relies on a nonce that is publicly exposed in the page's JavaScript (frm_stripe_vars.nonce), which provides CSRF protection but fails to implement proper authorization controls. This critical oversight enables unauthenticated attackers to manipulate Stripe PaymentIntent amounts before payment completion on forms utilizing dynamic pricing with field shortcodes.

Critical Impact

Unauthenticated attackers can manipulate payment amounts on Formidable Forms with Stripe integration, effectively paying a reduced amount for goods or services by exploiting the authorization bypass in the payment handling AJAX endpoint.

Affected Products

  • Formidable Forms WordPress Plugin versions up to and including 6.28
  • WordPress sites using Formidable Forms with Stripe payment integration
  • Forms utilizing dynamic pricing with field shortcodes

Discovery Timeline

  • 2026-03-13 - CVE-2026-2888 published to NVD
  • 2026-03-16 - Last updated in NVD database

Technical Details for CVE-2026-2888

Vulnerability Analysis

This authorization bypass vulnerability (CWE-639: Authorization Bypass Through User-Controlled Key) stems from a fundamental design flaw in how the Formidable Forms plugin handles payment amount calculations for Stripe transactions. The vulnerability affects the payment flow by allowing attackers to inject arbitrary values into the payment processing pipeline.

The core issue lies in the update_intent_ajax function within FrmStrpLiteHooksController.php, which accepts JSON input from the client and uses it to overwrite critical $_POST data. This overwritten data is subsequently processed by generate_false_entry() in FrmStrpLiteAuth.php, which recalculates payment amounts using field shortcode resolution. Because the nonce used for validation (frm_stripe_vars.nonce) is publicly accessible in the page's JavaScript source, any unauthenticated user can craft valid requests.

Root Cause

The root cause of this vulnerability is the improper implementation of access control in the AJAX payment handler. While the plugin correctly implements CSRF protection through nonce verification, it incorrectly assumes that nonce validation is sufficient for authorization. The exposed nonce in frm_stripe_vars.nonce within the page's JavaScript means that any visitor to a page containing a Formidable Forms payment form can obtain the valid nonce and use it to manipulate payment amounts.

Additionally, the practice of overwriting $_POST global data with user-supplied JSON input creates an insecure data flow where attacker-controlled values propagate through the payment calculation logic without proper sanitization or authorization checks.

Attack Vector

The attack vector is network-based and requires no authentication or privileges. An attacker can exploit this vulnerability by:

  1. Visiting a page containing a Formidable Forms payment form with Stripe integration
  2. Extracting the publicly exposed nonce from frm_stripe_vars.nonce in the page's JavaScript
  3. Crafting a malicious AJAX request to the frm_strp_amount action with manipulated JSON payload
  4. Submitting the request to overwrite the $_POST data with attacker-controlled values
  5. The plugin's generate_false_entry() function processes these values and recalculates the PaymentIntent with a reduced amount

The vulnerability mechanism involves the AJAX handler accepting and trusting client-provided JSON data to recalculate payment amounts. The attacker can specify arbitrary field values that are used in dynamic pricing calculations, resulting in a lower payment amount being sent to Stripe while the form submission appears legitimate to the application. Technical implementation details can be found in the WordPress Hook Controller File and FrmStrpLiteAuth.php model.

Detection Methods for CVE-2026-2888

Indicators of Compromise

  • Unusual AJAX requests to the frm_strp_amount action with JSON payloads containing manipulated pricing data
  • Stripe PaymentIntent records with amounts that don't match expected form calculations or product prices
  • Discrepancies between order values in the WordPress database and actual Stripe payment amounts
  • Log entries showing POST requests to admin-ajax.php with action=frm_strp_amount from unauthenticated sessions

Detection Strategies

  • Implement web application firewall (WAF) rules to monitor and alert on suspicious frm_strp_amount AJAX requests with unusual JSON payloads
  • Configure server-side logging to capture all AJAX requests to Formidable Forms payment endpoints, including request body content
  • Set up anomaly detection for Stripe webhook events where payment amounts differ significantly from expected values
  • Deploy integrity monitoring on Formidable Forms plugin files to detect any unauthorized modifications

Monitoring Recommendations

  • Enable detailed WordPress debug logging for the Formidable Forms plugin to track payment processing activities
  • Configure Stripe dashboard alerts for payments below expected thresholds or unusual payment patterns
  • Implement real-time monitoring of admin-ajax.php requests filtering for Formidable Forms-related actions
  • Set up automated reconciliation between WordPress order records and Stripe payment records to identify discrepancies

How to Mitigate CVE-2026-2888

Immediate Actions Required

  • Update Formidable Forms plugin to a version newer than 6.28 that includes the security patch
  • Audit recent Stripe transactions for any signs of payment amount manipulation
  • Temporarily disable Stripe payment functionality on affected forms until the patch is applied
  • Review server logs for any indicators of compromise related to the frm_strp_amount AJAX endpoint

Patch Information

The vendor has released a security patch addressing this authorization bypass vulnerability. The fix can be reviewed in the WordPress Changeset Update which implements proper authorization checks beyond the publicly exposed nonce. For detailed vulnerability information, refer to the Wordfence Vulnerability Report.

Workarounds

  • Implement a web application firewall (WAF) rule to block or sanitize requests to the frm_strp_amount AJAX action until the plugin can be updated
  • Configure server-level rate limiting on admin-ajax.php to reduce the attack surface
  • Temporarily switch to fixed-price forms without dynamic pricing field shortcodes until the patch is applied
  • Add server-side validation to verify payment amounts against expected values before processing Stripe transactions
bash
# Example: Block suspicious AJAX requests via .htaccess (temporary workaround)
<IfModule mod_rewrite.c>
  RewriteEngine On
  RewriteCond %{REQUEST_URI} ^/wp-admin/admin-ajax\.php$ [NC]
  RewriteCond %{QUERY_STRING} action=frm_strp_amount [NC]
  RewriteCond %{REQUEST_METHOD} POST
  RewriteRule .* - [F,L]
</IfModule>

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechFormidable Forms

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.07%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-639
  • Technical References
  • WordPress Hook Controller File

  • WordPress Auth Model File

  • WordPress Auth Model File

  • WordPress Changeset Update

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2026-2890: Formidable Forms Payment Bypass 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