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

推荐订阅源

博客园 - 聂微东
GbyAI
GbyAI
S
SegmentFault 最新的问题
H
Hackread – Cybersecurity News, Data Breaches, AI and More
V
Visual Studio Blog
WordPress大学
WordPress大学
Hugging Face - Blog
Hugging Face - Blog
B
Blog
宝玉的分享
宝玉的分享
Last Week in AI
Last Week in AI
雷峰网
雷峰网
爱范儿
爱范儿
Vercel News
Vercel News
人人都是产品经理
人人都是产品经理
U
Unit 42
Microsoft Azure Blog
Microsoft Azure Blog
Microsoft Security Blog
Microsoft Security Blog
Jina AI
Jina AI
P
Proofpoint News Feed
A
About on SuperTechFans
I
InfoQ
F
Fortinet All Blogs
L
LangChain Blog
T
Tailwind CSS Blog

Sophos Blogs

ATT&CK grew a 15th tactic: A practical DFIR field guide to the Stealth / Defense Impairment split Devil’s advocate? Uncensored Luciferus AI service advertised underground “Eye” spy: Cyclops Blink returns with extended capabilities Ransomware in Education 2026: Key Findings Sophos Joins OpenAI’s Call for Collective Cyber Defense Sophos Ranked #1 Overall Across Endpoint, XDR, MDR, and Firewall in G2 Fall 2026 Reports Fake AI, real malware: Attackers impersonating AI brands A heap of overflow in August’s Patch Tuesday haul Accelerating NetNTLMv1 Lookups Without GPUs Abuse of alternative runtime environments Deno-tes defender headaches ClickFix campaign abuses Deno runtime for infostealer delivery Sophos Working with OpenAI on security from AI, with AI, and for AI N-able N-central exploitation results in RMM tool deployment Interlock ransomware gang creates volatile situation When AI doesn’t know the target is real Chaos in Teams vishing Why Sophos Has Become Its Own AI Test Lab July Patch Tuesday only feels endless SonicWall SMA1000 vulnerabilities in active exploitation Sophos and the Cybersecurity Poverty Line You do surprise me.exe: An unexpected executable in Hola Browser You do surprise me.exe: An unexpected executable in Hola Browser Pointing a Cursor at evading detection Pointing a Cursor at evading detection Pointing a Cursor at evading detection Canvas attack aftermath: What risks come next Canvas attack aftermath: What risks come next? Gartner EPP MQ-17 Sophos named a Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection Platforms for the 17th consecutive report GitHub internal repositories breached.
When AI agents look like attackers: what behavioral telem...
About the Author(s) · 2026-07-07 · via Sophos Blogs

AI coding agents (Claude Code, Cursor, Codex, and others built on skill packs such as GStack) are showing up in customer environments. They write code, install dependencies, automate browser tasks, and troubleshoot failures by trying alternative approaches. From the perspective of an endpoint behavioral engine, some of that activity is indistinguishable from typical activity seen on customer networks – or, in some cases, from actions that might be undertaken by an active adversary. 

This blog examines real telemetry from the Sophos Endpoint behavioral engine on Windows to show where, and why, AI agents are triggering detection rules. The intent is not to call the activity malicious. It is to show that existing behavioral protections are working exactly as designed, and to illustrate the detection-engineering challenges ahead as agentic AI adoption accelerates. 

Telemetry overview 

The chart below shows the distribution of blocking rule hits over a seven-day period in June 2026, broken down by MITRE ATT&CK tactic and measured by unique machine count. Tactics related to Credential Access and Execution (respectively, the ninth and fourth tactic categories in the ATT&CK matrix) dominate. Note the presence of a non-ATT&CK bucket we call “Disrupt.” 

A pie chart showing relative totals of blocking rule hits downstream of AI agents; Credential Access represents a simple majority with events with 56.2%, followed by Execution with 28.8%. Disrupt is the third largest category at 4.1% and the numbers fall off from there

Figure 1: Blocking rule hits (by MITRE tactic) downstream of AI agents, measured by unique machine count 

The "Disrupt" bucket – not part of the official ATT&CK categories, but a useful catchall we are about to explain – represents AAP (Adaptive Attack Protection) rules, meaning devices where AAP engaged and blocked activity associated with AI agents. Every AAP hit we examined involved low-reputation executables the agents were trying to run. None appeared malicious, but all had low global reputation scores in SophosLabs telemetry. 

Switching to silent (non-blocking) rule hits gives a broader view of the activity AI agents perform that the behavioral engine considers worth tracking and grouping.  

A pie chart showing silent rule hits downstream of AI agents, by tactic. Evade (38.5%) and Command and Control (34.0%) account for the lion's share of hits; only Execution (11.1%) rises above ten percent in these numbers

Figure 2: Silent rule hits (by MITRE tactic) downstream of AI agents, measured by unique machine count 

The silent distribution is more spread out, with evasion and C2 categories prominent. This reflects agents performing network calls, spawning child processes, and using command-line patterns that overlap with adversary tradecraft. 

Credential access 

Moving back to the two largest ATT&CK categories we saw in our blocking-rule dataset, Credential Access rules account for the largest share of hits. The breakdown of specific rules is shown in Figure 3. 

A pie chart showing percentage of blocking credential-access rules downstream of AI agents. There are four slices -- in order, Creds_3b (42.6%), Creds_6a (36.2%), Creds_2e (12.8%), and Creds_2d (8.5%)

Figure 3: Blocking credential-access rules downstream of AI agents, measured by unique machine count 

Creds_3b drives the bulk of these hits. This rule fires on the HMPA CookieGuard signal, which identifies processes using the Data Protection API (DPAPI) to decrypt browser credentials. 

