CVE-2025-25110

5.4 MEDIUM

📋 TL;DR

This CVE describes a missing authorization vulnerability in the Metagauss Event Kikfyre WordPress plugin that allows attackers to bypass access controls. It affects all versions up to 2.1.8, potentially enabling unauthorized access to restricted functionality. WordPress sites using this vulnerable plugin are affected.

💻 Affected Systems

Products:
  • Metagauss Event Kikfyre (WordPress plugin)
Versions: n/a through 2.1.8
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: All WordPress installations using 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 modify or delete events, access sensitive attendee data, or manipulate ticket sales without authorization.

🟠

Likely Case

Unauthorized users accessing or modifying event data they shouldn't have permission to view or edit.

🟢

If Mitigated

Proper access controls would prevent any unauthorized access, limiting functionality to authorized users only.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Exploitation requires some understanding of WordPress plugin structure but doesn't require advanced technical skills.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 2.1.9 or later

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/kikfyre-events-calendar-tickets/vulnerability/wordpress-event-kikfyre-plugin-2-1-8-broken-access-control-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel
2. Navigate to Plugins → Installed Plugins
3. Find 'Event Kikfyre' plugin
4. Click 'Update Now' if update is available
5. If no update appears, manually download version 2.1.9+ from WordPress repository
6. Deactivate old version, upload new version, activate

🔧 Temporary Workarounds

Temporary Plugin Deactivation

all

Disable the vulnerable plugin until patched version is available

wp plugin deactivate kikfyre-events-calendar-tickets

Access Restriction via .htaccess

linux

Restrict access to plugin directories

# Add to .htaccess in plugin directory:
Order Deny,Allow
Deny from all

🧯 If You Can't Patch

  • Implement strict network access controls to limit who can access the WordPress admin interface
  • Enable detailed logging and monitoring for unauthorized access attempts to event management functions

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin → Plugins → Installed Plugins → Event Kikfyre version. If version is 2.1.8 or earlier, you are vulnerable.

Check Version:

wp plugin get kikfyre-events-calendar-tickets --field=version

Verify Fix Applied:

After update, verify plugin version shows 2.1.9 or later in WordPress admin panel.

📡 Detection & Monitoring

Log Indicators:

  • Unauthorized POST requests to /wp-admin/admin-ajax.php with kikfyre-related actions
  • Multiple failed authorization attempts on event management pages

Network Indicators:

  • Unusual traffic patterns to plugin-specific endpoints from unauthorized IPs

SIEM Query:

source="wordpress.log" AND (uri_path="/wp-admin/admin-ajax.php" AND action="*kikfyre*") AND user="unauthenticated"

🔗 References

📤 Share & Export