CVE-2024-43342

6.5 MEDIUM

📋 TL;DR

This stored XSS vulnerability in Ultimate Store Kit Elementor Addons allows attackers to inject malicious scripts into web pages that are then executed when other users view those pages. It affects WordPress sites using this plugin from all versions up to 1.6.4. Attackers can steal session cookies, redirect users, or perform actions on their behalf.

💻 Affected Systems

Products:
  • Ultimate Store Kit Elementor Addons
Versions: All versions up to and including 1.6.4
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress with the vulnerable plugin installed and activated. The vulnerability is in the plugin's input handling during web page generation.

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Attackers could steal administrator credentials, take over the WordPress site, install backdoors, deface the website, or use the compromised site to attack visitors.

🟠

Likely Case

Attackers inject malicious JavaScript to steal user session cookies, redirect users to phishing sites, or perform actions on behalf of authenticated users.

🟢

If Mitigated

With proper input validation and output encoding, malicious scripts would be neutralized before reaching users' browsers.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

XSS vulnerabilities are commonly exploited. While no public PoC is mentioned, the vulnerability type suggests straightforward exploitation once the injection vector is identified.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Versions after 1.6.4

Vendor Advisory: https://patchstack.com/database/vulnerability/ultimate-store-kit/wordpress-ultimate-store-kit-elementor-addons-woocommerce-builder-edd-builder-elementor-store-builder-product-grid-product-table-woocommerce-slider-plugin-1-6-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 'Ultimate Store Kit Elementor Addons'. 4. Click 'Update Now' if available. 5. If no update appears, download latest version from WordPress repository and manually update.

🔧 Temporary Workarounds

Disable vulnerable plugin

all

Temporarily disable the Ultimate Store Kit Elementor Addons plugin until patched

wp plugin deactivate ultimate-store-kit

Implement Content Security Policy

all

Add CSP headers to restrict script execution sources

Add to .htaccess: Header set Content-Security-Policy "default-src 'self'; script-src 'self'"
Add to nginx config: add_header Content-Security-Policy "default-src 'self'; script-src 'self'";

🧯 If You Can't Patch

  • Implement web application firewall (WAF) rules to block XSS payloads
  • Restrict plugin access to trusted users only and monitor for suspicious activity

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin → Plugins → Installed Plugins for Ultimate Store Kit Elementor Addons version 1.6.4 or earlier

Check Version:

wp plugin get ultimate-store-kit --field=version

Verify Fix Applied:

Verify plugin version is higher than 1.6.4 in WordPress admin panel

📡 Detection & Monitoring

Log Indicators:

  • Unusual POST requests to plugin endpoints with script tags or JavaScript in parameters
  • Multiple failed login attempts followed by successful admin access

Network Indicators:

  • Outbound connections to suspicious domains from your web server
  • Unexpected redirects from your site to external domains

SIEM Query:

source="web_server_logs" AND (uri="*ultimate-store-kit*" OR uri="*store-kit*") AND (message="*<script>*" OR message="*javascript:*" OR message="*onload=*" OR message="*onerror=*")

🔗 References

📤 Share & Export