CVE-2025-48351

7.1 HIGH

📋 TL;DR

A Cross-Site Request Forgery (CSRF) vulnerability in the Kento Splash Screen WordPress plugin allows attackers to inject malicious scripts that become stored XSS payloads. When exploited, this enables attackers to perform actions on behalf of authenticated users and potentially compromise their sessions. WordPress sites using Kento Splash Screen version 1.4 or earlier are affected.

💻 Affected Systems

Products:
  • Kento Splash Screen WordPress Plugin
Versions: n/a through 1.4
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires the plugin to be installed and activated on a WordPress site. No special configuration 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 compromise administrator accounts, inject persistent malware into websites, steal session cookies, redirect users to malicious sites, or deface the website.

🟠

Likely Case

Attackers inject malicious JavaScript that steals user session cookies or credentials when administrators visit vulnerable pages, leading to account takeover.

🟢

If Mitigated

With proper CSRF tokens and input validation, the attack vector is eliminated, preventing unauthorized actions and script injection.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Exploitation requires tricking an authenticated user (typically an administrator) to click a malicious link or visit a crafted page. The CSRF leads to stored XSS payload injection.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 1.5 or later

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/kento-splash-screen/vulnerability/wordpress-kento-splash-screen-plugin-1-4-cross-site-request-forgery-csrf-to-stored-xss-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find 'Kento Splash Screen' and click 'Update Now' if available. 4. If no update appears, manually download version 1.5+ from WordPress.org and replace the plugin files via FTP or file manager.

🔧 Temporary Workarounds

Disable Plugin

all

Temporarily deactivate the Kento Splash Screen plugin to eliminate the vulnerability until patching is possible.

wp plugin deactivate kento-splash-screen

Implement CSRF Protection

all

Add custom CSRF tokens to plugin forms if you have development access, though this is complex and temporary.

🧯 If You Can't Patch

  • Disable the Kento Splash Screen plugin immediately to remove the attack surface.
  • Restrict admin access to trusted IP addresses only and enforce strong authentication like 2FA.

🔍 How to Verify

Check if Vulnerable:

Check the plugin version in WordPress admin under Plugins > Installed Plugins. If version is 1.4 or lower, you are vulnerable.

Check Version:

wp plugin get kento-splash-screen --field=version

Verify Fix Applied:

After updating, confirm the plugin version shows as 1.5 or higher in the WordPress plugins list.

📡 Detection & Monitoring

Log Indicators:

  • Unusual POST requests to wp-admin/admin-ajax.php or plugin-specific endpoints from unexpected sources.
  • JavaScript injection patterns in database or file logs related to splash screen content.

Network Indicators:

  • HTTP requests containing malicious script tags or encoded payloads targeting the plugin's endpoints.
  • Traffic spikes to admin pages from non-admin users.

SIEM Query:

source="wordpress.log" AND (uri="/wp-admin/admin-ajax.php" OR uri CONTAINS "kento-splash") AND (method="POST" AND (body CONTAINS "<script>" OR body CONTAINS "javascript:"))

🔗 References

📤 Share & Export