CVE-2025-58667

5.4 MEDIUM

📋 TL;DR

This CVE describes a missing authorization vulnerability in the WordPress ListingPro Reviews plugin that allows attackers to bypass access controls. It affects all versions up to 1.6, potentially enabling unauthorized users to perform actions reserved for authenticated users. WordPress site administrators using this plugin are affected.

💻 Affected Systems

Products:
  • ListingPro Reviews WordPress Plugin
Versions: n/a through 1.6
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: All WordPress installations using vulnerable versions of the ListingPro Reviews plugin are affected regardless of configuration.

⚠️ 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 manipulate reviews, delete legitimate reviews, or modify review settings, potentially damaging business reputation or enabling fraudulent activities.

🟠

Likely Case

Unauthorized users could submit fake reviews, modify existing reviews, or access review management functions they shouldn't have access to.

🟢

If Mitigated

With proper access controls and authentication checks, only authorized users can perform review-related actions.

🌐 Internet-Facing: HIGH
🏢 Internal Only: LOW

🎯 Exploit Status

Public PoC: ✅ No
Weaponized: UNKNOWN
Unauthenticated Exploit: ✅ No
Complexity: MEDIUM

Exploitation requires understanding of WordPress plugin structure and API endpoints, but no authentication is needed to bypass the broken access controls.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Version after 1.6

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/listingpro-reviews/vulnerability/wordpress-listingpro-reviews-plugin-1-6-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 'ListingPro Reviews'
4. Click 'Update Now' if update is available
5. If no update appears, manually download latest version from WordPress repository
6. Deactivate, delete old version, upload and activate new version

🔧 Temporary Workarounds

Disable Plugin

WordPress

Temporarily disable the vulnerable plugin until patched

wp plugin deactivate listingpro-reviews

🧯 If You Can't Patch

  • Implement web application firewall (WAF) rules to block suspicious review-related API requests
  • Restrict access to WordPress admin interface using IP whitelisting or additional authentication layers

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > ListingPro Reviews version number

Check Version:

wp plugin get listingpro-reviews --field=version

Verify Fix Applied:

Verify plugin version is greater than 1.6 and test review submission/management functions with unauthorized users

📡 Detection & Monitoring

Log Indicators:

  • Unauthorized POST requests to /wp-json/listingpro/v2/reviews endpoints
  • Review modifications from unauthenticated IP addresses
  • Failed authentication attempts followed by successful review actions

Network Indicators:

  • HTTP requests to review API endpoints without proper authentication headers
  • Unusual review submission patterns

SIEM Query:

source="wordpress.log" AND ("listingpro" OR "/wp-json/listingpro") AND (status=200 OR status=201) AND NOT (user!="-")

🔗 References

📤 Share & Export