CVE-2025-64208

6.5 MEDIUM

📋 TL;DR

This DOM-based cross-site scripting vulnerability in the TieLabs Jannah - Extensions WordPress plugin allows attackers to inject malicious scripts into web pages viewed by users. It affects all WordPress sites running Jannah - Extensions version 1.1.4 or earlier. Attackers can execute arbitrary JavaScript in victims' browsers when they visit compromised pages.

💻 Affected Systems

Products:
  • TieLabs Jannah - Extensions WordPress Plugin
Versions: All versions up to and including 1.1.4
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: All WordPress installations with 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 steal session cookies, perform actions as authenticated users, redirect to malicious sites, or install malware on visitors' systems.

🟠

Likely Case

Session hijacking, credential theft, defacement of website content, or redirection to phishing pages.

🟢

If Mitigated

Limited impact if input validation and output encoding are properly implemented, though DOM-based XSS can bypass some server-side protections.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

DOM-based XSS requires specific user interaction or crafted URLs, making exploitation moderately complex but feasible.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Version after 1.1.4

Vendor Advisory: https://patchstack.com/database/Wordpress/Plugin/jannah-extensions/vulnerability/wordpress-jannah-extensions-plugin-1-1-4-cross-site-scripting-xss-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find 'Jannah - Extensions' and click 'Update Now' if available. 4. If no update appears, manually 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 jannah-extensions

Content Security Policy

all

Implement strict CSP headers to mitigate XSS impact.

Add to .htaccess: Header set Content-Security-Policy "default-src 'self'; script-src 'self'"
Add to wp-config.php: header("Content-Security-Policy: default-src 'self'");

🧯 If You Can't Patch

  • Implement web application firewall (WAF) rules to block XSS payloads.
  • Disable user input fields that trigger the vulnerability if identifiable.

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > Installed Plugins for Jannah - Extensions version 1.1.4 or lower.

Check Version:

wp plugin get jannah-extensions --field=version

Verify Fix Applied:

Verify plugin version is above 1.1.4 in WordPress admin or via wp-cli: wp plugin get jannah-extensions --field=version

📡 Detection & Monitoring

Log Indicators:

  • Unusual JavaScript payloads in URL parameters
  • Multiple failed attempts to access plugin-specific endpoints

Network Indicators:

  • Requests with suspicious script tags in query strings
  • Unexpected redirects from plugin pages

SIEM Query:

source="wordpress" AND (url="*jannah-extensions*" AND (url="*<script>*" OR url="*javascript:*"))

🔗 References

📤 Share & Export