CVE-2026-1357
📋 TL;DR
This vulnerability allows unauthenticated attackers to upload arbitrary PHP files to WordPress sites using the WPvivid Backup & Migration plugin, leading to remote code execution. It affects all WordPress sites running vulnerable plugin versions up to 0.9.123. Attackers can take complete control of affected websites.
💻 Affected Systems
- WPvivid Backup & Migration 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 compromise with attacker gaining full administrative access, data theft, malware distribution, and website defacement.
Likely Case
Attackers upload web shells to gain persistent access, install backdoors, steal sensitive data, and use the site for further attacks.
If Mitigated
With proper web application firewalls and file upload restrictions, exploitation attempts would be blocked, limiting impact to failed attack attempts.
🎯 Exploit Status
The vulnerability requires no authentication and has publicly available technical details, making exploitation straightforward.
🛠️ Fix & Mitigation
✅ Official Fix
Patch Version: 0.9.124 or later
Vendor Advisory: https://wordpress.org/plugins/wpvivid-backuprestore/#developers
Restart Required: No
Instructions:
1. Log into WordPress admin panel. 2. Navigate to Plugins → Installed Plugins. 3. Find WPvivid Backup & Migration. 4. Click 'Update Now' if available. 5. If no update shows, manually download version 0.9.124+ from WordPress.org and replace plugin files.
🔧 Temporary Workarounds
Disable vulnerable plugin
allTemporarily disable the WPvivid Backup & Migration plugin until patched
wp plugin deactivate wpvivid-backuprestore
Restrict file uploads
linuxAdd web server rules to block uploads to wp-content/uploads/wpvivid_backup directory
# Add to .htaccess for Apache:
<LocationMatch "^/wp-content/uploads/wpvivid_backup/.*\.php$">
Deny from all
</LocationMatch>
# Add to nginx config:
location ~ ^/wp-content/uploads/wpvivid_backup/.*\.php$ {
deny all;
}
🧯 If You Can't Patch
- Immediately disable the WPvivid Backup & Migration plugin
- Implement a web application firewall (WAF) with rules to block requests containing 'wpvivid_action=send_to_site'
🔍 How to Verify
Check if Vulnerable:
Check plugin version in WordPress admin under Plugins → Installed Plugins. If WPvivid Backup & Migration version is 0.9.123 or lower, you are vulnerable.
Check Version:
wp plugin get wpvivid-backuprestore --field=version
Verify Fix Applied:
Verify plugin version is 0.9.124 or higher in WordPress admin panel.
📡 Detection & Monitoring
Log Indicators:
- HTTP POST requests containing 'wpvivid_action=send_to_site'
- File uploads to wp-content/uploads/wpvivid_backup directory
- PHP file creation in unexpected locations
Network Indicators:
- POST requests to /wp-admin/admin-ajax.php with wpvivid_action parameter
- Unusual file upload patterns to WordPress directories
SIEM Query:
source="web_logs" AND (uri_path="*admin-ajax.php*" AND post_data="*wpvivid_action=send_to_site*")
🔗 References
- https://plugins.trac.wordpress.org/browser/wpvivid-backuprestore/tags/0.9.122/includes/class-wpvivid-crypt.php#L58
- https://plugins.trac.wordpress.org/browser/wpvivid-backuprestore/tags/0.9.122/includes/customclass/class-wpvivid-send-to-site.php#L629
- https://plugins.trac.wordpress.org/browser/wpvivid-backuprestore/tags/0.9.123/includes/class-wpvivid-crypt.php#L58
- https://plugins.trac.wordpress.org/browser/wpvivid-backuprestore/tags/0.9.123/includes/customclass/class-wpvivid-send-to-site.php#L629
- https://plugins.trac.wordpress.org/browser/wpvivid-backuprestore/trunk/includes/class-wpvivid-crypt.php#L58
- https://plugins.trac.wordpress.org/browser/wpvivid-backuprestore/trunk/includes/customclass/class-wpvivid-send-to-site.php#L629
- https://plugins.trac.wordpress.org/changeset/3448386/wpvivid-backuprestore#file1
- https://www.wordfence.com/threat-intel/vulnerabilities/id/e5af0317-ef46-4744-9752-74ce228b5f37?source=cve