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

CVE-2026-8685: Infility Global Plugin SQLi Vulnerability

CVE-2026-8685 is an SQL injection vulnerability in the Infility Global WordPress plugin affecting versions up to 2.15.16. Authenticated attackers with Subscriber access can extract database information. This article covers technical details, affected versions, impact, and mitigation steps.

Published: May 21, 2026

CVE-2026-8685 Overview

CVE-2026-8685 is a SQL Injection vulnerability in the Infility Global plugin for WordPress, affecting all versions up to and including 2.15.16. The flaw resides in the show_control_data::post_list() function, which fails to properly escape and prepare the orderby and order parameters used in SQL queries. The function is registered as an admin menu page that only requires the read capability, meaning Subscriber-level authenticated users can reach it. Attackers can append additional SQL statements to existing queries and extract sensitive data from the WordPress database [CWE-89].

Critical Impact

Authenticated attackers holding Subscriber-level access or higher can execute arbitrary SQL queries to exfiltrate sensitive database contents, including user credentials and personally identifiable information.

Affected Products

  • Infility Global plugin for WordPress, versions up to and including 2.15.16
  • WordPress installations exposing Subscriber-level registration with the plugin enabled
  • Sites using the show-control-data widget shipped with the plugin

Discovery Timeline

  • 2026-05-20 - CVE-2026-8685 published to NVD
  • 2026-05-20 - Last updated in NVD database

Technical Details for CVE-2026-8685

Vulnerability Analysis

The vulnerability exists in the show-control-data.php widget file of the Infility Global plugin. The show_control_data::post_list() method constructs a SQL query that incorporates the orderby and order request parameters directly. The plugin does not apply sufficient escaping on these user-supplied values, nor does it use parameterized statements through $wpdb->prepare() correctly. As a result, attacker-controlled input passes into the SQL execution path with insufficient sanitization.

The administrative page hosting this function is registered with only the read capability requirement. In WordPress, the read capability is granted to all authenticated roles, including the lowest-privileged Subscriber role. This significantly broadens the attacker pool compared to typical admin-only SQL injection issues.

Root Cause

The root cause is improper neutralization of special elements used in an SQL command. The orderby and order parameters are concatenated into the query string without being whitelisted against valid column names or sort directions. WordPress's $wpdb->prepare() function does not safely handle identifiers like column names through placeholder substitution, so developers must validate these values against an allowlist. The plugin omits this control.

Attack Vector

An attacker first registers or obtains a Subscriber-level account on a vulnerable WordPress site. The attacker then sends an authenticated request to the admin page exposing the show_control_data::post_list() function, supplying a crafted orderby or order parameter containing SQL syntax such as a UNION SELECT payload or a time-based blind injection. The injected SQL executes within the context of the database user backing WordPress, allowing extraction of arbitrary table contents including the wp_users table.

No verified exploitation code is published. Refer to the Wordfence Vulnerability Advisory and the WordPress Plugin Code Review for the vulnerable source lines.

Detection Methods for CVE-2026-8685

Indicators of Compromise

  • Web server access logs containing requests to the Infility Global admin page with SQL keywords such as UNION, SELECT, SLEEP, or INFORMATION_SCHEMA inside the orderby or order query string parameters
  • Unusual database query patterns or long-running queries originating from low-privileged WordPress sessions
  • Creation of new administrator accounts or password hash exports shortly after Subscriber account logins

Detection Strategies

  • Inspect WordPress access logs for authenticated requests to admin pages from accounts with Subscriber or Contributor roles
  • Deploy a Web Application Firewall rule that flags non-alphanumeric characters in orderby and order parameters across plugin endpoints
  • Enable WordPress database query logging or MySQL general query log review for queries containing concatenated ORDER BY clauses with suspicious tokens

Monitoring Recommendations

  • Monitor for unexpected new WordPress user registrations followed by access to plugin admin pages
  • Alert on outbound HTTP responses with abnormally large payloads from admin endpoints, indicating possible data exfiltration
  • Track failed and successful authentication anomalies against Subscriber-tier accounts

How to Mitigate CVE-2026-8685

Immediate Actions Required

  • Disable or remove the Infility Global plugin until a patched release is confirmed and deployed
  • Disable open user registration or restrict the default registration role to prevent untrusted Subscriber account creation
  • Audit existing Subscriber-level accounts and remove unrecognized users
  • Rotate WordPress administrator passwords and database credentials if exploitation is suspected

Patch Information

At the time of publication, no fixed version is identified in the NVD record. All versions up to and including 2.15.16 are vulnerable. Review the Wordfence Vulnerability Advisory for the latest fixed version availability and apply the vendor patch as soon as it is released.

Workarounds

  • Restrict access to /wp-admin/ for low-privileged roles using server-level rules or a security plugin
  • Apply a Web Application Firewall virtual patch that validates orderby against a strict allowlist of column names and order against ASC or DESC
  • Remove the Infility Global plugin directory from the WordPress installation if it is not actively required
bash
# Example WAF rule (ModSecurity) blocking SQLi in orderby/order parameters
SecRule ARGS:orderby|ARGS:order "@rx (?i)(union|select|sleep|benchmark|information_schema|--|;|/\*)" \
    "id:1008685,phase:2,deny,status:403,log,msg:'CVE-2026-8685 Infility Global SQLi attempt'"

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.03%

  • 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 Code Review

  • WordPress Plugin Code Review

  • WordPress Plugin Code Review

  • WordPress Plugin Code Review

  • Wordfence Vulnerability Advisory
  • Related CVEs
  • CVE-2026-7472: WordPress Read More & Accordion SQLi Flaw

  • CVE-2026-3985: Creative Mail WordPress Plugin SQLi Flaw

  • CVE-2026-9010: WordPress Boost Plugin SQLi Vulnerability

  • CVE-2026-8912: Contest Gallery WordPress SQLi Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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