GStack /browse and Creds_3b 

GStack is a widely adopted AI agent skill pack. One of its built-in skills, /browse, connects the agent to a Chromium daemon for browser automation. The Creds_3b telemetry shows that this skill chain uses PowerShell to decrypt sensitive browser data. The example in Figure 4 shows GStack /browse invoked by Claude Code. 

An activity tree showing the Gstack / browse skill chains, including commands

Figure 4: Activity tree showing the GStack /browse skill chain, from bash through browse.exe, node.exe, and into PowerShell 

The PowerShell command line confirms what the rule detected: 

powershell -NoProfile -Command "Add-Type -AssemblyName System.Security; 
  $stdin = [Console]::In.ReadToEnd().Trim(); 
  $bytes = [System.Convert]::FromBase64String($stdin); 
  $dec = [System.Security.Cryptography.ProtectedData]::Unprotect($bytes, 
    $null, [System.Security.Cryptography.DataProtectionScope]::CurrentUser); 
  Write-Output ([System.Convert]::ToBase64String($dec))" 

In context, this is almost certainly benign: the agent is automating a browser session. But PowerShell decrypting browser credentials via DPAPI is exactly what Creds_3b exists to block, and the rule is right to fire. 

Python credential access (Creds_6a, Creds_2d) 

Several credential-access hits involved Python processes. In the example shown in Figure 5, Claude spawns a series of taskkill.exe commands to terminate browser processes by PID, then runs a Python script that accesses browser credential stores. 

A graphic (

Figure 5: Claude terminating browser processes before spawning a Python script (decrypt_wp_pass.py) that accesses browser data (click for larger image) 

The activity tree also shows a command spawned via Claude that dumps stored credentials from Windows Credential Manager: 

"C:\Windows\system32\cmdkey.exe" /list

Is this malicious? On its own, it would be enough to get an MDR analyst on a call. The claude.exe command line includes one flag worth noting: 

--dangerously-skip-permissions 

The Claude documentation, as shown in Figure 6, is explicit about the risks of this flag. 

Claude's own warning re the --dangerously-skip-permissions flag, including instructions for admins wishing to block this mode

Figure 6: Claude Code documentation warning about the --dangerously-skip-permissions flag 

Command-line obfuscation 

A series of Exec_16a triggers appeared in telemetry. This is an old rule, added more than five years ago. It was originally written to catch malicious PowerShell using a specific string-formatting technique as mild obfuscation. 

Five years later, AI agents are generating PowerShell with similar formatting patterns in their command lines. The rule has already been hardened to reduce false positives from this source. 

Ingress: download and execute 

AI agents are persistent problem-solvers. When a command fails, they try alternatives, cycling through different tools and techniques until something works. This is a useful capability for a coding assistant. It also mirrors how hands-on-keyboard attackers behave once they have access. 

One telemetry example illustrated this clearly. The AI agent (OpenAI Codex) attempted to download and run a Python installer. It started with certutil.exe (blocked by Lateral_1b), then switched to bitsadmin.exe (blocked by Exec_5a). 

TimeCommandOutcome
06:47:35 certutil.exe -urlcache -split -f https://www.python.org/.../python-3.14.6-amd64.exe Lateral_1b blocks 
06:47:36 certutil.exe -urlcache -split -f (same URL, different output path) Lateral_1b blocks 
06:57:44 Several more certutil variations Lateral_1b blocks 
06:57:47 bitsadmin.exe /transfer PythonDownload /download /priority normal (same URL) Exec_5a blocks 

The download target was legitimate: python.org. But certutil -urlcache and bitsadmin /transfer are textbook LOLBin download methods. The agent reached for them unprompted, and when one was blocked, it pivoted to another. That pivot behavior is exactly what separates an active adversary from a dumb script, and it is now something benign AI agents do routinely. 

Persistence 

Writing to the startup folder outside the context of a trusted, high-reputation installer is a red flag. It is not behavior you would expect from a coding agent. 

The example below shows Cursor using a PowerShell script to write a VBScript file into the Windows startup folder. The Persist_2a rule blocked the action. The script filename suggests it relates to an application called "EZConvert," but without the script contents we cannot confirm the intent. 

Powershell command-line: 

powershell.exe -ExecutionPolicy Bypass -File C:\Users\<username>\AppData\Local\Temp\ps-script-6a6de53c-7d17-4e73-9538-00a77b8b2a2d.ps1 

Script being written: 

C:\Users\<username>\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup\Launch-EZConvert-ConsoleOnly.vbs 

Conclusion 

AI coding agents have shifted what "normal" looks like in customer telemetry. Rules that previously fired almost exclusively on malicious activity are now triggering on benign agent behaviour. The shift is not large yet, but the trend line is clear. 

Some of the activity is genuinely suspicious regardless of who initiated it. PowerShell decrypting browser credentials, dumping Credential Manager entries, writing to startup folders, cycling through LOLBin download methods -- these are things defenders flag for good reason. The fact that an AI agent did them does not make them safe. 

Detection engineering will need to adapt. Some rules will need tuning to account for known-good agent signatures. Others should keep firing, because the activity they catch is risky whether a human or an agent initiated it. The worked examples above are a starting point for that triage. 

The broader question for customers deploying AI agents is one of policy and control. What should an agent be permitted to do on an endpoint? What boundaries should be enforced? The behavioral telemetry shown here provides a useful initial dataset with which to develop those policies. What it is not a six-month snapshot of telemetry with hard conclusions. It is a first-pass, short signal dump, in which we can already see some interesting things – and also recognize that further monitoring, assessment, and tuning will be required.