CVE-2026-1916
📋 TL;DR
The WPGSI: Spreadsheet Integration plugin for WordPress has critical REST API endpoints that lack proper authentication and authorization checks. Unauthenticated attackers can forge tokens using publicly available administrator information to create, modify, and delete WordPress posts and pages. All WordPress sites using this plugin up to version 3.8.3 are affected.
💻 Affected Systems
- WPGSI: Spreadsheet Integration 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
Complete website defacement, data destruction, or injection of malicious content leading to further compromise.
Likely Case
Unauthorized modification or deletion of posts/pages, potentially disrupting website functionality.
If Mitigated
No impact if proper authentication and authorization controls are implemented.
🎯 Exploit Status
Exploitation requires knowledge of administrator email address and an active integration ID with remote updates enabled.
🛠️ Fix & Mitigation
✅ Official Fix
Patch Version: 3.8.4 or later
Vendor Advisory: https://wordpress.org/plugins/wpgsi/
Restart Required: No
Instructions:
1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find 'WPGSI: Spreadsheet Integration'. 4. Click 'Update Now' if available. 5. Alternatively, download latest version from WordPress plugin repository and manually update.
🔧 Temporary Workarounds
Disable vulnerable REST endpoints
allRemove or restrict access to the wpgsi_callBackFuncAccept and wpgsi_callBackFuncUpdate REST API endpoints.
Add to theme's functions.php or custom plugin: remove_action('rest_api_init', 'wpgsi_register_rest_routes');
Block plugin REST endpoints at web server
allConfigure web server to block requests to vulnerable endpoints.
For Apache: RewriteRule ^wp-json/wpgsi/.* - [F]
For Nginx: location ~* ^/wp-json/wpgsi/ { deny all; }
🧯 If You Can't Patch
- Immediately disable the WPGSI plugin entirely.
- Implement strict network access controls to block external access to WordPress REST API endpoints.
🔍 How to Verify
Check if Vulnerable:
Check WordPress admin panel > Plugins > Installed Plugins for WPGSI version 3.8.3 or earlier.
Check Version:
wp plugin list --name=wpgsi --field=version
Verify Fix Applied:
Confirm WPGSI plugin version is 3.8.4 or later in WordPress admin panel.
📡 Detection & Monitoring
Log Indicators:
- Unusual POST requests to /wp-json/wpgsi/v1/ endpoints from unauthenticated IPs
- Sudden modifications to posts/pages without corresponding user activity
Network Indicators:
- HTTP requests to /wp-json/wpgsi/v1/callback or /wp-json/wpgsi/v1/update without authentication headers
SIEM Query:
source="wordpress" AND (url="/wp-json/wpgsi/v1/callback" OR url="/wp-json/wpgsi/v1/update") AND http_method="POST" AND user_agent!="WordPress/*"
🔗 References
- https://plugins.trac.wordpress.org/browser/wpgsi/tags/3.8.3/admin/class-wpgsi-update.php#L116
- https://plugins.trac.wordpress.org/browser/wpgsi/tags/3.8.3/admin/class-wpgsi-update.php#L636
- https://plugins.trac.wordpress.org/browser/wpgsi/tags/3.8.3/admin/class-wpgsi-update.php#L94
- https://plugins.trac.wordpress.org/browser/wpgsi/trunk/admin/class-wpgsi-update.php#L116
- https://plugins.trac.wordpress.org/browser/wpgsi/trunk/admin/class-wpgsi-update.php#L636
- https://plugins.trac.wordpress.org/browser/wpgsi/trunk/admin/class-wpgsi-update.php#L94
- https://plugins.trac.wordpress.org/changeset/3461326/wpgsi/trunk/admin/class-wpgsi-update.php
- https://www.wordfence.com/threat-intel/vulnerabilities/id/7598b38b-26b1-4640-9bd7-60613a5f704d?source=cve