A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-39475

CVE-2026-39475: User Feedback SQL Injection Vulnerability

CVE-2026-39475 is a blind SQL injection vulnerability in the User Feedback WordPress plugin that enables attackers to extract sensitive database information. This article covers technical details, affected versions, and mitigation.

Published: April 10, 2026

CVE-2026-39475 Overview

CVE-2026-39475 is a Blind SQL Injection vulnerability affecting the User Feedback plugin (userfeedback-lite) for WordPress, developed by Syed Balkhi. This vulnerability allows attackers to inject malicious SQL commands through improperly neutralized special elements, potentially enabling unauthorized access to sensitive database information without direct output visibility.

Critical Impact

Attackers can exploit this blind SQL injection to extract sensitive data from WordPress databases, including user credentials, personal information, and other confidential data stored in the affected installation.

Affected Products

  • User Feedback (userfeedback-lite) plugin versions through 1.10.1
  • WordPress installations running vulnerable versions of the plugin

Discovery Timeline

  • 2026-04-08 - CVE-2026-39475 published to NVD
  • 2026-04-08 - Last updated in NVD database

Technical Details for CVE-2026-39475

Vulnerability Analysis

This vulnerability is classified as CWE-89: Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection'). The User Feedback plugin fails to properly sanitize user-supplied input before incorporating it into SQL queries, creating an exploitable condition for blind SQL injection attacks.

Blind SQL injection differs from standard SQL injection in that the attacker cannot directly see the results of the injected query in the application's response. Instead, attackers must infer information based on the application's behavior, such as response times (time-based blind SQLi) or conditional responses (boolean-based blind SQLi). This technique, while more complex to execute, can still lead to complete database compromise.

Root Cause

The root cause of this vulnerability lies in insufficient input validation and sanitization within the User Feedback plugin's database interaction layer. User-controlled input is directly concatenated or interpolated into SQL queries without proper parameterization or escaping, allowing specially crafted input to alter the intended SQL command structure.

WordPress provides secure database abstraction methods through the $wpdb class, including prepared statements via $wpdb->prepare(). The vulnerable code path in the User Feedback plugin likely bypasses these protective mechanisms, directly incorporating untrusted data into query strings.

Attack Vector

The attack vector for this vulnerability involves submitting specially crafted input through the User Feedback plugin's data collection mechanisms. An attacker can inject SQL syntax that, while not returning visible output, modifies query behavior in detectable ways.

Exploitation typically follows a methodical approach where the attacker sends payloads that cause the database to perform conditional operations. For boolean-based attacks, the injected SQL evaluates true or false conditions, with different application responses indicating the result. For time-based attacks, SQL sleep functions or heavy computations are injected, with response delays confirming successful injection.

The attacker can systematically extract database contents character by character, eventually reconstructing complete database records including sensitive user data and authentication credentials.

Detection Methods for CVE-2026-39475

Indicators of Compromise

  • Unusual SQL query patterns in WordPress database logs containing blind injection techniques
  • Abnormally slow database responses indicating time-based SQLi attempts
  • Multiple requests to User Feedback plugin endpoints with suspicious parameter values
  • Database error logs showing malformed query attempts or SQL syntax errors

Detection Strategies

  • Monitor web application firewall (WAF) logs for SQL injection patterns targeting the userfeedback-lite plugin
  • Implement database query logging and analyze for anomalous query structures
  • Review WordPress access logs for repeated requests with varying payload parameters characteristic of blind SQLi enumeration
  • Deploy intrusion detection rules targeting common blind SQL injection syntax patterns

Monitoring Recommendations

  • Enable verbose database logging to capture query execution times and identify time-based injection attempts
  • Configure WordPress security plugins to alert on suspicious activity involving the User Feedback plugin
  • Implement real-time monitoring of database query performance for unexpected execution delays
  • Set up alerts for failed authentication attempts following potential credential extraction

How to Mitigate CVE-2026-39475

Immediate Actions Required

  • Verify your installed version of User Feedback (userfeedback-lite) by checking the WordPress plugin dashboard
  • If running version 1.10.1 or earlier, consider temporarily deactivating the plugin until a patch is available
  • Review database logs for any suspicious activity that may indicate prior exploitation attempts
  • Implement web application firewall rules to filter SQL injection attempts targeting this plugin

Patch Information

Organizations should monitor the Patchstack vulnerability database for patch release announcements. Update to the latest version of the User Feedback plugin as soon as a security update is made available by the vendor.

Workarounds

  • Temporarily disable the User Feedback plugin until a patched version is released
  • Implement WAF rules to block common SQL injection patterns in requests to the plugin's endpoints
  • Restrict access to WordPress admin and plugin functionality to trusted IP addresses where possible
  • Consider using database-level security controls to limit the plugin's database user permissions
bash
# WordPress CLI command to deactivate the vulnerable plugin
wp plugin deactivate userfeedback-lite

# Verify plugin status
wp plugin status userfeedback-lite

# Check for available updates
wp plugin update userfeedback-lite --dry-run

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

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechUser Feedback

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-89
  • Technical References
  • Patchstack SQL Injection Vulnerability
  • Related CVEs
  • CVE-2026-39476: User Feedback Auth Bypass 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