CVE-2025-22301

5.4 MEDIUM

📋 TL;DR

This CSRF vulnerability in the MyBookTable Bookstore WordPress plugin allows attackers to trick authenticated administrators into performing unintended actions. It affects all WordPress sites using MyBookTable Bookstore plugin versions up to 3.5.3. Attackers could modify plugin settings or perform other administrative actions without the victim's knowledge.

💻 Affected Systems

Products:
  • MyBookTable Bookstore WordPress Plugin
Versions: n/a through 3.5.3
Operating Systems: All
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress administrator to be logged in and visit a malicious page while authenticated.

⚠️ 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 completely compromise the plugin configuration, redirect bookstore links, modify payment settings, or inject malicious content into the site.

🟠

Likely Case

Attackers modify bookstore settings, change affiliate links, or alter display configurations to redirect traffic or inject ads.

🟢

If Mitigated

With proper CSRF protections and user awareness, impact is limited to unsuccessful attack attempts.

🌐 Internet-Facing: HIGH
🏢 Internal Only: LOW

🎯 Exploit Status

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

CSRF attacks are well-understood and easy to weaponize. Exploitation requires social engineering to trick administrators.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 3.5.4 or later

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/mybooktable/vulnerability/wordpress-mybooktable-bookstore-by-stormhill-media-plugin-3-5-3-cross-site-request-forgery-csrf-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find MyBookTable Bookstore. 4. Click 'Update Now' if available. 5. Alternatively, download version 3.5.4+ from WordPress repository and manually update.

🔧 Temporary Workarounds

CSRF Protection Headers

all

Implement Content Security Policy headers to restrict form submissions

Add to .htaccess: Header set Content-Security-Policy "form-action 'self'"

Plugin Deactivation

linux

Temporarily disable the plugin until patched

wp plugin deactivate mybooktable

🧯 If You Can't Patch

  • Implement strict SameSite cookie policies for admin sessions
  • Use browser extensions that block CSRF attempts and educate administrators about phishing risks

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > MyBookTable Bookstore version. If version is 3.5.3 or lower, you are vulnerable.

Check Version:

wp plugin get mybooktable --field=version

Verify Fix Applied:

Verify plugin version is 3.5.4 or higher in WordPress admin plugins page.

📡 Detection & Monitoring

Log Indicators:

  • Unexpected POST requests to /wp-admin/admin-ajax.php from MyBookTable endpoints
  • Multiple failed CSRF token validations in WordPress logs

Network Indicators:

  • Cross-origin POST requests to admin endpoints without proper referrer headers
  • Suspicious iframe or form submissions targeting the plugin

SIEM Query:

source="wordpress.log" AND "mybooktable" AND ("csrf" OR "nonce" AND "failed")

🔗 References

📤 Share & Export