CVE-2025-26994

7.1 HIGH

📋 TL;DR

This stored cross-site scripting (XSS) vulnerability in the Zigaform WordPress plugin allows attackers to inject malicious scripts into web pages. When users view pages containing the injected scripts, the attacker can steal session cookies, redirect users, or perform actions on their behalf. All WordPress sites using vulnerable versions of the Zigaform plugin are affected.

💻 Affected Systems

Products:
  • Zigaform – Price Calculator & Cost Estimation Form Builder Lite
Versions: n/a through 7.4.2
Operating Systems: All operating systems running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Only affects WordPress installations with the vulnerable plugin enabled. The vulnerability exists in the plugin's form builder functionality.

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Attackers could steal administrator session cookies, gain administrative access to WordPress sites, install backdoors, deface websites, or steal sensitive user data.

🟠

Likely Case

Attackers inject malicious JavaScript to steal user session cookies, redirect users to phishing sites, or perform actions on behalf of authenticated users.

🟢

If Mitigated

With proper input validation and output encoding, malicious scripts would be neutralized before being stored or displayed to users.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Stored XSS vulnerabilities are commonly exploited. While no public PoC is confirmed, the vulnerability type suggests exploitation is straightforward for attackers with basic web security knowledge.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 7.4.3 or later

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/zigaform-calculator-cost-estimation-form-builder-lite/vulnerability/wordpress-zigaform-price-calculator-cost-estimation-form-builder-lite-plugin-7-4-2-cross-site-scripting-xss-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins → Installed Plugins. 3. Find Zigaform plugin and click 'Update Now'. 4. Verify update completes successfully. 5. Clear any caching plugins or CDN caches.

🔧 Temporary Workarounds

Disable Zigaform Plugin

all

Temporarily disable the vulnerable plugin until patching is possible

wp plugin deactivate zigaform-calculator-cost-estimation-form-builder-lite

Implement WAF Rules

all

Add web application firewall rules to block XSS payloads targeting Zigaform endpoints

🧯 If You Can't Patch

  • Disable the Zigaform plugin immediately to prevent exploitation
  • Implement strict Content Security Policy (CSP) headers to mitigate XSS impact

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin → Plugins → Installed Plugins for Zigaform version. If version is 7.4.2 or earlier, you are vulnerable.

Check Version:

wp plugin get zigaform-calculator-cost-estimation-form-builder-lite --field=version

Verify Fix Applied:

After updating, verify plugin version shows 7.4.3 or later in WordPress admin panel.

📡 Detection & Monitoring

Log Indicators:

  • Unusual POST requests to Zigaform endpoints containing script tags or JavaScript code
  • Multiple failed XSS attempts in web server logs

Network Indicators:

  • HTTP requests containing common XSS payloads like <script>, javascript:, or onerror= to Zigaform endpoints

SIEM Query:

source="web_server_logs" AND (uri_path="/wp-admin/admin-ajax.php" OR uri_path CONTAINS "zigaform") AND (http_method="POST" OR http_method="GET") AND (request_body CONTAINS "<script>" OR request_body CONTAINS "javascript:" OR request_body CONTAINS "onerror=")

🔗 References

📤 Share & Export