The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2025-11307

CVE-2025-11307: WP Go Maps XSS Vulnerability

CVE-2025-11307 is a stored cross-site scripting flaw in WP Go Maps WordPress plugin that allows unauthenticated attackers to inject malicious scripts. This article covers technical details, affected versions, and mitigation.

Updated: May 11, 2026

CVE-2025-11307 Overview

CVE-2025-11307 is a stored Cross-Site Scripting (XSS) vulnerability in the WP Go Maps WordPress plugin, formerly known as WP Google Maps. Versions before 9.0.48 fail to sanitize user input submitted through an AJAX action. Unauthenticated attackers can store malicious JavaScript payloads on the target site. The payloads are later retrieved through a separate AJAX call and output to the page without escaping. The vulnerability impacts confidentiality, integrity, and availability when administrators or other users trigger the affected AJAX response.

Critical Impact

Unauthenticated remote attackers can inject persistent JavaScript that executes in the browsers of site visitors and administrators, enabling session theft, account takeover, and full administrative compromise of the WordPress site.

Affected Products

  • WP Go Maps (formerly WP Google Maps) WordPress plugin versions before 9.0.48
  • WordPress sites with the vulnerable plugin active and AJAX endpoints reachable
  • Any WordPress installation exposing the affected wpgmza AJAX handlers to anonymous users

Discovery Timeline

  • 2025-11-11 - CVE-2025-11307 published to NVD
  • 2026-04-15 - Last updated in NVD database

Technical Details for CVE-2025-11307

Vulnerability Analysis

The flaw is a stored Cross-Site Scripting issue [CWE-79] reachable without authentication. The plugin exposes an AJAX action that accepts user-controlled input. The handler writes the input to persistent storage without applying sanitization functions such as wp_kses or sanitize_text_field. A second AJAX action later retrieves that stored data and echoes it into the response without escaping helpers such as esc_html or esc_attr. When the response is rendered in a browser context, the injected JavaScript executes under the origin of the WordPress site.

The EPSS score of 2.635% (85th percentile) reflects elevated probability of exploitation activity against vulnerable installations. WordPress plugins with large install bases are routinely scanned by mass-exploitation tooling once a stored XSS is publicly documented.

Root Cause

The root cause is missing input sanitization on write and missing output escaping on read. The AJAX endpoint trusts unauthenticated request parameters. WordPress security guidance requires sanitizing on input and escaping on output, and the plugin performs neither for the affected fields.

Attack Vector

An attacker sends a crafted AJAX request to the vulnerable admin-ajax.php action with a JavaScript payload in the targeted parameter. The payload is stored server-side. When an administrator or visitor loads a page that invokes the second AJAX action, the stored payload is returned and rendered, executing in their session. Because no privileges are required and the action is network-reachable, exploitation can be fully automated. See the WPScan Vulnerability Report for additional technical context.

No verified public exploit code is referenced in the advisory. Technical details are described in prose per the vendor disclosure.

Detection Methods for CVE-2025-11307

Indicators of Compromise

  • POST requests to /wp-admin/admin-ajax.php with action parameters tied to wpgmza handlers originating from unauthenticated sessions
  • Stored database entries in WP Go Maps tables containing <script>, onerror=, onload=, or javascript: substrings
  • Unexpected outbound requests from administrator browsers to attacker-controlled domains after viewing map-related admin pages
  • New or modified WordPress administrator accounts created shortly after suspicious AJAX traffic

Detection Strategies

  • Inspect web server access logs for anonymous POSTs to admin-ajax.php containing encoded HTML or script characters in parameters
  • Query WP Go Maps plugin tables for rows containing HTML tag characters in fields expected to hold plain text
  • Monitor WordPress audit logs for privilege changes, plugin installations, or option modifications that follow AJAX activity from external IPs

Monitoring Recommendations

  • Enable a web application firewall with rules covering stored XSS payload patterns against WordPress AJAX endpoints
  • Forward WordPress, PHP, and web server logs to a centralized analytics platform and alert on unauthenticated writes to plugin AJAX actions
  • Track plugin version inventory across WordPress sites and alert when WP Go Maps reports a version below 9.0.48

How to Mitigate CVE-2025-11307

Immediate Actions Required

  • Update WP Go Maps to version 9.0.48 or later on every WordPress site that runs the plugin
  • Audit the plugin's database tables for previously injected script content and remove malicious entries
  • Rotate administrator credentials and invalidate active sessions if exploitation indicators are present
  • Review recently created users, modified options, and installed plugins for unauthorized changes

Patch Information

The vendor addressed the issue in WP Go Maps 9.0.48 by adding sanitization on the AJAX write path and escaping on the AJAX read path. Site operators should apply the update through the WordPress plugin manager or WP-CLI. Details are available in the WPScan Vulnerability Report.

Workarounds

  • Deactivate the WP Go Maps plugin until the patched version can be installed
  • Restrict access to admin-ajax.php for unauthenticated users at the WAF or reverse proxy layer for the affected wpgmza actions
  • Apply a Content Security Policy that disallows inline scripts to reduce the impact of stored XSS execution in administrator browsers
bash
# Update WP Go Maps using WP-CLI
wp plugin update wp-google-maps --version=9.0.48
wp plugin list --name=wp-google-maps --fields=name,status,version

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechWp Go Maps

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability2.63%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityHigh
  • AvailabilityHigh
  • Technical References
  • WPScan Vulnerability Report
  • Related CVEs
  • CVE-2026-0593: WP Go Maps Auth Bypass Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English