CVE-2025-13893

6.1 MEDIUM

📋 TL;DR

The Lesson Plan Book WordPress plugin has a reflected cross-site scripting vulnerability that allows unauthenticated attackers to inject malicious scripts via crafted URLs. This affects all WordPress sites using the plugin version 1.3 or earlier. Attackers can steal session cookies, redirect users, or perform actions on their behalf by tricking them into clicking malicious links.

💻 Affected Systems

Products:
  • WordPress Lesson Plan Book Plugin
Versions: All versions up to and including 1.3
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Only affects WordPress installations with the Lesson Plan Book plugin active.

⚠️ 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 administrator session cookies, gain administrative access to WordPress, install backdoors, deface websites, or exfiltrate sensitive data.

🟠

Likely Case

Attackers steal user session cookies, redirect users to phishing sites, or perform limited actions within the user's current session.

🟢

If Mitigated

With proper web application firewalls and browser security controls, malicious scripts may be blocked or sanitized before execution.

🌐 Internet-Facing: HIGH
🏢 Internal Only: LOW

🎯 Exploit Status

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

Reflected XSS vulnerabilities are commonly weaponized in phishing campaigns and require minimal technical skill to exploit.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 1.4 or later

Vendor Advisory: https://plugins.trac.wordpress.org/browser/lesson-plan-book/trunk/lesson.php

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find 'Lesson Plan Book' and check for updates. 4. If update available, click 'Update Now'. 5. If no update available, deactivate and delete the plugin.

🔧 Temporary Workarounds

Web Application Firewall Rule

all

Block requests containing malicious script patterns in the PHP_SELF parameter

Content Security Policy

all

Implement CSP headers to restrict script execution sources

Header set Content-Security-Policy "script-src 'self'" in .htaccess or web server config

🧯 If You Can't Patch

  • Deactivate the Lesson Plan Book plugin immediately
  • Implement strict Content Security Policy headers to mitigate script injection

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > Lesson Plan Book version. If version is 1.3 or earlier, you are vulnerable.

Check Version:

wp plugin list --name='lesson-plan-book' --field=version (if WP-CLI installed)

Verify Fix Applied:

After updating, verify plugin version shows 1.4 or later in WordPress admin panel.

📡 Detection & Monitoring

Log Indicators:

  • Unusual GET requests containing script tags in URL parameters
  • Multiple 404 errors for lesson.php with suspicious parameters

Network Indicators:

  • HTTP requests with JavaScript payloads in URL parameters
  • Outbound connections to suspicious domains after visiting lesson.php pages

SIEM Query:

source="web_logs" AND uri="*lesson.php*" AND (uri="*<script*" OR uri="*javascript:*" OR uri="*onerror=*" OR uri="*onload=*")

🔗 References

📤 Share & Export