CVE-2025-62071

4.3 MEDIUM

📋 TL;DR

This CVE describes a Missing Authorization vulnerability in the Repuso Social Proof Testimonials and Reviews WordPress plugin. It allows attackers to perform unauthorized actions due to broken access controls. All WordPress sites using affected plugin versions are vulnerable.

💻 Affected Systems

Products:
  • Social proof testimonials and reviews by Repuso
Versions: n/a through <= 5.29
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: All WordPress installations with the vulnerable plugin versions 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 modify testimonials, reviews, or plugin settings, potentially injecting malicious content or disrupting functionality.

🟠

Likely Case

Unauthorized users could view or modify testimonial/review data they shouldn't have access to.

🟢

If Mitigated

With proper authorization checks, only authenticated users with appropriate permissions could access plugin functions.

🌐 Internet-Facing: HIGH - WordPress sites are typically internet-facing, and this vulnerability affects a publicly accessible plugin.
🏢 Internal Only: LOW - The vulnerability is in a WordPress plugin, which is typically deployed on internet-facing web servers.

🎯 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 bypassed.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Version > 5.29

Vendor Advisory: https://patchstack.com/database/Wordpress/Plugin/social-testimonials-and-reviews-widget/vulnerability/wordpress-social-proof-testimonials-and-reviews-by-repuso-plugin-5-29-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 'Social proof testimonials and reviews by Repuso'. 4. Click 'Update Now' if available. 5. Alternatively, download latest version from WordPress repository and replace plugin files.

🔧 Temporary Workarounds

Disable Plugin

WordPress

Temporarily disable the vulnerable plugin until patched

wp plugin deactivate social-testimonials-and-reviews-widget

🧯 If You Can't Patch

  • Implement web application firewall (WAF) rules to block unauthorized API requests to the plugin endpoints.
  • Restrict access to WordPress admin panel using IP whitelisting or additional authentication layers.

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > Installed Plugins for 'Social proof testimonials and reviews by Repuso' version <= 5.29

Check Version:

wp plugin get social-testimonials-and-reviews-widget --field=version

Verify Fix Applied:

Verify plugin version is > 5.29 in WordPress admin panel or using wp-cli: wp plugin get social-testimonials-and-reviews-widget --field=version

📡 Detection & Monitoring

Log Indicators:

  • Unusual POST requests to /wp-json/repuso/* endpoints from unauthorized IPs
  • Unauthorized modifications to testimonial/review content in WordPress logs

Network Indicators:

  • HTTP requests to plugin-specific API endpoints without proper authentication headers

SIEM Query:

source="wordpress.log" AND (uri_path="/wp-json/repuso/*" OR plugin="social-testimonials-and-reviews-widget") AND (response_status=200 OR response_status=201) AND NOT user_role IN ("administrator","editor")

🔗 References

📤 Share & Export