CVE-2025-48293

9.8 CRITICAL

📋 TL;DR

This vulnerability allows attackers to include local files on the server through improper filename control in PHP include/require statements. It affects WordPress sites using the Geo Mashup plugin, potentially leading to sensitive file disclosure or remote code execution. All WordPress installations with Geo Mashup versions up to 1.13.16 are vulnerable.

💻 Affected Systems

Products:
  • WordPress Geo Mashup Plugin
Versions: n/a through 1.13.16
Operating Systems: All operating systems running PHP
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress installation with Geo Mashup 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

Full server compromise through local file inclusion leading to remote code execution, data theft, and complete site takeover.

🟠

Likely Case

Sensitive file disclosure (configuration files, database credentials) and limited code execution within web server context.

🟢

If Mitigated

No impact if proper file permissions and web server configurations prevent access to sensitive files.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Simple HTTP requests can trigger the vulnerability. Public exploit details available through security advisories.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 1.13.17 or later

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/geo-mashup/vulnerability/wordpress-geo-mashup-plugin-1-13-16-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 Geo Mashup and check for updates. 4. Update to version 1.13.17 or later. 5. Verify update completed successfully.

🔧 Temporary Workarounds

Disable Geo Mashup Plugin

all

Temporarily disable the vulnerable plugin until patching is possible

wp plugin deactivate geo-mashup

Restrict File Access via .htaccess

linux

Add rules to prevent access to sensitive file paths

<FilesMatch "\.(php|inc|conf|config|sql|log|txt)$">
  Order Deny,Allow
  Deny from all
</FilesMatch>

🧯 If You Can't Patch

  • Implement web application firewall (WAF) rules to block file inclusion patterns
  • Restrict web server permissions to prevent access to sensitive directories

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > Geo Mashup version. If version is 1.13.16 or earlier, system is vulnerable.

Check Version:

wp plugin get geo-mashup --field=version

Verify Fix Applied:

Verify Geo Mashup plugin version is 1.13.17 or later in WordPress admin panel.

📡 Detection & Monitoring

Log Indicators:

  • Unusual file path patterns in web server logs
  • Multiple requests to Geo Mashup endpoints with file path parameters
  • HTTP 200 responses to requests with suspicious include parameters

Network Indicators:

  • HTTP requests containing file path traversal patterns to Geo Mashup endpoints
  • Unusual file extensions in URLs targeting the plugin

SIEM Query:

source="web_server_logs" AND (uri="*geo-mashup*" AND (uri="*../*" OR uri="*/etc/*" OR uri="*/proc/*"))

🔗 References

📤 Share & Export