CVE-2025-47600

6.1 MEDIUM

📋 TL;DR

This Cross-Site Scripting (XSS) vulnerability in the WoodMart WordPress theme allows attackers to inject malicious scripts into web pages. It affects WordPress sites using WoodMart theme versions up to and including 8.3.7, potentially compromising user sessions and site integrity.

💻 Affected Systems

Products:
  • WordPress WoodMart Theme
Versions: n/a through <= 8.3.7
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Only affects WordPress installations with WoodMart theme active. Requires attacker to have some level of content creation access.

⚠️ 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, deface websites, redirect users to malicious sites, or install backdoors for persistent access.

🟠

Likely Case

Session hijacking, cookie theft, or defacement of vulnerable pages through injected JavaScript.

🟢

If Mitigated

Limited to content manipulation on specific pages if input validation and output encoding are partially implemented.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Exploitation requires ability to inject content through theme features. Basic XSS techniques work once injection point is identified.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 8.3.8 or later

Vendor Advisory: https://patchstack.com/database/Wordpress/Theme/woodmart/vulnerability/wordpress-woodmart-theme-8-3-7-arbitrary-shortcode-execution-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Appearance > Themes. 3. Check for WoodMart theme update notification. 4. Click 'Update Now' for WoodMart theme. 5. Clear any caching plugins/CDN caches.

🔧 Temporary Workarounds

Input Sanitization Filter

all

Add custom PHP filter to sanitize WoodMart theme inputs

Add to theme's functions.php: add_filter('woodmart_safe_content', 'wp_kses_post');

🧯 If You Can't Patch

  • Disable or restrict user content submission features in WoodMart theme
  • Implement Web Application Firewall (WAF) with XSS protection rules

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin > Appearance > Themes for WoodMart version. If version is 8.3.7 or lower, system is vulnerable.

Check Version:

wp theme list --field=name,version --format=csv | grep woodmart

Verify Fix Applied:

Confirm WoodMart theme version is 8.3.8 or higher in WordPress admin panel.

📡 Detection & Monitoring

Log Indicators:

  • Unusual POST requests to WoodMart theme endpoints
  • JavaScript payloads in theme-related parameters

Network Indicators:

  • Malicious script tags in HTTP requests to theme files
  • Unexpected redirects from WoodMart pages

SIEM Query:

source="web_logs" AND (uri="*woodmart*" OR uri="*wd-*" OR user_agent="*woodmart*") AND (request_body="*<script>*" OR request_body="*javascript:*")

🔗 References

📤 Share & Export