CVE-2025-68025

6.5 MEDIUM

📋 TL;DR

This CVE describes a Missing Authorization vulnerability in the Addonify Floating Cart for WooCommerce WordPress plugin. It allows attackers to exploit incorrectly configured access controls, potentially accessing restricted functionality. This affects all WordPress sites using vulnerable versions of this plugin.

💻 Affected Systems

Products:
  • Addonify Floating Cart for WooCommerce
Versions: All versions up to and including 1.2.17
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Affects WordPress installations with WooCommerce and the Addonify Floating Cart plugin enabled.

⚠️ 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 modify shopping cart contents, access user data, or perform unauthorized administrative actions depending on what functionality lacks proper authorization checks.

🟠

Likely Case

Unauthorized users could manipulate shopping cart functionality, potentially affecting e-commerce operations or accessing limited user data.

🟢

If Mitigated

With proper authorization controls, only authenticated users with appropriate permissions can access plugin functionality.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

Public PoC: ✅ No
Weaponized: UNKNOWN
Unauthenticated Exploit: ⚠️ Yes
Complexity: LOW

Missing authorization vulnerabilities typically require minimal technical skill to exploit once the vulnerable endpoint is identified.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Versions after 1.2.17

Vendor Advisory: https://patchstack.com/database/Wordpress/Plugin/addonify-floating-cart/vulnerability/wordpress-addonify-floating-cart-for-woocommerce-plugin-1-2-17-broken-access-control-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find 'Addonify Floating Cart for WooCommerce'. 4. Click 'Update Now' if available. 5. Alternatively, download latest version from WordPress repository and replace plugin files.

🔧 Temporary Workarounds

Disable Plugin

all

Temporarily disable the vulnerable plugin until patched

wp plugin deactivate addonify-floating-cart

Restrict Access

linux

Use web application firewall or .htaccess to restrict access to plugin endpoints

# Add to .htaccess: <FilesMatch "addonify-floating-cart">
Order Deny,Allow
Deny from all
</FilesMatch>

🧯 If You Can't Patch

  • Implement strict network access controls to limit who can access the WordPress admin interface and plugin endpoints.
  • Monitor logs for unauthorized access attempts to plugin functionality and implement intrusion detection.

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > Installed Plugins for Addonify Floating Cart version. If version is 1.2.17 or lower, you are vulnerable.

Check Version:

wp plugin get addonify-floating-cart --field=version

Verify Fix Applied:

After updating, verify plugin version shows higher than 1.2.17 in WordPress admin panel.

📡 Detection & Monitoring

Log Indicators:

  • Unusual access patterns to plugin endpoints
  • Unauthorized POST/GET requests to addonify-floating-cart related URLs
  • 403 errors followed by 200 successes on restricted endpoints

Network Indicators:

  • HTTP requests to /wp-content/plugins/addonify-floating-cart/ from unauthorized IPs
  • Unusual API calls to cart-related endpoints

SIEM Query:

source="wordpress.log" AND (uri_path="/wp-content/plugins/addonify-floating-cart/" OR user_agent CONTAINS "addonify") AND response_code=200

🔗 References

📤 Share & Export