CVE-2025-30620

7.1 HIGH

📋 TL;DR

This CSRF vulnerability in WP Odoo Form Integrator WordPress plugin allows attackers to trick authenticated administrators into performing unintended actions, which can lead to stored cross-site scripting (XSS). Attackers can inject malicious scripts that execute when other users visit affected pages. All WordPress sites using WP Odoo Form Integrator versions up to 1.1.0 are affected.

💻 Affected Systems

Products:
  • WP Odoo Form Integrator WordPress Plugin
Versions: n/a through 1.1.0
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: All installations with the vulnerable plugin versions are affected regardless of configuration.

⚠️ 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 inject persistent malicious scripts that steal session cookies, redirect users to phishing sites, or perform actions as authenticated users, potentially compromising the entire WordPress site.

🟠

Likely Case

Attackers would typically inject malicious scripts to steal administrator cookies or session tokens, gaining unauthorized access to the WordPress admin panel.

🟢

If Mitigated

With proper CSRF tokens and input validation, the attack vector would be blocked, preventing the stored XSS injection.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

Public PoC: ✅ No
Weaponized: UNKNOWN
Unauthenticated Exploit: ✅ No
Complexity: MEDIUM

Exploitation requires tricking an authenticated administrator into clicking a malicious link or visiting a compromised page.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Version after 1.1.0

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/wp-odoo-form-integrator/vulnerability/wordpress-wp-odoo-form-integrator-plugin-1-1-0-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 WP Odoo Form Integrator. 4. Click 'Update Now' if update available. 5. If no update available, deactivate and delete the plugin immediately.

🔧 Temporary Workarounds

Implement CSRF Protection

all

Add CSRF tokens to all form submissions and AJAX requests in the plugin code.

Input Validation and Sanitization

all

Implement proper input validation and output escaping for all user-controllable data.

🧯 If You Can't Patch

  • Disable or remove the WP Odoo Form Integrator plugin immediately.
  • Implement web application firewall (WAF) rules to block CSRF attempts and XSS payloads.

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > Installed Plugins for WP Odoo Form Integrator version 1.1.0 or earlier.

Check Version:

wp plugin list --name='WP Odoo Form Integrator' --field=version

Verify Fix Applied:

Verify plugin version is higher than 1.1.0 in WordPress admin panel > Plugins > Installed Plugins.

📡 Detection & Monitoring

Log Indicators:

  • Unusual POST requests to wp-admin/admin-ajax.php or plugin-specific endpoints
  • Multiple failed CSRF token validations in WordPress debug logs

Network Indicators:

  • Suspicious cross-origin requests to WordPress admin endpoints
  • Unexpected JavaScript payloads in form submissions

SIEM Query:

source="wordpress" AND (uri_path="/wp-admin/admin-ajax.php" OR uri_path CONTAINS "odoo-form") AND (http_method="POST" AND referer NOT CONTAINS host)

🔗 References

📤 Share & Export