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

推荐订阅源

U
Unit 42
Vercel News
Vercel News
博客园 - 叶小钗
大猫的无限游戏
大猫的无限游戏
MyScale Blog
MyScale Blog
P
Proofpoint News Feed
量子位
Engineering at Meta
Engineering at Meta
B
Blog RSS Feed
博客园 - 【当耐特】
Recent Announcements
Recent Announcements
Google DeepMind News
Google DeepMind News
D
DataBreaches.Net
Stack Overflow Blog
Stack Overflow Blog
博客园 - 聂微东
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
人人都是产品经理
人人都是产品经理
IT之家
IT之家
T
The Blog of Author Tim Ferriss
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Jina AI
Jina AI
博客园 - 三生石上(FineUI控件)

Intel 471 Blog

TeamPCP Supply Chain Attacks Turning Geopolitical Tension into Actionable Intelligence CVE-2025-68613: Zerobot botnet exploits critical vulnerability impacting n8n AI orchestration platform Introducing Cyber Threat Exposure Bundle: A Unified Approach to External Risk CVE-2026-20127: Critical Cisco SD-WAN vulnerability exploited in wild Handala Threat Group OpenClaw: A viral AI assistant and a magnet for infostealer malware and ClickFix trickery Israeli, US strikes against Iran triggers a surge in hacktivist activity CVE-2026-1731: Finding a critical RCE in an age of AI-driven vulnerability research Born to bypass MFA: Taking down Tycoon 2FA The UK Cyber Security Resilience Bill How AI and the human advantage beat tomorrow’s threats Winter Olympics 2026: Hacktivism Surges Ahead of Protests and Suspected Sabotage How Threat Hunting and “Good” Metrics Help The Business Likely fake ransomware operator 0APT causes panic — Our analysis Hunting APTs: from state policy to TTPs CrazyHunter Ransomware DevMan Ransomware Introducing HUNTER Tuning: a New Tool for Driving Behavioral Threat Hunt Detections Battling check fraud in the U.S. Gootloader Malware Update Shai-Hulud Worm 2.0 New FvncBot Android banking trojan targets Poland White Paper Preview: Black "Fraud Day” and Beyond — The Key Cyber Threats Facing the Retail Sector this Holiday Season Threat hunting case study: Detecting IAB activity Using deception to extract cyber threat intelligence Lynx Ransomware Qilin Ransomware Group ClickFix: Tricking users into installing infostealers Cybercrime Takedowns: Trust, Partnerships and Focus
Red Team Tools: Hunting for the Top 3 Tools
Intel 471 · 2022-09-09 · via Intel 471 Blog

It has often been said that if history doesn’t repeat itself, it sure as heck rhymes. Nowhere is this truer than in cyber security. And one of the most common “rhymes” is the trouble that blue teams have in detecting red team tools and activity in a network. Now the reasons for this can be numerous, especially because the blue teams need to get it right every time, whereas red teams only need to get it right once. But one of the more common experiences I’ve observed is that blue teams often have a hard time hunting or detecting the tools that red teams are known to use. That is why I sat down with some of our hunt team to look at some of the most common tools that red teams use – such as Cobalt Strike, Brute Ratel, Meterpreter, and PowerShell Empire - and how blue teams and hunt teams can hunt for them.

Probably one of the most common red team tools employed by red teams (and a lot of adversaries, too!) today is Cobalt Strike. Cobalt Strike is a fully featured and commercially available penetration testing tool offered by Washington, DC-based Strategic Cyber LLC. The tool is advertised for "Adversary Simulations and Red Team Operations" however its significant customization and capabilities have led to its use by a wide variety of threat actors for a variety of motivations. Cobalt Strike also incorporates a variety of other post-exploitation tools, such as Mimikatz, in order to expand its functionality.

Once a red team (or adversary) has established a foothold, one of the most common tactics they are likely to focus on is execution. Execution is what enables adversaries to detonate their tools on a system, often with the goal of remaining undetected by security controls and teams. One of the most common methods for this is to use a scripting interpreter – which in the case of Windows is often PowerShell. As a result, a lot of security controls are keeping a watchful eye on PowerShell and the processes it spawns. However, Cobalt Strike (amongst many others) have found a clever method to bypass this by loading PowerShell directly into memory, often using something like unmanagedpowershell which can run PowerShell in memory without spawning powershell.exe.

One of the easiest methods to hunt for this activity is to look for DLLs being loaded associated with a PowerShell runtime environment that is not the default PowerShell executable. This can help identify possible malicious activity.

Get the FREE Cobalt Strike Hunt Package

Another of the most popular red team tools used by adversaries and red teams alike is a tool referred to as Brute Ratel. Brute Ratel is an attack simulation and post-exploitation toolkit created by Chetan Nayak (a former red teamer for Mandiant and Crowdstrike), and released in 2020. The post-exploitation toolkit is a customizable command and control framework that gives users capabilities such as (but not limited to): injecting shellcode into processes, executing script execution and writing C2 channels (like Slack, Microsoft teams).

One of the first techniques many red teams and adversaries use once they establish themselves is downloading additional tools. Many modern security tools are able to easily detect an attacker using tools such as a headless browser or similar methods. However, a method that can sometimes be overlooked is leveraging existing binaries that exist on the system already (often referred to a living off the land, or LOLBins). One of the most popular tools for this purpose is certutil which is a command-line program on Windows Operating Systems, and that is used as a part of Certificate Services. It can be used to configure Certificate Services, verify certificates, and more certificate related activities. One command parameter within CertUtil, urlcache, can be used to perform URL cache management actions - adversaries have realized they can use this to download malicious files. But how does one detect this activity?

A simple method to detect this activity is to look for files that are initiating a download via CertUtil.exe's "urlcache" parameter. CertUtil is typically not utilized to download executables or files in general from the web, as such its usage to download files from the Internet should be considered suspicious.

Get the FREE Hunt Package for Brute Ratel

One of the go-to red team tools that red teams and adversaries alike are known to use widely is Metasploit. Metasploit is a very common attack framework used to aid in penetration testing and malicious activity.

While Metasploit has a wide array of capabilities, one of the most common functions adversaries, and red teams, alike use it for is to achieve lateral movement and performing actions on remote systems. One of the most common techniques for accomplishing this is by abusing PsExec for service installation.

A great way to detect Metasploit’s activity is to look for service installations containing names that are consistent with the schema used by Metasploit’s PsExec tool while simultaneously looking for a binary bearing the same name in the “Windows” directory. Attackers and red teams can change this naming convention, but many are unaware of this. It offers a great start to hunt for Metasploit activity.

Get the FREE HUNT Package for Metasploit

Conclusion

Hunt Teams and Blue Teams can have difficulty with hunting for red team activity – often because they struggle to detect even common red team tools. Cyborg Security’s hunt team has put together a FREE collection of the most common behaviors that organizations and teams can hunt for today to detect common red team tools in action. Get your FREE Community account today using promocode "REDTEAM"!

Get a FREE HUNTER Community Account