惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

G
Google Developers Blog
F
Fortinet All Blogs
Microsoft Azure Blog
Microsoft Azure Blog
腾讯CDC
Vercel News
Vercel News
Recent Announcements
Recent Announcements
博客园 - Franky
小众软件
小众软件
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
The Cloudflare Blog
宝玉的分享
宝玉的分享
I
InfoQ
博客园 - 聂微东
Jina AI
Jina AI
J
Java Code Geeks
V
V2EX
U
Unit 42
Stack Overflow Blog
Stack Overflow Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
阮一峰的网络日志
阮一峰的网络日志
L
LangChain Blog
T
The Blog of Author Tim Ferriss
量子位

Cyber Security News

AIRecon: AI-Powered Penetration Testing Tool with Kali Linux Sandbox Critical Chrome Vulnerabilities Allow Attackers to Execute Arbitrary Code - Update Now! UNC3753 Uses Screen-Sharing Sessions and RMM Tools to Exfiltrate Sensitive Legal Data New OnionDrop Loader Campaign Uses gainmsg C2 to Deliver LegionLoader Payloads ClickFix Campaign Uses EtherHiding and GULoader to Infect Windows Users via Fake CAPTCHA Ghostwriter Hackers Abuse Gmail Admin-Themed Emails to Steal Credentials and 2FA Codes The Half-Life of Threat Intelligence: When Does an IOC Stop Being Useful? Critical Fortinet FortiSandbox Vulnerabilities Actively Exploited in Attacks Aembit Extends IAM for Agentic AI to Microsoft Copilot Studio India Temporarily Bans Telegram Messenger Over Medical Exam Fraud Microsoft 365 Device Code Phishing Campaign Bypasses Password Theft With Legitimate Login Flow AppViewX Launches Agent Identity Security to Govern Agents for the AI and Quantum Era Hackers Weaponize Microsoft Teams Relay to Hide Ransomware Traffic Developer laptops are the credential store attackers are picking through in 2026, GitGuardian announces Endpoint Protection Interlock and Rhysida Ransomware Operations Share Supper Backdoor and Malware Codebase Novo Nordisk Confirms Cyber Attack — Hackers Accessed Patient Medical Data and Internal AI Assets Russian and Chinese Influence Actors Use AI to Evade Bot Detection and Mimic Human Behavior Microsoft Teams Analyze the Wi-Fi Hotspot Data Connected to an Employee’s Device PRC-Nexus Hackers Exploit REDCap Servers to Spy on US Medical Research Institutions Infinite Campus Data Breach Exposes 137,000 Users Personal Details OptinMonster Plugin Hack Exposes 1.2 Million Wordpress Sites to Cyberattack Ransomware Ecosystem Consolidates Around LockBit Alumni, Qilin, Hyflock, and The Gentlemen Hackers Abuse Legitimate RMM Tools in The Quarry IRS and SSA Phishing Campaigns LiteSpeed cPanel Plugin 0-Day Vulnerability Actively Exploited in the Wild Cisco SD-WAN vManage Vulnerability Exploited in Zero-Day Attacks Nearly 14,000 SimpleHelp Servers Exposed Amid Critical Authentication Bypass Disclosure Microsoft Site Showing Warning Following Certificate Expiry DPAPISnoop Tool Extracts CREDHIST Hashes for Offline Windows Credential Recovery SHADOWBYT3$ Allegedly Claim Breach of Nintendo, Stealing Sensitive Data Anthropic Updated Privacy Policy to Include Identity Verification for Claude Users
Hackers Can Leverage SQL Server 2025 AI Features to Exfil...
Abinaya · 2026-06-18 · via Cyber Security News

Hackers are increasingly finding new ways to abuse legitimate enterprise features, and Microsoft SQL Server 2025’s newly introduced AI capabilities are now raising serious security concerns.

SpecterOps researchers have demonstrated that these built-in features can be leveraged for stealthy data exfiltration and even command-and-control (C2) communication, all from within the database engine itself.

