CVE-2024-12815

6.4 MEDIUM

📋 TL;DR

The Point Maker WordPress plugin has a stored XSS vulnerability that allows authenticated attackers with contributor-level access or higher to inject malicious scripts into website pages. These scripts execute whenever users view the compromised pages, potentially stealing credentials or performing unauthorized actions. All WordPress sites using Point Maker version 0.1.6 or earlier are affected.

💻 Affected Systems

Products:
  • WordPress Point Maker plugin
Versions: All versions up to and including 0.1.6
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress installation with Point Maker plugin enabled. Contributor-level access or higher needed for exploitation.

⚠️ 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

Attackers inject malicious scripts to steal user session cookies, redirect visitors to phishing pages, or display unwanted advertisements.

🟢

If Mitigated

With proper user access controls and content security policies, impact is limited to potential defacement of affected pages.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Exploitation requires authenticated access but is technically simple once access is obtained.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 0.1.7 or later

Vendor Advisory: https://wordpress.org/plugins/point-maker/

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find Point Maker plugin. 4. Click 'Update Now' if update available. 5. If no update available, deactivate and delete plugin, then install fresh version from WordPress repository.

🔧 Temporary Workarounds

Remove Contributor Access

all

Temporarily remove contributor-level access for untrusted users until patch is applied

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'"
Or add to wp-config.php: header("Content-Security-Policy: default-src 'self'; script-src 'self'");

🧯 If You Can't Patch

  • Deactivate and remove the Point Maker plugin completely
  • Implement strict user access controls and audit all contributor-level accounts

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > Installed Plugins for Point Maker version 0.1.6 or earlier

Check Version:

wp plugin list --name=point-maker --field=version (if WP-CLI installed)

Verify Fix Applied:

Confirm Point Maker plugin version is 0.1.7 or later in WordPress admin panel

📡 Detection & Monitoring

Log Indicators:

  • Unusual shortcode usage in post/page content
  • Multiple failed login attempts followed by successful contributor login
  • Posts/pages with suspicious script tags in content

Network Indicators:

  • Outbound connections to unknown domains from WordPress pages
  • Unexpected script loads in page sources

SIEM Query:

source="wordpress.log" AND ("point_maker" OR "[point_maker") AND ("script" OR "javascript:" OR "onclick=")

🔗 References

📤 Share & Export