CVE-2025-24749
📋 TL;DR
A Cross-Site Request Forgery (CSRF) vulnerability in Overt Software Solutions LTD's EZPZ SAML SP Single Sign On (SSO) WordPress plugin allows attackers to trick authenticated administrators into performing unintended actions. This affects all WordPress sites using the plugin versions up to and including 1.2.5. The vulnerability could lead to stored XSS attacks through CSRF.
💻 Affected Systems
- EZPZ SAML SP Single Sign On (SSO) WordPress Plugin
⚠️ 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.
- Review the CVE details at NVD
- Check vendor security advisories for your specific version
- Test if the vulnerability is exploitable in your environment
- Consider updating to the latest version as a precaution
⚠️ Risk & Real-World Impact
Worst Case
Attackers could create malicious administrator accounts, modify plugin settings to enable XSS payloads, or redirect users to malicious sites, potentially leading to complete site compromise.
Likely Case
Attackers trick administrators into changing plugin configurations that enable stored XSS, allowing session hijacking or credential theft from site visitors.
If Mitigated
With proper CSRF tokens and same-origin policies, the attack would fail, preventing unauthorized configuration changes.
🎯 Exploit Status
Exploitation requires tricking an authenticated administrator into clicking a malicious link while logged in.
🛠️ Fix & Mitigation
✅ Official Fix
Patch Version: Version after 1.2.5
Restart Required: No
Instructions:
1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find 'EZPZ SAML SP Single Sign On (SSO)'. 4. Click 'Update Now' if available. 5. If no update appears, manually download latest version from WordPress repository and replace plugin files.
🔧 Temporary Workarounds
Disable Plugin
WordPressTemporarily disable the vulnerable plugin until patched
wp plugin deactivate ezpz-sp
🧯 If You Can't Patch
- Implement strict Content Security Policy (CSP) headers to mitigate XSS impact
- Use browser extensions that block CSRF attempts for administrators
🔍 How to Verify
Check if Vulnerable:
Check WordPress admin panel > Plugins > Installed Plugins for EZPZ SAML SP Single Sign On (SSO) version 1.2.5 or earlier
Check Version:
wp plugin get ezpz-sp --field=version
Verify Fix Applied:
Verify plugin version is higher than 1.2.5 in WordPress admin panel
📡 Detection & Monitoring
Log Indicators:
- Unexpected plugin configuration changes in WordPress logs
- Multiple failed authentication attempts followed by successful admin actions
Network Indicators:
- Unusual POST requests to wp-admin/admin-ajax.php from non-admin IPs
- Cross-origin requests to plugin endpoints
SIEM Query:
source="wordpress.log" AND ("ezpz-sp" OR "saml") AND ("updated" OR "changed" OR "saved")