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-4060

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

CVE-2026-4060 is a time-based SQL injection vulnerability in the Geo Mashup WordPress plugin affecting versions up to 1.13.18. Unauthenticated attackers can extract database information. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: May 7, 2026

CVE-2026-4060 Overview

CVE-2026-4060 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.18 and is reachable through the sort parameter. Unauthenticated attackers can append arbitrary SQL to existing queries and extract sensitive data from the WordPress database.

The issue stems from improper handling of user input in an ORDER BY clause. The plugin applies esc_sql(), but that function does not protect unquoted identifiers, leaving the query exploitable. The vulnerability is classified under CWE-89 (SQL Injection).

Critical Impact

Unauthenticated remote attackers can exfiltrate database contents — including user credentials and session data — through time-based blind SQL injection against any WordPress site running the Geo Mashup plugin.

Affected Products

  • Geo Mashup plugin for WordPress, all versions up to and including 1.13.18
  • WordPress sites using the render-map.php code path
  • WordPress sites using Geo Mashup template tag code paths

Discovery Timeline

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

Technical Details for CVE-2026-4060

Vulnerability Analysis

The vulnerability exists in the database query logic of the Geo Mashup plugin. The sort parameter is incorporated into an ORDER BY clause within the query construction performed in geo-mashup-db.php around lines 1767 and 1785. Because ORDER BY accepts column identifiers rather than quoted string literals, the value is interpolated into the SQL statement without surrounding quotes.

The plugin calls esc_sql() on the input, but this WordPress sanitizer escapes characters that would break out of quoted string contexts. With no quotes present, the escaping has no protective effect, and an attacker can inject SQL syntax directly. The maintainers added an allowlist sanitizer named sanitize_sort_arg() in version 1.13.18, but the patch was incomplete. The sanitizer is invoked only by sanitize_query_args() along the AJAX path, leaving render-map.php (line 166) and template tag entry points still vulnerable.

Exploitation does not require authentication and proceeds through normal HTTP requests. Attackers use time-based payloads — typically constructs that conditionally invoke SLEEP() — to infer query results from response latency. Because the injection point sits inside ORDER BY, payloads commonly leverage CASE expressions or subqueries to trigger the delay.

Root Cause

The root cause is the use of an ineffective sanitizer for the SQL context. esc_sql() is designed for quoted string literals and does not neutralize identifiers or expressions used in ORDER BY. The corrective control, sanitize_sort_arg(), enforces an allowlist of valid sort column names but is wired into only one of multiple code paths that consume the sort parameter.

Attack Vector

A remote, unauthenticated attacker sends an HTTP request to a page or endpoint that renders a Geo Mashup map with a controllable sort parameter. The attacker substitutes a time-based blind SQL injection payload for the parameter value. The server executes the modified query, and response delay reveals one bit of database content per request. Iterative requests reconstruct full column values such as wp_users.user_pass hashes.

The injection occurs in the render-map.php rendering flow and template tag flow, neither of which receives the new allowlist sanitization. See the WordPress Plugin Code Reference and the Wordfence Vulnerability Analysis for additional technical detail.

Detection Methods for CVE-2026-4060

Indicators of Compromise

  • HTTP requests containing the sort parameter with SQL keywords such as SLEEP, BENCHMARK, CASE WHEN, or IF( targeting Geo Mashup endpoints
  • Web server access logs showing repeated similar requests to map-rendering URLs with incrementing payload variants — a hallmark of blind SQLi enumeration
  • Database query logs showing ORDER BY clauses containing functions or subqueries instead of plain column names
  • Sustained elevated response times on pages embedding Geo Mashup maps from a single source IP

Detection Strategies

  • Inspect web access logs for sort= query string values that contain non-alphanumeric characters, parentheses, or SQL function names
  • Enable MySQL slow query logging and review entries where ORDER BY operands include SLEEP, BENCHMARK, or nested SELECT statements
  • Deploy web application firewall (WAF) rules that match SQL injection patterns specifically in the sort parameter
  • Correlate request rate anomalies with elevated database CPU or query latency on hosts running vulnerable plugin versions

Monitoring Recommendations

  • Inventory all WordPress installations and identify those running Geo Mashup at version 1.13.18 or earlier
  • Alert on outbound traffic from web hosts to unfamiliar destinations following suspicious inbound sort parameter activity
  • Monitor wp_users and wp_options table read patterns for unusual access volume from the WordPress application user

How to Mitigate CVE-2026-4060

Immediate Actions Required

  • Identify all WordPress sites running Geo Mashup version 1.13.18 or earlier and prioritize remediation
  • Apply a patched release as soon as it is available from the plugin maintainers; track the WordPress Plugin Changeset for fix progress
  • Deploy WAF rules blocking SQL keywords and metacharacters in the sort parameter against vulnerable endpoints
  • Rotate WordPress administrator passwords and any secrets stored in wp_options if exploitation indicators are present

Patch Information

At publication, version 1.13.18 introduced sanitize_sort_arg() but applied it only to the AJAX path through sanitize_query_args(). A complete fix must extend the allowlist sanitizer to render-map.php and template tag execution paths. Site operators should monitor the Wordfence Vulnerability Analysis for confirmation of a fully remediated release.

Workarounds

  • Deactivate and remove the Geo Mashup plugin until a complete patch is published
  • If the plugin must remain active, restrict access to map-rendering pages with authentication or IP allowlisting
  • Add WAF signatures that reject any sort parameter value not matching a strict alphanumeric allowlist
  • Apply database-level least privilege so the WordPress user cannot read sensitive tables outside wp_* if not needed
bash
# Example WAF rule (ModSecurity) blocking suspicious sort parameter values
SecRule ARGS:sort "!@rx ^[A-Za-z_]+(\s+(ASC|DESC))?$" \
    "id:1004060,phase:2,deny,status:403,\
     msg:'CVE-2026-4060 Geo Mashup sort parameter SQLi attempt',\
     logdata:'sort=%{MATCHED_VAR}'"

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

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechWordpress

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.07%

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

  • WordPress Plugin Code Reference

  • WordPress Plugin Code Reference

  • WordPress Plugin Changeset

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

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

  • CVE-2026-6457: 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