CVE-2026-3352

7.2 HIGH

📋 TL;DR

The Easy PHP Settings WordPress plugin allows authenticated attackers with Administrator privileges to inject arbitrary PHP code into wp-config.php via insufficient input validation. This vulnerability affects all versions up to 1.0.4 and enables remote code execution on the server. Only WordPress sites using the vulnerable plugin are affected.

💻 Affected Systems

Products:
  • Easy PHP Settings WordPress Plugin
Versions: All versions up to and including 1.0.4
Operating Systems: All operating systems running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress installation with the plugin activated and attacker must have Administrator-level access.

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

Complete server compromise allowing attacker to execute arbitrary code, steal data, install backdoors, or pivot to other systems.

🟠

Likely Case

Attacker gains persistent shell access, installs malware, defaces website, or steals sensitive data from the database.

🟢

If Mitigated

Attack prevented through proper access controls and input validation; no code execution occurs.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

Public PoC: ✅ No
Weaponized: LIKELY
Unauthenticated Exploit: ✅ No
Complexity: LOW

Exploitation requires Administrator credentials but the vulnerability itself is straightforward to exploit once authenticated.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 1.0.5

Vendor Advisory: https://plugins.trac.wordpress.org/browser/easy-php-settings/tags/1.0.5/class-easy-php-settings.php#L1998

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins → Installed Plugins. 3. Find Easy PHP Settings plugin. 4. Click 'Update Now' if available, or manually update to version 1.0.5. 5. Verify the plugin is updated to 1.0.5 or later.

🔧 Temporary Workarounds

Disable Plugin

all

Temporarily disable the vulnerable plugin until patched

wp plugin deactivate easy-php-settings

Restrict Admin Access

all

Limit Administrator accounts to trusted users only

🧯 If You Can't Patch

  • Remove Administrator access from untrusted users and implement strong authentication controls
  • Monitor wp-config.php for unauthorized modifications and implement file integrity monitoring

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel → Plugins → Easy PHP Settings → Version number. If version is 1.0.4 or lower, you are vulnerable.

Check Version:

wp plugin get easy-php-settings --field=version

Verify Fix Applied:

Verify plugin version is 1.0.5 or higher in WordPress admin panel and check that wp-config.php has not been modified with suspicious PHP code.

📡 Detection & Monitoring

Log Indicators:

  • Unauthorized modifications to wp-config.php file
  • Suspicious PHP define() statements in wp-config.php
  • Admin user making unexpected plugin setting changes

Network Indicators:

  • Unusual outbound connections from web server
  • Suspicious POST requests to plugin admin endpoints

SIEM Query:

source="wordpress" AND (event="plugin_updated" AND plugin="easy-php-settings" AND version<="1.0.4") OR (event="file_modified" AND file_path="*/wp-config.php")

🔗 References

📤 Share & Export