CVE-2025-10740
📋 TL;DR
This vulnerability allows authenticated WordPress users with Subscriber-level access or higher to modify links through the URL Shortener Plugin's API without proper authorization. It affects all WordPress sites using this plugin up to version 3.0.7. Attackers can manipulate shortened URLs to redirect users to malicious sites.
💻 Affected Systems
- URL Shortener Plugin For WordPress
⚠️ 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 replace legitimate shortened URLs with phishing or malware distribution links, potentially compromising all users who click the links and leading to credential theft or malware infections.
Likely Case
Malicious subscribers or compromised accounts modify links to redirect users to phishing pages, adware sites, or competitor pages, damaging trust and potentially causing financial losses.
If Mitigated
With proper user role management and monitoring, impact is limited to unauthorized link modifications that can be detected and reverted before widespread damage.
🎯 Exploit Status
Requires authenticated access but only Subscriber-level privileges, which are commonly granted to regular users. Exploitation involves API calls to modify link data.
🛠️ Fix & Mitigation
✅ Official Fix
Patch Version: Version 3.0.8 or later
Vendor Advisory: https://plugins.trac.wordpress.org/browser/exact-links/trunk/app/Http/Routes/api.php
Restart Required: No
Instructions:
1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find 'URL Shortener Plugin For WordPress'. 4. Click 'Update Now' if available. 5. If no update appears, manually download version 3.0.8+ from WordPress.org and replace the plugin files.
🔧 Temporary Workarounds
Disable Plugin
allTemporarily disable the vulnerable plugin until patched
wp plugin deactivate exact-links
Restrict User Roles
allTemporarily remove Subscriber role from all users or limit who can have this role
🧯 If You Can't Patch
- Remove the URL Shortener plugin entirely and use alternative link shortening solutions
- Implement web application firewall rules to block suspicious API requests to the plugin endpoints
🔍 How to Verify
Check if Vulnerable:
Check WordPress admin panel > Plugins > Installed Plugins for 'URL Shortener Plugin For WordPress' version 3.0.7 or lower
Check Version:
wp plugin get exact-links --field=version
Verify Fix Applied:
Verify plugin version is 3.0.8 or higher in WordPress admin panel
📡 Detection & Monitoring
Log Indicators:
- Unusual API requests to /wp-json/exact-links/v1/ endpoints from Subscriber-level users
- Multiple link modification events from single user in short timeframe
Network Indicators:
- POST requests to plugin API endpoints from non-admin users
- Unusual traffic patterns to shortened URLs
SIEM Query:
source="wordpress.log" AND ("exact-links" OR "wp-json/exact-links") AND user_role="subscriber" AND action="modified"