CVE-2025-28998

8.1 HIGH

📋 TL;DR

This vulnerability allows attackers to include local files on the server through improper filename control in PHP include/require statements. It affects SERPed.net WordPress plugin users running versions up to 4.6, potentially leading to sensitive information disclosure or code execution.

💻 Affected Systems

Products:
  • SERPed.net WordPress plugin
Versions: n/a through 4.6
Operating Systems: Any OS running PHP and WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress installation with SERPed.net plugin enabled. PHP configuration with allow_url_include disabled does not prevent local file inclusion.

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

Remote code execution leading to complete server compromise, data theft, and lateral movement within the network.

🟠

Likely Case

Local file inclusion allowing sensitive file reading (configuration files, credentials, source code) and potential path traversal to access restricted files.

🟢

If Mitigated

Limited impact if proper file permissions, web server hardening, and input validation are implemented.

🌐 Internet-Facing: HIGH - WordPress plugins are typically internet-facing and this vulnerability can be exploited remotely.
🏢 Internal Only: MEDIUM - Internal systems running vulnerable versions could be exploited by authenticated users or through other attack vectors.

🎯 Exploit Status

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

Exploitation is straightforward with publicly available proof-of-concept. The vulnerability is in a WordPress plugin, making automated exploitation likely.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Version after 4.6

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/serped-net/vulnerability/wordpress-serped-net-4-6-local-file-inclusion-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins → Installed Plugins. 3. Find SERPed.net plugin. 4. Click 'Update Now' if update available. 5. If no update available, deactivate and remove plugin immediately.

🔧 Temporary Workarounds

Disable Plugin

all

Temporarily disable the vulnerable plugin until patched version is available.

wp plugin deactivate serped-net

Restrict File Access

linux

Implement web server restrictions to prevent access to sensitive directories.

# In .htaccess for Apache:
<FilesMatch "\.(php|inc|conf|config)$">
  Order Deny,Allow
  Deny from all
</FilesMatch>

🧯 If You Can't Patch

  • Implement web application firewall (WAF) rules to block file inclusion patterns and path traversal attempts.
  • Restrict plugin access to authenticated users only and implement strict input validation on all user-controlled parameters.

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel → Plugins → SERPed.net version. If version is 4.6 or earlier, system is vulnerable.

Check Version:

wp plugin get serped-net --field=version

Verify Fix Applied:

Verify plugin version is greater than 4.6 and test file inclusion attempts return proper errors instead of file contents.

📡 Detection & Monitoring

Log Indicators:

  • Unusual file access patterns in web server logs
  • Multiple requests with '../' sequences or file inclusion parameters
  • Access to sensitive files like /etc/passwd, wp-config.php

Network Indicators:

  • HTTP requests with file inclusion parameters (include, require, file parameters)
  • Patterns of directory traversal attempts

SIEM Query:

source="web_server_logs" AND (uri="*include*" OR uri="*require*" OR uri="*file=*" OR uri="*../*") AND status=200

🔗 References

📤 Share & Export