CVEReports
CVEReports

Automated vulnerability intelligence platform. Comprehensive reports for high-severity CVEs generated by AI.

Product

  • Home
  • Sitemap
  • RSS Feed

Company

  • About
  • Contact
  • Privacy Policy
  • Terms of Service

© 2026 CVEReports. All rights reserved.

Made with love by Amit Schendel & Alon Barad



CVE-2026-47295

CVE-2026-47295: SQL Injection and Privilege Escalation in Microsoft SQL Server

Amit Schendel
Amit Schendel
Senior Security Researcher

Jul 20, 2026·6 min read·24 visits

Executive Summary (TL;DR)

An authenticated, low-privileged network attacker can execute SQL injection attacks against internal system stored procedures in Microsoft SQL Server, leading to full privilege escalation up to sysadmin administrative control.

CVE-2026-47295 is a high-severity elevation of privilege vulnerability in Microsoft SQL Server (2016 through 2025). An authenticated, low-privileged attacker can execute remote SQL injection commands within system stored procedures to elevate permissions to sysadmin.

Vulnerability Overview

Microsoft SQL Server depends on various built-in system stored procedures, system catalog views, and administrative scripts to coordinate engine metadata, facilitate internal operations, and expose schema instrumentation. These procedures often execute under highly privileged security contexts, such as the system administrator (sa) account, using EXECUTE AS clauses to perform privileged server-level changes on behalf of unprivileged callers.

The attack surface exists in the Tabular Data Stream (TDS) endpoint, which represents the primary communication channel for SQL queries. An authenticated network user with basic session access (such as members of the public server role) can interact with specific, exposed system procedures. If these procedures do not safely handle input parameter boundaries, they allow arbitrary command sequences to be evaluated.

This vulnerability is classified as a severe SQL Injection vulnerability (CWE-89) within internal database routines. Unlike application-level SQL injection that aims to extract business database tables, this flaw operates within the internal database engine itself, allowing callers to bypass internal permission-checking gates.

Root Cause Analysis

The root cause of CVE-2026-47295 is the improper neutralization of special elements within internal system stored procedures that utilize dynamic T-SQL compilation. When these procedures construct commands dynamically by concatenating user-supplied arguments (such as schema identifiers, physical table names, or index values), they create a execution flow where SQL statements are parsed twice: once during the procedure invocation and once during dynamic execution.

The database engine processes these parameters without applying safe escaping or parameterized interfaces. Because the system procedure runs with elevated security definitions (such as EXECUTE AS OWNER or EXECUTE AS 'sa'), any commands appended to the parameter inherit the highly privileged context. This execution inheritance enables the payload to bypass standard Role-Based Access Control (RBAC) mechanisms enforced on standard database tables.

The dynamic parsing engine fails to differentiate between the structural code of the system procedure and the data supplied by the caller. Consequently, the SQL parser interprets injected operators, such as single-quote literal boundaries, semicolons, and comment marks, as instruction boundaries. The diagram below illustrates this privilege escalation process:

Code-Level Analysis

Due to the closed-source architecture of Microsoft SQL Server, researchers reconstruct the code-level flaw using T-SQL equivalents of the vulnerable internal routines. The vulnerable implementation concatenates the user input directly into a dynamic string before submitting it to the EXEC or sp_executesql engine:

-- Vulnerable Dynamic SQL Pattern in System Procedure
CREATE PROCEDURE sys.sp_vulnerable_internal
    @input_table_name NVARCHAR(256)
