CVE-2025-12348

5.3 MEDIUM

📋 TL;DR

This vulnerability allows unauthenticated attackers to execute scheduled actions in the Icegram Express WordPress plugin by guessing action IDs. This could trigger email sends, maintenance tasks, or other privileged operations without authorization. WordPress sites using vulnerable plugin versions are affected.

💻 Affected Systems

Products:
  • Icegram Express - Email Subscribers, Newsletters and Marketing Automation Plugin for WordPress
Versions: Up to and including 5.9.10
Operating Systems: All
Default Config Vulnerable: ⚠️ Yes
Notes: All WordPress installations with 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 trigger mass email campaigns, exhaust server resources through repeated task execution, or manipulate plugin data causing service disruption.

🟠

Likely Case

Unauthorized email sends, unexpected maintenance tasks running, and increased server resource usage from repeated action execution.

🟢

If Mitigated

Limited impact with proper network controls and monitoring, but still represents an authentication bypass vulnerability.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Exploitation requires guessing action IDs, which may be predictable depending on implementation.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 5.9.11 or later

Vendor Advisory: https://plugins.trac.wordpress.org/changeset/3394838/email-subscribers/trunk/lite/includes/classes/class-ig-es-background-process-helper.php

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins. 3. Find Icegram Express plugin. 4. Click 'Update Now' if available. 5. Alternatively, download version 5.9.11+ from WordPress repository and manually update.

🔧 Temporary Workarounds

Disable vulnerable endpoint via .htaccess

linux

Block access to the vulnerable function endpoint

# Add to .htaccess in WordPress root directory
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{QUERY_STRING} action=run_action_scheduler_task [NC]
RewriteRule .* - [F,L]
</IfModule>

🧯 If You Can't Patch

  • Temporarily disable the Icegram Express plugin until patching is possible
  • Implement web application firewall rules to block requests containing 'run_action_scheduler_task' parameter

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > Icegram Express version. If version is 5.9.10 or lower, system is vulnerable.

Check Version:

wp plugin list --name='Icegram Express' --field=version

Verify Fix Applied:

Verify plugin version is 5.9.11 or higher in WordPress admin panel.

📡 Detection & Monitoring

Log Indicators:

  • Unusual POST requests to WordPress with 'action=run_action_scheduler_task' parameter
  • Spike in email sending activity from WordPress
  • Increased server resource usage from plugin tasks

Network Indicators:

  • HTTP requests containing 'run_action_scheduler_task' from unexpected IP addresses

SIEM Query:

source="wordpress_access.log" AND "run_action_scheduler_task" AND NOT user_agent="WordPress/*"

🔗 References

📤 Share & Export