Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
CVE-2026-8732-POC | Kitploit
Tools/GitHubGitHub/p3nt3st3r-star/cve-2026-8732-poc
Privilege EscalationReconnaissanceVulnerability ScannersExploitationWeb Application ExploitationInformation GatheringPenetration Testing
GitHubp3nt3st3r-star/cve-2026-8732-poc

CVE-2026-8732-POC

View Repository
822 months agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

CVE-2026-8732 - WordPress WP Google Map Pro Mass Scanner & Auto Admin Creator

Python 2.7 License

📌 Description

This tool exploits CVE-2026-8732, a vulnerability in the WP Google Map Pro plugin for WordPress. The vulnerability allows an unauthenticated attacker to obtain a valid wpmp_token via an AJAX endpoint (admin-ajax.php?action=wpgmp_temp_access_ajax). Using this token, an attacker can access the WordPress admin panel and create a new administrator user.

The tool performs mass scanning from a list of domains, extracts the nonce and token, and automatically creates a hidden administrator account on vulnerable sites. Results are saved in real-time with full token details.

🔍 CVE Details

FieldValue
CVE IDCVE-2026-8732 (hypothetical for this plugin)
Affected PluginWP Google Map Pro (versions <= 1.5.0)
Vulnerability TypeBroken Access Control / Privilege Escalation
Attack VectorUnauthenticated, Remote
ImpactFull site takeover via admin account creation

✨ Features

  • Multi-threaded scanning (adjustable thread count)
  • Automatic nonce extraction from target homepage
  • Token extraction from JSON response
  • Real-time saving of vulnerable domains + full token
  • Automatic administrator account creation (language‑agnostic)
  • Saves created admin credentials to admin_created.txt
  • Supports both http:// and https://
  • Configurable admin username, password, email

📦 Requirements

  • Python 2.7
  • requests library

Install the required library:

root@kitploit:~
pip install requests

🚀 Installation

root@kitploit:~
git clone https://github.com/CVE-2026-8732-POC/CVE-2026-8732.git
cd CVE-2026-8732

🎯 Usage

Prepare a target list file (one domain per line):

root@kitploit:~
example.com
https://target-website.com
http://vulnerable-site.org

Run the scanner:

root@kitploit:~
python2 exploit.py targets.txt

Output Files

File Content res.txt Vulnerable domains with full token and redirect URL (if any) admin_created.txt Successfully created admin credentials (domain, username, password, email)

Example Output

root@kitploit:~
[*] Checking: https://example.com
[VULNERABLE] https://example.com -> Token found
[*] https://example.com -> Accessing redirect URL...
[+] https://example.com -> Admin created: securityaudit_1734567890 / StrongP@ssw0rd123!

⚙️ Configuration

Edit the following variables inside the script:

root@kitploit:~
TIMEOUT = 10               # Request timeout in seconds
JUMLAH_THREAD = 10         # Number of concurrent threads
OUTPUT_FILE = "res.txt"    # File for vulnerable results
ADMIN_FILE = "admin_created.txt"

BASE_USERNAME = "securityaudit"
NEW_PASSWORD = "StrongP@ssw0rd123!"
NEW_EMAIL = "[email protected]"

🧠 How It Works

  1. Nonce Extraction Sends a GET request to the target, extracts wpgmp_local or fc-call-nonce from HTML.
  2. Token Exploitation Sends a POST to /wp-admin/admin-ajax.php with action=wpgmp_temp_access_ajax and the obtained nonce.
  3. Admin Session Follows the redirect URL (if provided) to gain authenticated session cookies.
  4. Admin Creation Accesses /wp-admin/user-new.php, extracts _wpnonce_create-user, and submits a POST to create a new administrator user.
  5. Verification Checks for HTTP 302 redirect to users.php or searches for the new username in the users list to confirm success.

🛡️ Mitigation

· Update WP Google Map Pro to the latest patched version. · Disable the AJAX action wpgmp_temp_access_ajax via custom code or firewall. · Use a Web Application Firewall (WAF) to block malicious requests to admin-ajax.php.

Download Tool