WITH EXECUTE AS 'sa'
AS
BEGIN
    DECLARE @sql NVARCHAR(MAX);
    -- VULNERABILITY: Direct string concatenation of user-supplied parameter
    -- This allows an attacker to break out of the string boundary using a single quote
    SET @sql = N'SELECT * FROM sys.objects WHERE name = ''' + @input_table_name + N'''';
    
    EXEC sp_executesql @sql;
END;

The security patch remediates this flaw by redesigning the Dynamic SQL compilation. Rather than concatenating parameters into the query structure, the engine utilizes strict parameterization inside the sp_executesql arguments or wraps input parameters with safety helpers such as the QUOTENAME() function, preventing execution of nested operations:

-- Patched Dynamic SQL Pattern using Parameterization
CREATE PROCEDURE sys.sp_vulnerable_internal
    @input_table_name NVARCHAR(256)
WITH EXECUTE AS 'sa'
AS
BEGIN
    DECLARE @sql NVARCHAR(MAX);
    -- REMEDIATION: The variable is kept as a strict parameter operand (@name)
    -- This ensures the query parser treats the input purely as data, not code
    SET @sql = N'SELECT * FROM sys.objects WHERE name = @name';
    
    EXEC sp_executesql @sql, N'@name NVARCHAR(256)', @name = @input_table_name;
END;

The fix is complete and robust because it shifts the evaluation model from dynamic evaluation to parameterized execution, which systematically neutralizing structural input variations.

Exploitation Methodology

To successfully exploit this vulnerability, an attacker must first obtain a valid login on the target SQL Server instance. The attacker does not require high-level permissions; any low-privileged database user with execution privileges on the affected internal system stored procedure is sufficient. The attack is executed over a network via standard database connection tools or application proxy configurations.

The execution payload is structured to close the open string literal, inject a distinct secondary administrative transaction, and comment out the trailing characters of the original query. The objective is typically to add the attacker's login to the sysadmin server role, granting complete administrative control over the database engine:

-- Conceptual Exploitation Input Payload
SELECT name FROM sys.objects;
EXEC sp_addsrvrolemember 'attacker_login', 'sysadmin'; --

When the system procedure receives this input, the dynamic query is assembled into an execution block containing the administrative promotion instruction. Because the procedure utilizes EXECUTE AS 'sa', the database engine executes the role membership modification with full administrative authorization, succeeding without raising security permission checks.

Impact Assessment

Successful exploitation of CVE-2026-47295 leads to complete administrative compromise of the affected Microsoft SQL Server instance. An attacker who elevates their privileges to sysadmin gains full control over all databases hosted on the instance, including read, write, and delete permissions on any transactional table or system configuration value.

The confidentiality, integrity, and availability of database assets are completely compromised. Attackers can export sensitive business records, modify audit configurations, establish persistent administrative backdoors, or delete data structures, causing operational disruption.

While the scope remains within the database instance (S:U), achieving sysadmin level control frequently allows attackers to leverage advanced features such as xp_cmdshell or SQL Server Agent jobs to run command-line actions on the underlying host operating system. This represents a significant pathway for host network lateral movement.

Detection and Mitigation Guidance

The primary remediation strategy is the immediate application of official Microsoft security updates. These patches are available through General Distribution Releases (GDR) and Cumulative Updates (CU) for all supported SQL Server versions, from SQL Server 2016 SP3 up to SQL Server 2025.

In environments where patches cannot be instantly applied, security teams must deploy network-level and host-level detection controls. Security professionals should implement auditing rules to log modifications to server role memberships, specifically looking for additions to the sysadmin role:

-- Monitor for server role membership changes
CREATE SERVER AUDIT [Audit_Role_Escalations]
TO FILE (FILEPATH = 'C:\SQLAudit\');
CREATE SERVER AUDIT SPECIFICATION [Spec_Role_Escalations]
FOR SERVER AUDIT [Audit_Role_Escalations]
ADD (SERVER_ROLE_MEMBER_CHANGE_GROUP);
ALTER SERVER AUDIT [Audit_Role_Escalations] WITH (STATE = ON);

Additional defensive mitigations include applying the principle of least privilege by revoking public execution rights on unused system stored procedures and enforcing strict network controls to isolate SQL Server ports (TCP 1433 and UDP 1434) from untrusted segments.

Technical Appendix

CVSS Score
8.8/ 10
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
EPSS Probability
0.92%
Top 44% most exploited

Affected Systems

Microsoft SQL Server 2016Microsoft SQL Server 2017Microsoft SQL Server 2019Microsoft SQL Server 2022Microsoft SQL Server 2025

Affected Versions Detail

Product
Affected Versions
Fixed Version
SQL Server 2016 Service Pack 3
Microsoft
>= 13.0.0 < 13.0.6500.113.0.6500.1
SQL Server 2017
Microsoft
>= 14.0.0 < 14.0.2120.114.0.2120.1
SQL Server 2019
Microsoft
>= 15.0.0 < 15.0.2180.215.0.2180.2
SQL Server 2022
Microsoft
>= 16.0.0 < 16.0.1190.216.0.1190.2
SQL Server 2025
Microsoft
>= 17.0.0 < 17.0.1125.217.0.1125.2
AttributeDetail
CWE IDCWE-89 (SQL Injection)
Attack VectorNetwork (AV:N)
CVSS v3.1 Score8.8
EPSS Score0.00921 (0.92%)
ImpactComplete Privilege Escalation to sysadmin
Exploit StatusNone (Theoretical)
CISA KEV StatusNot Listed

MITRE ATT&CK Mapping

T1190Exploit Public-Facing Application
Initial Access
T1068Exploitation for Privilege Escalation
Privilege Escalation
CWE-89
Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection')

The database engine constructs a dynamic command using external elements without sanitizing special SQL structures, altering the command flow.

Vulnerability Timeline

CVE-2026-47295 published by Microsoft Security Response Center (MSRC) as part of scheduled security updates.
2026-07-14
CVE record assigned and published in the CVE.org list.
2026-07-14
NVD publishes official CVSS v3.1 scoring, establishing the high-severity 8.8 rating.
2026-07-15
Vulnerability checked against CISA's KEV Catalog; confirmed not actively exploited.
2026-07-16

References & Sources

  • [1]Microsoft Security Response Center (MSRC) Advisory
  • [2]CVE.org Official Record
  • [3]Wiz Vulnerability Database Details

Attack Flow Diagram

Press enter or space to select a node. You can then use the arrow keys to move the node around. Press delete to remove it and escape to cancel.
Press enter or space to select an edge. You can then press delete to remove it or escape to cancel.

More Reports

•12 minutes ago•CVE-2026-53657
8.2

CVE-2026-53657: Privilege Escalation via Overly Permissive Unix Domain Socket in Lima Guest Agent

CVE-2026-53657 is a local privilege escalation vulnerability in Lima (lima-vm/lima) affecting versions prior to 2.1.3 when configured with the QEMU driver. The guest agent daemon, running as root, creates its communication socket `/run/lima-guestagent.sock` with world-writable permissions (0777). This allows unprivileged local users to command the agent to establish arbitrary tunnels, including to privileged local UNIX sockets (like D-Bus). Because the target daemon authenticates the incoming connection using the credentials of the root-owned guest agent (via SO_PEERCRED), unprivileged users can perform root operations, resulting in complete guest VM compromise.

Amit Schendel
Amit Schendel
1 views•9 min read
•about 1 hour ago•CVE-2026-10740
5.3

CVE-2026-10740: Denial of Service in s2n-quic CryptoStream Reassembly

An unauthenticated Denial of Service vulnerability exists in the s2n-quic library's CryptoStream reassembler due to a lack of buffer limits on out-of-order cryptographic frames. An attacker can transmit a crafted CRYPTO frame with an extremely high offset and nominal payload, forcing the receiver to execute unbounded memory allocations and causing service crashes.

Amit Schendel
Amit Schendel
3 views•7 min read
•about 2 hours ago•CVE-2026-55153
7.1

CVE-2026-55153: JNDI Injection and Deserialization Gadget Abuse in mchange-commons-java

A JNDI Injection and Deserialization Gadget vulnerability exists in mchange-commons-java prior to version 0.6.0. The com.mchange.v2.naming.JavaBeanObjectFactory component permits arbitrary class instantiation and setter invocation, allowing attackers to perform Server-Side Request Forgery (SSRF) and remote class loading.

Alon Barad
Alon Barad
6 views•5 min read
•about 3 hours ago•GHSA-8RW6-P7M8-63JP
6.5

GHSA-8RW6-P7M8-63JP: Array Element-Level SELECT Permissions Leak in SurrealDB

SurrealDB versions supporting element-level SELECT permissions on arrays are vulnerable to a logical authorization bypass. Due to an index-shifting error during array filtration, restricted elements can skip permission checks and leak to unauthorized record users.

Alon Barad
Alon Barad
5 views•6 min read
•1 day ago•CVE-2026-12243
7.5

CVE-2026-12243: Incomplete Path Traversal Validation and Percent-Encoding Bypass in NLTK

CVE-2026-12243 is a path traversal vulnerability in the Natural Language Toolkit (NLTK) version 3.9.4. The flaw exists because the input validation routine fails to account for percent-encoded directory traversal sequences like '..%2f' before passing them to urllib.request.url2pathname(), which decodes them into active traversal sequences.

Amit Schendel
Amit Schendel
5 views•8 min read
•1 day ago•CVE-2026-73654
8.5

CVE-2026-73654: Prototype Pollution in Trigger.dev leading to Cascading Denial of Service

CVE-2026-73654 is a high-severity prototype pollution vulnerability in Trigger.dev. The flaw occurs during the handling of run-metadata updates through the PUT /api/v1/runs/:runId/metadata endpoint. Because user-supplied keys are parsed directly by the @jsonhero/path library without sanitization, an authenticated attacker with low privileges can pollute the global Object.prototype. This causes database queries via Prisma ORM to fail validation and induces unhandled exceptions in the Prometheus metrics client, resulting in a process-wide denial of service.

Alon Barad
Alon Barad
11 views•6 min read