Overview A critical vulnerability, CVE‑2026‑8732, has been discovered in the WP Maps Pro plugin — a premium WordPress tool used for building interactive maps and store locators. The flaw allows unauthenticated attackers to create rogue administrator accounts, giving them full control over affected websites.
Security researcher David Brown identified the issue, which impacts versions 6.1.0 and older. The plugin, popular among businesses, real‑estate platforms, and travel directories, has over 15,800 sales on the Envato Market.

How the Exploit Works
The vulnerability stems from a “temporary access” feature designed to let vendor support staff troubleshoot customer sites.
However, the AJAX endpoint responsible for this feature was accessible to unauthenticated users and relied solely on a publicly exposed nonce check in frontend JavaScript — rendering the protection ineffective.
Attackers can send a crafted request that triggers code to:
- Create a new WordPress user using
wp_insert_user()with the administrator role. - Assign a random username and hardcoded email (
support@flippercode.com). - Generate a passwordless login URL using
generate_login_link(). - Send the URL to a remote system, allowing instant admin access without authentication.
Researchers at Defiant (Wordfence) observed over 3,600 exploit attempts in just 24 hours, confirming active exploitation.
Technical Breakdown
When the request includes check_temp=false, the plugin executes the vulnerable function, creating a new admin user and returning the magic login URL in the response body.
Once attackers access this URL, they gain full administrator privileges, enabling them to:
- Inject persistent backdoors
- Modify website content
- Access private data
- Deploy web shells
- Install malicious plugins
This level of access effectively hands over complete control of the site to the attacker.
Mitigation & Response
- Update immediately to version 6.1.1, which patches CVE‑2026‑8732.
- Audit user accounts for unknown administrators.
- Review server logs for unauthorized AJAX requests.
- Implement web application firewalls to block exploit attempts.
- Backup and verify site integrity regularly.
Brown reported the flaw to Wordfence on March 24, and the vendor released a fix on May 20, 2026. Administrators should act swiftly, as malicious activity is already underway.
Expert in the Cloud Insight
This incident underscores the importance of secure plugin design and responsible feature exposure. Even well‑intentioned support tools can become attack vectors when authentication is poorly implemented.
For enterprises running WordPress, the lesson is clear:
- Treat third‑party plugins as potential entry points.
- Enforce least‑privilege principles.
- Maintain continuous vulnerability monitoring.
In the evolving threat landscape, plugin security hygiene is as critical as patching core WordPress itself.
Leave a Reply