CVE-2026-1310

5.3 MEDIUM

📋 TL;DR

The Simple calendar for Elementor WordPress plugin has a missing authorization vulnerability that allows unauthenticated attackers to delete arbitrary calendar entries. This affects all versions up to and including 1.6.6. Any WordPress site using this vulnerable plugin is at risk.

💻 Affected Systems

Products:
  • Simple calendar for Elementor WordPress plugin
Versions: All versions up to and including 1.6.6
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress with the vulnerable plugin installed and activated. The vulnerability is present in default configurations.

⚠️ 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 delete all calendar entries, causing data loss and disrupting website functionality that depends on calendar data.

🟠

Likely Case

Attackers delete some calendar entries, causing minor to moderate disruption to website content and user experience.

🟢

If Mitigated

With proper authorization controls, only authorized users can delete calendar entries, preventing unauthorized modifications.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Exploitation requires sending a crafted AJAX request with a valid nonce and calendar entry ID. Nonces can be obtained from other plugin pages.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Versions after 1.6.6

Vendor Advisory: https://plugins.trac.wordpress.org/changeset?sfp_email=&sfph_mail=&reponame=&old=3444617%40simple-calendar-for-elementor&new=3444617%40simple-calendar-for-elementor&sfp_email=&sfph_mail=

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find 'Simple calendar for Elementor'. 4. Click 'Update Now' if available, or manually update to latest version. 5. Verify plugin version is above 1.6.6.

🔧 Temporary Workarounds

Disable vulnerable AJAX endpoint

all

Remove the vulnerable AJAX action hook to prevent exploitation

Add to theme's functions.php or custom plugin: remove_action('wp_ajax_nopriv_miga_editor_cal_delete', 'miga_ajax_editor_cal_delete'); remove_action('wp_ajax_miga_editor_cal_delete', 'miga_ajax_editor_cal_delete');

Temporarily disable plugin

linux

Deactivate the plugin until patched

wp plugin deactivate simple-calendar-for-elementor

🧯 If You Can't Patch

  • Implement web application firewall (WAF) rules to block requests to the miga_editor_cal_delete AJAX endpoint
  • Restrict access to WordPress admin and AJAX endpoints using IP whitelisting or authentication

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin > Plugins > Installed Plugins for 'Simple calendar for Elementor' version 1.6.6 or lower

Check Version:

wp plugin list --name='simple-calendar-for-elementor' --field=version

Verify Fix Applied:

Verify plugin version is above 1.6.6 in WordPress admin panel

📡 Detection & Monitoring

Log Indicators:

  • HTTP POST requests to /wp-admin/admin-ajax.php with action=miga_editor_cal_delete
  • Unusual calendar entry deletions in plugin logs

Network Indicators:

  • POST requests to admin-ajax.php with miga_editor_cal_delete parameter from unexpected IPs

SIEM Query:

source="web_logs" AND uri="/wp-admin/admin-ajax.php" AND method="POST" AND params.action="miga_editor_cal_delete"

🔗 References

📤 Share & Export