CVE-2025-12891

5.3 MEDIUM

📋 TL;DR

The Survey Maker WordPress plugin has an authentication bypass vulnerability that allows unauthenticated attackers to view all survey submissions. This affects all WordPress sites using Survey Maker plugin versions up to 5.1.9.4. The vulnerability exists in an AJAX endpoint that lacks proper capability checks.

💻 Affected Systems

Products:
  • Survey Maker WordPress Plugin
Versions: All versions up to and including 5.1.9.4
Operating Systems: All
Default Config Vulnerable: ⚠️ Yes
Notes: Only affects WordPress installations with Survey Maker plugin installed and active.

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

All survey responses containing potentially sensitive user data are exposed to unauthorized parties, leading to data breach and privacy violations.

🟠

Likely Case

Unauthorized access to survey results containing personal information, preferences, or other sensitive data submitted by users.

🟢

If Mitigated

Limited exposure if surveys don't collect sensitive data, but still violates data privacy expectations.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Simple HTTP request to vulnerable endpoint with no authentication required.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 5.1.9.5

Vendor Advisory: https://plugins.trac.wordpress.org/changeset/3394078/survey-maker/tags/5.1.9.5/admin/class-survey-maker-admin.php

Restart Required: No

Instructions:

1. Log into WordPress admin panel
2. Navigate to Plugins → Installed Plugins
3. Find Survey Maker plugin
4. Click 'Update Now' if available
5. Or download version 5.1.9.5+ from WordPress repository
6. Deactivate old version and upload new version
7. Activate updated plugin

🔧 Temporary Workarounds

Disable vulnerable AJAX endpoint

all

Add capability check to block unauthorized access to the vulnerable endpoint

Add capability check in WordPress theme functions.php or custom plugin:
add_action('wp_ajax_ays_survey_show_results', 'secure_survey_endpoint', 1);
add_action('wp_ajax_nopriv_ays_survey_show_results', 'secure_survey_endpoint', 1);
function secure_survey_endpoint() {
    if (!current_user_can('manage_options')) {
        wp_die('Unauthorized access');
    }
}

🧯 If You Can't Patch

  • Deactivate Survey Maker plugin immediately
  • Implement web application firewall rules to block requests to /wp-admin/admin-ajax.php with action=ays_survey_show_results

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel → Plugins → Survey Maker version. If version is 5.1.9.4 or lower, system is vulnerable.

Check Version:

wp plugin list --name=survey-maker --field=version (if WP-CLI installed)

Verify Fix Applied:

After update, verify plugin version shows 5.1.9.5 or higher in WordPress admin panel.

📡 Detection & Monitoring

Log Indicators:

  • Multiple POST requests to /wp-admin/admin-ajax.php with action=ays_survey_show_results from unauthenticated users
  • Unusual access patterns to survey results pages

Network Indicators:

  • HTTP POST requests to WordPress AJAX endpoint with specific action parameter
  • Traffic to survey results without authentication cookies

SIEM Query:

source="web_logs" AND uri="/wp-admin/admin-ajax.php" AND post_data="action=ays_survey_show_results" AND NOT user_agent="WordPress/*"

🔗 References

📤 Share & Export