CVE-2024-13619

6.1 MEDIUM

📋 TL;DR

This vulnerability in the LifterLMS WordPress plugin allows attackers to inject malicious scripts via unsanitized parameters, which are then reflected back in web pages. It primarily targets high-privilege users like administrators who might click malicious links. The attack requires user interaction but can lead to session hijacking or administrative account compromise.

💻 Affected Systems

Products:
  • LifterLMS WordPress plugin
Versions: All versions before 8.0.1
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress installation with LifterLMS plugin enabled. All WordPress versions are potentially affected.

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Administrator account takeover leading to full website compromise, data theft, or malware injection across the WordPress site.

🟠

Likely Case

Session hijacking of administrative users, allowing attackers to perform unauthorized actions within the WordPress dashboard.

🟢

If Mitigated

Minimal impact if users don't click malicious links and proper web application firewalls are in place.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Exploitation requires tricking users into clicking malicious links. The vulnerability details are publicly available.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 8.0.1

Vendor Advisory: https://wpscan.com/vulnerability/97a7e1a6-0fb3-49e9-86fc-ebb1d426fcca/

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins → Installed Plugins. 3. Find LifterLMS and click 'Update Now'. 4. Verify version shows 8.0.1 or higher.

🔧 Temporary Workarounds

Web Application Firewall (WAF)

all

Implement a WAF with XSS protection rules to block malicious parameter inputs.

Input Validation via .htaccess

linux

Add rules to block suspicious parameter patterns at the web server level.

RewriteCond %{QUERY_STRING} [^a-zA-Z0-9_=&-]
RewriteRule .* - [F]

🧯 If You Can't Patch

  • Restrict administrative access to trusted IP addresses only.
  • Educate users about phishing risks and implement click-jacking protection headers.

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin → Plugins → Installed Plugins for LifterLMS version. If version is below 8.0.1, the system is vulnerable.

Check Version:

wp plugin list --name=lifterlms --field=version

Verify Fix Applied:

Confirm LifterLMS version is 8.0.1 or higher in WordPress admin panel.

📡 Detection & Monitoring

Log Indicators:

  • Unusual GET/POST requests with script tags in parameters
  • Multiple 400/403 errors from WAF blocking XSS attempts

Network Indicators:

  • HTTP requests containing <script> tags or javascript: URIs in query parameters

SIEM Query:

source="web_server_logs" AND (uri="*<script>*" OR uri="*javascript:*")

🔗 References

📤 Share & Export