CVE-2026-2428 Overview
The Fluent Forms Pro Add On Pack plugin for WordPress is vulnerable to Insufficient Verification of Data Authenticity in all versions up to and including 6.1.17. This vulnerability stems from the PayPal IPN (Instant Payment Notification) verification being disabled by default, where the disable_ipn_verification setting defaults to 'yes' in PayPalSettings.php. This configuration flaw allows unauthenticated attackers to send forged PayPal IPN notifications to the publicly accessible IPN endpoint, enabling them to mark unpaid form submissions as "paid" and trigger post-payment automation workflows including emails, access grants, and digital product delivery.
Critical Impact
Attackers can bypass payment verification entirely, fraudulently triggering paid content delivery, access grants, and automated workflows without completing actual PayPal transactions.
Affected Products
- Fluent Forms Pro Add On Pack plugin for WordPress versions up to and including 6.1.17
Discovery Timeline
- 2026-02-27 - CVE CVE-2026-2428 published to NVD
- 2026-02-27 - Last updated in NVD database
Technical Details for CVE-2026-2428
Vulnerability Analysis
This vulnerability is classified under CWE-345 (Insufficient Verification of Data Authenticity), representing a significant business logic flaw in the payment processing workflow. The core issue lies in the insecure default configuration of the PayPal integration within the Fluent Forms Pro Add On Pack plugin.
When WordPress sites integrate with PayPal for payment processing, they typically receive Instant Payment Notifications (IPN) to confirm transaction completions. These notifications should be verified by sending them back to PayPal's servers to confirm their authenticity. However, the Fluent Forms Pro plugin ships with IPN verification disabled by default, creating a trust boundary violation that allows attackers to forge payment confirmations.
The publicly accessible IPN endpoint accepts incoming notifications without proper validation, meaning any attacker who understands the expected payload structure can craft malicious requests that the system will trust implicitly. This results in the application marking form submissions as paid and executing all associated post-payment automation.
Root Cause
The root cause of this vulnerability is an insecure default configuration in PayPalSettings.php where the disable_ipn_verification parameter is set to 'yes' by default. This configuration decision bypasses the critical security control that ensures payment notifications originate from PayPal's legitimate servers. Without this verification step, the application cannot distinguish between genuine PayPal notifications and attacker-crafted forgeries, violating the principle of defense in depth for payment processing systems.
Attack Vector
The attack vector is network-based and requires no authentication or user interaction. An attacker can exploit this vulnerability by:
- Identifying WordPress sites running vulnerable versions of Fluent Forms Pro Add On Pack
- Locating the publicly accessible IPN endpoint URL (typically predictable based on WordPress conventions)
- Crafting a forged IPN notification payload that mimics a successful PayPal transaction
- Sending the forged notification directly to the IPN endpoint
- The system processes the forged notification as legitimate, marking the associated form submission as paid
- Post-payment automation triggers, potentially delivering digital products, granting access, or sending confirmation emails
The attack does not require knowledge of specific transaction IDs or user data—attackers can potentially enumerate or guess form submission identifiers to target specific entries.
Detection Methods for CVE-2026-2428
Indicators of Compromise
- Unusual IPN requests originating from IP addresses not associated with PayPal's infrastructure (PayPal IPN requests come from documented IP ranges)
- Form submissions marked as "paid" without corresponding legitimate PayPal transaction records
- Spike in successful payment notifications without matching revenue in PayPal merchant dashboard
- Access grants or digital product deliveries to accounts that lack legitimate payment history
Detection Strategies
- Implement web application firewall (WAF) rules to validate IPN request source IPs against PayPal's documented IP ranges
- Enable detailed logging on the IPN endpoint to capture request headers, source IPs, and payload contents for forensic analysis
- Configure alerting for payment status changes to detect anomalous patterns in form submission payment statuses
- Cross-reference WordPress payment records with PayPal merchant account transaction history on a regular basis
Monitoring Recommendations
- Monitor HTTP POST requests to the Fluent Forms IPN endpoint for requests originating from non-PayPal IP addresses
- Set up alerts for multiple rapid payment confirmations that may indicate automated exploitation attempts
- Review access logs for the IPN endpoint to identify unusual request patterns or high-frequency access
- Implement transaction reconciliation processes to identify discrepancies between recorded payments and actual PayPal revenue
How to Mitigate CVE-2026-2428
Immediate Actions Required
- Update Fluent Forms Pro Add On Pack to a patched version immediately if available
- Manually enable IPN verification in the PayPal settings within the Fluent Forms Pro configuration
- Audit all form submissions marked as "paid" to verify they have corresponding legitimate PayPal transactions
- Review and potentially revoke access grants or digital product deliveries that cannot be verified against PayPal records
- Temporarily disable PayPal payment integration if a patch is not immediately available
Patch Information
Administrators should consult the FluentForms Changelog for information on patched versions that address this vulnerability. The Wordfence Vulnerability Report provides additional details and remediation guidance.
Workarounds
- Manually modify the disable_ipn_verification setting to 'no' in the plugin configuration to enforce PayPal IPN verification
- Implement server-level IP allowlisting to restrict IPN endpoint access to PayPal's documented IP ranges only
- Deploy a web application firewall rule to block IPN requests from non-PayPal sources
- Disable PayPal payment integration entirely until the plugin can be updated to a secure version
# Example: IP allowlist for PayPal IPN in .htaccess (Apache)
# Place in the directory containing the IPN endpoint
# Note: Verify current PayPal IP ranges in their documentation
<Files "ipn-handler.php">
Order Deny,Allow
Deny from all
Allow from 64.4.240.0/21
Allow from 66.211.168.0/22
Allow from 173.0.80.0/20
</Files>
Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.


