CVE-2025-11764

6.4 MEDIUM

📋 TL;DR

This vulnerability allows authenticated WordPress users with contributor-level access or higher to inject malicious JavaScript into website pages using the Shortcodes Bootstrap plugin's notification shortcode. When visitors view pages containing the injected code, their browsers execute the attacker's scripts, potentially stealing credentials, session cookies, or performing unauthorized actions. All WordPress sites using Shortcodes Bootstrap plugin versions up to 1.1 are affected.

💻 Affected Systems

Products:
  • WordPress Shortcodes Bootstrap plugin
Versions: All versions up to and including 1.1
Operating Systems: All operating systems running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress installation with Shortcodes Bootstrap plugin enabled and at least one user with contributor-level access or higher.

⚠️ 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 steal administrator credentials, hijack user sessions, deface websites, redirect visitors to malicious sites, or install backdoors for persistent access.

🟠

Likely Case

Attackers with contributor access inject malicious scripts that steal user session cookies or credentials when visitors view compromised pages.

🟢

If Mitigated

With proper input validation and output escaping, the vulnerability is prevented, though the plugin still requires security review for other potential issues.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Exploitation requires contributor-level WordPress access. The vulnerability is publicly documented with technical details available.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Version after 1.1 (check WordPress plugin repository for latest)

Vendor Advisory: https://plugins.trac.wordpress.org/browser/shortcodes-bootstrap/trunk/inc/dws_alert.php#L16

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins → Installed Plugins. 3. Find 'Shortcodes Bootstrap' plugin. 4. Click 'Update Now' if available. 5. If no update available, deactivate and remove the plugin.

🔧 Temporary Workarounds

Remove vulnerable shortcode usage

all

Disable or remove all instances of the [notification] shortcode from posts and pages

UPDATE wp_posts SET post_content = REPLACE(post_content, '[notification', '[disabled_notification') WHERE post_content LIKE '%[notification%';

Restrict user roles

all

Temporarily remove contributor-level access from untrusted users

UPDATE wp_usermeta SET meta_value = 'subscriber' WHERE meta_key = 'wp_capabilities' AND meta_value LIKE '%contributor%';

🧯 If You Can't Patch

  • Disable the Shortcodes Bootstrap plugin immediately
  • Implement a Web Application Firewall (WAF) with XSS protection rules

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin → Plugins → Installed Plugins for Shortcodes Bootstrap version 1.1 or earlier

Check Version:

SELECT option_value FROM wp_options WHERE option_name = 'active_plugins' AND option_value LIKE '%shortcodes-bootstrap%';

Verify Fix Applied:

Verify plugin version is higher than 1.1 or plugin is completely removed

📡 Detection & Monitoring

Log Indicators:

  • Unusual POST requests to wp-admin with 'type' parameter containing script tags
  • Multiple failed login attempts followed by successful contributor login

Network Indicators:

  • Outbound connections to suspicious domains from your WordPress server
  • Unusual JavaScript payloads in HTTP requests

SIEM Query:

source="wordpress.log" AND ("[notification" OR "type=" AND "<script")

🔗 References

📤 Share & Export