Skip to main content
COSMICBYTEZLABS
NewsSecurityHOWTOsToolsStudyTraining
ProjectsNewsletterHire MeAbout
Subscribe

Press Enter to search or Esc to close

News
Security
HOWTOs
Tools
Study
Training
Projects
Newsletter
Hire Me
About
RSS Feed
Reading List
Subscribe

Stay in the Loop

Get the latest security alerts, tutorials, and tech insights delivered to your inbox.

Subscribe NowFree forever. No spam.
COSMICBYTEZLABS

Your trusted source for IT intelligence, cybersecurity insights, and hands-on technical guides.

1310+ Articles
157+ Guides

CONTENT

  • Latest News
  • Security Alerts
  • HOWTOs
  • Checklists
  • Projects
  • Exam Prep

RESOURCES

  • Search
  • Browse Tags
  • Newsletter Archive
  • Reading List
  • RSS Feed

COMPANY

  • About Us
  • Contact
  • Privacy Policy
  • Terms of Service

© 2026 CosmicBytez Labs. All rights reserved.

System Status: Operational
  1. Home
  2. Security
  3. CVE-2026-8732: WP Maps Pro Privilege Escalation via Admin Account Creation
CVE-2026-8732: WP Maps Pro Privilege Escalation via Admin Account Creation

Critical Security Alert

This vulnerability is actively being exploited. Immediate action is recommended.

SECURITYCRITICALCVE-2026-8732

CVE-2026-8732: WP Maps Pro Privilege Escalation via Admin Account Creation

A critical unauthenticated privilege escalation flaw in WP Maps Pro for WordPress (CVSS 9.8) allows attackers to create administrator accounts without...

Dylan H.

Security Team

May 29, 2026
4 min read

Affected Products

  • WP Maps Pro WordPress Plugin <= 6.1.0

Executive Summary

A critical privilege escalation vulnerability (CVE-2026-8732) has been identified in the WP Maps Pro plugin for WordPress, affecting all versions up to and including 6.1.0. The flaw carries a CVSS score of 9.8, reflecting its unauthenticated, network-exploitable nature.

The vulnerability allows an unauthenticated attacker to create administrator-level WordPress accounts without any credentials. The root cause is a misconfigured AJAX handler — wpgmp_temp_access_ajax — which is registered with WordPress's wp_ajax_nopriv_ hook (allowing unauthenticated access) and protected only by a nonce check that can be bypassed or obtained trivially.

Any WordPress site running WP Maps Pro version 6.1.0 or earlier should update immediately or disable the plugin until a patch is confirmed.


Vulnerability Overview

AttributeValue
CVE IDCVE-2026-8732
CVSS Score9.8 (Critical)
CWECWE-269 — Improper Privilege Management
TypePrivilege Escalation / Unauthenticated Admin Account Creation
Attack VectorNetwork
Privileges RequiredNone (unauthenticated)
User InteractionNone
Patch AvailableCheck vendor/Wordfence for latest status

Affected Versions

PluginAffected VersionsFixed Version
WP Maps Pro<= 6.1.0 (all versions)TBD — monitor plugin changelog

Technical Analysis

Root Cause

The WP Maps Pro plugin registers an AJAX action wpgmp_temp_access_ajax using WordPress's wp_ajax_nopriv_ hook. This hook makes the action accessible to unauthenticated users — anyone without a WordPress session.

The action is protected only by a nonce check using the fc-call nonce. However, nonces in WordPress are not secrets in the traditional sense — they can often be retrieved from publicly accessible pages or responses, making them insufficient as an authentication control when used in nopriv_ contexts.

The vulnerable handler ultimately performs a privileged operation: creating a WordPress administrator account. Because there is no capability or role check prior to this action, any HTTP request that satisfies the nonce requirement can trigger admin account creation.

Attack Flow