Microsoft introduced SQL Server 2025 with native AI integration to support modern workloads such as Retrieval-Augmented Generation (RAG). However, these same capabilities are now being repurposed by attackers as powerful post-exploitation tools.

The research, along with proof-of-concept (PoC) code, has been publicly released on GitHub, highlighting the real-world risks of these features.

One of the most critical additions is the stored procedure sp_invoke_external_rest_endpoint. This function enables SQL Server to send HTTPS requests to external endpoints directly, without relying on traditional methods such as xp_cmdshell or PowerShell.

While designed for legitimate API communication, it effectively enables attackers to exfiltrate sensitive data over encrypted channels.

SQL Server 2025 AI Features Enable Data Theft

The feature supports payloads up to 100 MB, making it highly efficient for transferring large datasets such as user credentials or database records.

In a demonstrated attack scenario, a compromised SQL Server instance with sysadmin privileges can query sensitive tables, convert the data to JSON, and transmit it to an attacker-controlled server using this procedure.

Data Exfiltration (Source: specterops)
Data Exfiltration (Source: specterops)

Because the traffic originates from the database engine and uses HTTPS, it can bypass traditional monitoring tools that rely on detecting suspicious command execution or unusual outbound connections.

Another major feature, CREATE EXTERNAL MODEL, allows SQL Server to integrate with external AI models. This is complemented by AI_GENERATE_EMBEDDINGS, which sends data to these models and receives structured responses.

While intended for AI-driven applications, researchers showed that these functions can be abused to establish covert communication channels.

successful NTLM SMB auth coercion (Source: specterops)
successful NTLM SMB auth coercion (Source: specterops)

Attackers can encode commands and responses within AI embedding data, making the traffic appear legitimate and difficult to detect. This capability enables a new form of C2 infrastructure operating entirely within SQL queries.

By combining external model calls with periodic check-ins, attackers can create persistent backdoors that execute commands and return results without deploying traditional malware.

In more advanced scenarios, attackers can load malicious .NET CLR assemblies directly into SQL Server memory, eliminating the need for disk-based payloads and further reducing detection risk.

The research also highlights a technique involving UNC paths in AI model configurations, which can trigger NTLM authentication attempts over SMB.

This allows attackers to capture or relay authentication hashes within a network. Although reported to Microsoft, this behavior was not classified as a security vulnerability, meaning it remains exploitable in current deployments.

Persistence is another concern. Attackers can create database triggers that automatically exfiltrate newly inserted or updated data.

For example, any new user credentials added to a table can be immediately sent to an external server without additional interaction. This turns the database into a continuous data leakage point.

From a defensive standpoint, these developments challenge traditional security assumptions. Historically, outbound web traffic from a database server was considered suspicious.

Defensive Considerations (Source: specterops)
Defensive Considerations (Source: specterops)

With SQL Server 2025 normalizing HTTPS communication for AI workloads, distinguishing between legitimate and malicious activity becomes significantly harder.

SpecterOps recommends enforcing strict controls over database privileges, particularly sysadmin accounts, and closely monitoring features such as external REST endpoints and AI model integrations for potential abuse.

Network-level controls, such as restricting outbound connections from database servers, can also help mitigate risk. Additionally, organizations must baseline normal AI-related traffic patterns to detect anomalies effectively.

As AI capabilities continue to be embedded in enterprise software, this case highlights a growing trend in which legitimate features can be weaponized.

SQL Server 2025 demonstrates how innovation without corresponding security controls can expand the attack surface, forcing defenders to adapt to an evolving threat landscape rapidly.

Follow us on Google NewsLinkedIn, and X to Get More Instant Updates.

Abinaya

Abinayahttps://cybersecuritynews.com/

Abi is a Security Editor and fellow reporter with Cyber Security News. She is covering various cyber security incidents happening in the Cyber Space.