CVE-2023-41690

5.3 MEDIUM

📋 TL;DR

This vulnerability allows attackers to bypass authorization controls in the WiserNotify Social Proof WordPress plugin, potentially accessing restricted functionality. It affects all WordPress sites running WiserNotify Social Proof plugin versions up to 2.5.

💻 Affected Systems

Products:
  • WiserNotify Social Proof WordPress Plugin
Versions: All versions up to and including 2.5
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Affects WordPress installations with the WiserNotify Social Proof plugin installed and activated.

⚠️ 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 plugin settings, inject malicious content, or access administrative functions depending on what the broken access control protects.

🟠

Likely Case

Unauthorized users can access plugin configuration pages or functionality intended only for administrators, potentially altering social proof notifications or settings.

🟢

If Mitigated

With proper access controls, only authenticated administrators can access plugin functionality, preventing unauthorized changes.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Exploitation requires some WordPress user access but bypasses authorization checks for specific plugin functionality.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Versions after 2.5

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/wiser-notify/vulnerability/wordpress-wisernotify-social-proof-plugin-2-5-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 WiserNotify Social Proof
4. Click 'Update Now' if available
5. If no update available, deactivate and remove the plugin

🔧 Temporary Workarounds

Disable Plugin

all

Deactivate the vulnerable plugin until patched

wp plugin deactivate wiser-notify

Restrict Access via .htaccess

linux

Block access to plugin directories

# Add to .htaccess in WordPress root:
<FilesMatch "wisernotify">
Order Deny,Allow
Deny from all
</FilesMatch>

🧯 If You Can't Patch

  • Deactivate the WiserNotify Social Proof plugin immediately
  • Implement web application firewall rules to block suspicious requests to plugin endpoints

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin > Plugins > Installed Plugins for WiserNotify Social Proof version 2.5 or earlier

Check Version:

wp plugin get wiser-notify --field=version

Verify Fix Applied:

Verify plugin version is higher than 2.5 or plugin is deactivated/removed

📡 Detection & Monitoring

Log Indicators:

  • Unauthorized access attempts to /wp-admin/admin.php?page=wisernotify
  • POST requests to WiserNotify endpoints from non-admin users

Network Indicators:

  • HTTP requests to plugin-specific admin endpoints without proper authentication

SIEM Query:

source="wordpress.log" AND (uri="/wp-admin/admin.php?page=wisernotify" OR user_agent CONTAINS "wisernotify") AND http_status=200

🔗 References

📤 Share & Export