CVE-2025-13866

6.4 MEDIUM

📋 TL;DR

This vulnerability in the Flow-Flow Social Feed Stream WordPress plugin allows authenticated attackers with Subscriber-level access or higher to modify plugin settings and inject malicious JavaScript. The stored JavaScript executes whenever the plugin settings page is viewed, enabling cross-site scripting attacks. WordPress sites using vulnerable plugin versions are affected.

💻 Affected Systems

Products:
  • Flow-Flow Social Feed Stream WordPress plugin
Versions: 3.0.0 to 4.7.5
Operating Systems: All
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress installation with the vulnerable plugin enabled and at least one authenticated user account.

⚠️ 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 inject persistent JavaScript payloads that steal administrator credentials, redirect users to malicious sites, or deface the website when any user views the plugin settings page.

🟠

Likely Case

Attackers with subscriber accounts inject malicious JavaScript that executes when administrators view plugin settings, potentially leading to session hijacking or privilege escalation.

🟢

If Mitigated

With proper access controls and input validation, the impact is limited to unauthorized plugin setting changes without code execution.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Exploitation requires authenticated access but is straightforward once an attacker has subscriber-level credentials.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 4.7.6

Vendor Advisory: https://plugins.trac.wordpress.org/browser/flow-flow-social-streams/trunk/includes/FlowFlowActivator.php#L224

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find Flow-Flow Social Feed Stream. 4. Click 'Update Now' if available, or download version 4.7.6+ from WordPress repository. 5. Replace plugin files with patched version.

🔧 Temporary Workarounds

Remove vulnerable plugin

all

Temporarily disable or remove the vulnerable plugin until patched version can be installed.

wp plugin deactivate flow-flow-social-streams
wp plugin delete flow-flow-social-streams

Restrict user registration

all

Disable new user registration to prevent attackers from creating subscriber accounts.

wp option update users_can_register 0

🧯 If You Can't Patch

  • Disable the Flow-Flow Social Feed Stream plugin completely.
  • Implement web application firewall rules to block requests to the vulnerable AJAX endpoint.

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > Installed Plugins for Flow-Flow Social Feed Stream version. If version is between 3.0.0 and 4.7.5 inclusive, the site is vulnerable.

Check Version:

wp plugin get flow-flow-social-streams --field=version

Verify Fix Applied:

Verify plugin version is 4.7.6 or higher in WordPress admin panel. Test that non-administrator users cannot modify plugin settings via AJAX requests.

📡 Detection & Monitoring

Log Indicators:

  • Unusual POST requests to /wp-admin/admin-ajax.php with action=flow_flow_social_auth from non-admin users
  • Multiple failed authentication attempts followed by successful subscriber login

Network Indicators:

  • HTTP POST requests to admin-ajax.php containing flow_flow_social_auth parameter from unexpected IP addresses

SIEM Query:

source="wordpress.log" AND "admin-ajax.php" AND "flow_flow_social_auth" AND user_role!="administrator"

🔗 References

📤 Share & Export