CVE-2025-10380

8.8 HIGH

📋 TL;DR

This vulnerability in the Advanced Views WordPress plugin allows authenticated attackers with author-level access or higher to execute arbitrary PHP code and commands on the server through server-side template injection. It affects all versions up to 3.7.19 due to insufficient input sanitization in Twig template processing. WordPress sites using this plugin are at risk of complete server compromise.

💻 Affected Systems

Products:
  • Advanced Views – Display Posts, Custom Fields, and More WordPress plugin
Versions: All versions up to and including 3.7.19
Operating Systems: All operating systems running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress installation with the vulnerable plugin enabled. Attackers need author-level or higher WordPress user accounts.

⚠️ 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 takeover with attacker gaining full control over the web server, database access, and ability to pivot to other systems on the network.

🟠

Likely Case

Website defacement, data theft, malware installation, and creation of backdoors for persistent access.

🟢

If Mitigated

Limited impact if proper access controls and input validation are in place, but still significant risk due to authenticated access requirement.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Exploitation requires authenticated access but is straightforward once attacker has author-level credentials. The vulnerability is well-documented in security advisories.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 3.7.20 or later

Vendor Advisory: https://plugins.trac.wordpress.org/changeset?sfp_email=&sfph_mail=&reponame=&old=3364566%40acf-views&new=3364566%40acf-views&sfp_email=&sfph_mail=

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins → Installed Plugins. 3. Find 'Advanced Views' plugin. 4. Click 'Update Now' if update is available. 5. Alternatively, download version 3.7.20+ from WordPress plugin repository and manually update.

🔧 Temporary Workarounds

Disable plugin temporarily

all

Deactivate the Advanced Views plugin until patched

wp plugin deactivate acf-views

Restrict user roles

linux

Temporarily remove author-level access from untrusted users

wp user list --role=author --field=ID | xargs wp user set-role subscriber

🧯 If You Can't Patch

  • Implement strict access controls and review all author-level user accounts
  • Deploy web application firewall rules to block template injection patterns

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel → Plugins → Advanced Views → Version number. If version is 3.7.19 or lower, you are vulnerable.

Check Version:

wp plugin get acf-views --field=version

Verify Fix Applied:

After updating, verify plugin version shows 3.7.20 or higher in WordPress admin panel.

📡 Detection & Monitoring

Log Indicators:

  • Unusual POST requests to admin-ajax.php with template parameters
  • PHP execution attempts in uploads or cache directories
  • Multiple failed login attempts followed by successful author-level login

Network Indicators:

  • Unusual outbound connections from web server to external IPs
  • Command and control traffic patterns

SIEM Query:

source="wordpress.log" AND ("acf-views" OR "twig.php") AND (POST OR PUT) AND ("template" OR "eval" OR "system")

🔗 References

📤 Share & Export