1. Attacker identifies a WordPress site running WP Maps Pro <= 6.1.0
2. Attacker retrieves the fc-call nonce from a public page
   (e.g., via the plugin's frontend assets or page source)
3. Attacker crafts a POST request to wp-admin/admin-ajax.php:
   - action: wpgmp_temp_access_ajax
   - nonce: [retrieved nonce]
   - username/email/password: [attacker-controlled values]
   - role: administrator
4. Plugin processes the request without verifying caller's authentication
5. WordPress creates a new administrator account with attacker's credentials
6. Attacker logs in as administrator with full site control

Why This Is Exploitable

  • wp_ajax_nopriv_ explicitly allows unauthenticated callers
  • Nonces are publicly observable via page source on many WordPress setups
  • No current_user_can() check is performed before account creation
  • The flaw requires no prior knowledge of existing users or credentials

Impact Assessment

Impact AreaDescription
Full Site TakeoverAttacker gains WordPress administrator access
Content ManipulationAdmin can modify, delete, or deface all content
Plugin/Theme AbuseMalicious plugins or backdoored themes can be installed
Data ExfiltrationAccess to all registered users, posts, and plugin data
Persistent AccessAttacker-created admin accounts survive plugin updates
SEO/Spam InjectionAdmin access enables SEO poisoning, spam content insertion
Hosting PivotShared hosting compromise can affect co-hosted sites

Immediate Remediation

Step 1: Update WP Maps Pro

Check the plugin's official WordPress.org repository or the vendor's website for a patched version and update immediately.

# Via WP-CLI
wp plugin update wp-maps-pro
 
# Verify installed version
wp plugin get wp-maps-pro --field=version

Or navigate to WordPress Admin > Plugins > Installed Plugins > WP Maps Pro > Update.

Step 2: Disable Plugin Until Patched

If an update is not available or cannot be applied immediately, deactivate the plugin:

# Via WP-CLI
wp plugin deactivate wp-maps-pro

Or use WordPress Admin > Plugins > WP Maps Pro > Deactivate.

Step 3: Audit for Unauthorized Accounts

# List all administrator accounts
wp user list --role=administrator --fields=user_login,user_email,user_registered
 
# Check for recently created admins (last 7 days)
wp db query "SELECT user_login, user_email, user_registered FROM wp_users
  WHERE user_registered > DATE_SUB(NOW(), INTERVAL 7 DAY);"
 
# Cross-reference with legitimate administrators

Step 4: Remove Malicious Accounts and Harden

# Delete unauthorized administrator accounts
wp user delete <suspicious-user-id> --reassign=<legitimate-admin-id>
 
# Regenerate WordPress secret keys
wp config shuffle-salts
 
# Invalidate all active sessions
wp db query "DELETE FROM wp_usermeta WHERE meta_key = 'session_tokens';"

Detection Indicators

IndicatorDescription
Unexpected administrator accountsAttacker-created persistent access accounts
POST requests to admin-ajax.php?action=wpgmp_temp_access_ajaxExploitation attempt in access logs
New users registered with recent timestamps and admin rolesPost-exploitation account creation
Unauthorized plugin installations or file modificationsActive post-compromise activity
Login events from unfamiliar IP addresses on admin accountsAttacker using created account

Post-Remediation Checklist

  1. Update WP Maps Pro to the latest patched version
  2. Disable the plugin if no patch is available
  3. Audit all administrator accounts — remove unauthorized entries
  4. Reset passwords for all legitimate administrators
  5. Regenerate WordPress secret keys via wp config shuffle-salts
  6. Invalidate all active sessions to force re-authentication
  7. Scan for webshells and backdoors in wp-content/ directory
  8. Review access logs for evidence of prior AJAX exploitation
  9. Enable two-factor authentication on all administrator accounts
  10. Deploy a WAF (Wordfence, Cloudflare, Sucuri) with WordPress-specific rules

References

  • NVD — CVE-2026-8732
  • Wordfence Vulnerability Database
  • WordPress Plugin Repository — WP Maps Pro
#CVE-2026-8732#WordPress#WP Maps Pro#Privilege Escalation#Account Takeover#Unauthenticated

Related Articles

CVE-2026-8206: Kirki WordPress Plugin Critical Privilege Escalation via Account Takeover

The Kirki Freeform Page Builder plugin for WordPress (versions 6.0.0–6.0.6) allows unauthenticated attackers to take over any user account during password reset by accepting an arbitrary email address, enabling full privilege escalation. CVSS 9.8.

5 min read

CVE-2026-3655: OTP Login WordPress Plugin Auth Bypass via Firebase Session Mismatch

A critical authentication bypass (CVSS 9.8) in the OTP Login With Phone Number WordPress plugin allows unauthenticated attackers to log in as any user due...

6 min read

CVE-2026-7459: WordPress Simple History Plugin Account Takeover

A broken authentication check in the Simple History WordPress plugin (versions up to 5.26.0) allows Subscriber-level users to take over any WordPress...

5 min read
Back to all Security Alerts