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-2026-6457

CVE-2026-6457: Geo Mashup WordPress Plugin SQLi Flaw

CVE-2026-6457 is a time-based blind SQL injection vulnerability in the Geo Mashup WordPress plugin that allows authenticated attackers to extract sensitive database information. This article covers technical details, affected versions, and mitigation.

Published: May 7, 2026

CVE-2026-6457 Overview

CVE-2026-6457 is a time-based blind SQL injection vulnerability in the Geo Mashup plugin for WordPress. The flaw affects all versions up to and including 1.13.19. It exists in the handling of the geo_mashup_null_fields parameter, which is passed into a database query without sufficient escaping or use of prepared statements. Authenticated attackers holding subscriber-level access or higher can append SQL clauses to the existing query and exfiltrate sensitive data from the WordPress database. The issue is tracked under CWE-89, Improper Neutralization of Special Elements used in an SQL Command.

Critical Impact

Authenticated subscribers can extract password hashes, session tokens, API keys, and other sensitive data stored in the WordPress database.

Affected Products

  • Geo Mashup plugin for WordPress, all versions through 1.13.19
  • WordPress sites with the plugin enabled and subscriber registration permitted
  • Multisite WordPress installations using the affected plugin

Discovery Timeline

  • 2026-05-02 - CVE-2026-6457 published to NVD
  • 2026-05-05 - Last updated in NVD database

Technical Details for CVE-2026-6457

Vulnerability Analysis

The vulnerability is a time-based blind SQL injection. The plugin accepts the geo_mashup_null_fields parameter from authenticated requests and incorporates it into an SQL statement before that input has been escaped or bound through $wpdb->prepare(). Because no error output is returned to the client in this code path, attackers infer query results through deliberately injected timing functions such as SLEEP() or BENCHMARK(). Each conditional response is observed by measuring server response time, allowing byte-by-byte extraction of database contents.

The affected code paths are visible in the plugin source at geo-mashup-db.php line 1991, geo-mashup-ui-managers.php line 388, and geo-mashup.php line 567. The fix landed in changeset 3519909 on the plugin trunk.

Root Cause

The plugin treats the user-supplied geo_mashup_null_fields parameter as trusted input and concatenates it into an SQL statement. WordPress provides the $wpdb->prepare() API and esc_sql() helper specifically to prevent this class of bug, but neither was applied to this parameter. The result is that any string passed by the user becomes part of the SQL query syntax.

Attack Vector

Exploitation requires authentication at subscriber level or above, which is a low bar on WordPress sites that allow open registration. After authenticating, the attacker submits a crafted HTTP request that includes a malicious geo_mashup_null_fields value containing SQL syntax such as a UNION clause or a conditional SLEEP() payload. The injected SQL executes within the database context used by WordPress, granting read access to tables including wp_users and wp_options. See the Wordfence Vulnerability Report for additional analysis.

Detection Methods for CVE-2026-6457

Indicators of Compromise

  • HTTP requests containing the geo_mashup_null_fields parameter with SQL keywords such as SLEEP, BENCHMARK, UNION, SELECT, or OR 1=1.
  • Web server logs showing repeated requests from authenticated subscriber accounts with abnormally long server response times.
  • Unexpected outbound queries against wp_users or wp_usermeta correlated with plugin endpoints.

Detection Strategies

  • Inspect access logs for POST or GET requests to Geo Mashup endpoints carrying URL-encoded SQL syntax in geo_mashup_null_fields.
  • Apply web application firewall (WAF) signatures targeting time-based blind SQLi patterns on WordPress admin-ajax routes.
  • Enable MySQL general or slow query logging to capture queries containing SLEEP() invocations originating from the plugin.

Monitoring Recommendations

  • Alert on newly created subscriber accounts followed by repeated requests to plugin endpoints within a short window.
  • Track the distribution of HTTP response times per authenticated user; statistical outliers indicate time-based probing.
  • Forward WordPress and database logs to a centralized analytics platform for correlation with authentication events.

How to Mitigate CVE-2026-6457

Immediate Actions Required

  • Update the Geo Mashup plugin to the version released in changeset 3519909, which is the first release after 1.13.19.
  • Audit WordPress user accounts and remove unused subscriber accounts; disable open registration where it is not required.
  • Rotate WordPress secret keys, administrator passwords, and any API tokens stored in wp_options if compromise is suspected.

Patch Information

The vendor remediated the issue in the plugin trunk via changeset 3519909. The fix introduces proper escaping and prepared-statement handling for the geo_mashup_null_fields parameter on the affected code paths in geo-mashup-db.php, geo-mashup-ui-managers.php, and geo-mashup.php. Site administrators should upgrade to the patched release immediately.

Workarounds

  • Deactivate and remove the Geo Mashup plugin until the patched version can be deployed.
  • Restrict access to plugin endpoints with a WAF rule that blocks SQL metacharacters in the geo_mashup_null_fields parameter.
  • Temporarily revoke subscriber-level capabilities for untrusted users and disable self-registration via the WordPress general settings.
bash
# Configuration example: WP-CLI commands to mitigate exposure
wp plugin update geo-mashup
wp option update users_can_register 0
wp user list --role=subscriber --field=ID | xargs -I{} wp user get {}

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

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechWordpress

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-89
  • Technical References
  • WordPress Plugin Source Code

  • WordPress Plugin Source Code

  • WordPress Plugin Source Code

  • WordPress Plugin Source Code

  • WordPress Plugin Source Code

  • WordPress Plugin Source Code

  • WordPress Plugin Change Log

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2026-4348: BetterDocs Pro WordPress SQLi Vulnerability

  • CVE-2026-1719: Gravity Bookings Premium SQLi Vulnerability

  • CVE-2026-4060: Geo Mashup WordPress Plugin SQLi Flaw

  • CVE-2026-4062: Geo Mashup WordPress Plugin SQLi Flaw
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