CVE-2026-0632

5.4 MEDIUM

📋 TL;DR

The Fluent Forms Pro Add On Pack plugin for WordPress has a Server-Side Request Forgery vulnerability that allows authenticated users with Subscriber-level access or higher to make arbitrary web requests from the server. This could enable attackers to query or modify internal services. All WordPress sites using this plugin up to version 6.1.12 are affected.

💻 Affected Systems

Products:
  • Fluent Forms Pro Add On Pack for WordPress
Versions: All versions up to and including 6.1.12
Operating Systems: All operating systems running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress installation with Fluent Forms Pro Add On Pack plugin and at least one authenticated user with Subscriber role or higher.

⚠️ Manual Verification Required

This CVE does not have specific version information in our database, so automatic vulnerability detection cannot determine if your system is affected.

Why? The CVE database entry doesn't specify which versions are vulnerable (no version ranges provided by the vendor/NVD).

🔒 Custom verification scripts are available for registered users. Sign up free to download automated test scripts.

Recommended Actions:
  1. Review the CVE details at NVD
  2. Check vendor security advisories for your specific version
  3. Test if the vulnerability is exploitable in your environment
  4. Consider updating to the latest version as a precaution

⚠️ Risk & Real-World Impact

🔴

Worst Case

Attackers could access internal services, exfiltrate sensitive data, or pivot to attack other internal systems from the compromised WordPress server.

🟠

Likely Case

Attackers with subscriber accounts could probe internal networks, access internal APIs, or perform limited data exfiltration from services reachable from the WordPress server.

🟢

If Mitigated

With proper network segmentation and authentication controls, impact would be limited to services in the same network segment as the WordPress server.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

Public PoC: ✅ No
Weaponized: LIKELY
Unauthenticated Exploit: ✅ No
Complexity: LOW

Exploitation requires authenticated access but only at Subscriber level, which is the lowest WordPress user role with login capabilities.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 6.1.13 or later

Vendor Advisory: https://fluentforms.com/docs/changelog/

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins → Installed Plugins. 3. Find Fluent Forms Pro Add On Pack. 4. Click 'Update Now' if update is available. 5. Alternatively, download latest version from vendor and upload via FTP.

🔧 Temporary Workarounds

Disable vulnerable functionality

all

Temporarily disable the saveDataSource functionality or restrict access to affected endpoints

Add to wp-config.php: define('FLUENTFORMS_PRO_DISABLE_SSRF', true);

Restrict user roles

all

Remove Subscriber role access or elevate authentication requirements

Use WordPress role management plugins to modify capabilities

🧯 If You Can't Patch

  • Implement network segmentation to isolate WordPress server from internal services
  • Deploy web application firewall rules to block SSRF patterns and restrict outbound requests

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel → Plugins → Installed Plugins → Fluent Forms Pro Add On Pack version

Check Version:

wp plugin list --name='Fluent Forms Pro Add On Pack' --field=version

Verify Fix Applied:

Verify plugin version is 6.1.13 or higher in WordPress admin panel

📡 Detection & Monitoring

Log Indicators:

  • Unusual POST requests to /wp-admin/admin-ajax.php with action=saveDataSource
  • Outbound requests from WordPress server to internal IP ranges

Network Indicators:

  • WordPress server making unexpected HTTP requests to internal services
  • Traffic from WordPress server to non-standard ports

SIEM Query:

source="wordpress-logs" AND (uri_path="/wp-admin/admin-ajax.php" AND parameters CONTAINS "saveDataSource")

🔗 References

📤 Share & Export