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

推荐订阅源

V
Visual Studio Blog
Y
Y Combinator Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Hugging Face - Blog
Hugging Face - Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
The Cloudflare Blog
L
LangChain Blog
美团技术团队
N
Netflix TechBlog - Medium
量子位
酷 壳 – CoolShell
酷 壳 – CoolShell
B
Blog
博客园 - 司徒正美
爱范儿
爱范儿
D
DataBreaches.Net
月光博客
月光博客
U
Unit 42
B
Blog RSS Feed
Engineering at Meta
Engineering at Meta
Apple Machine Learning Research
Apple Machine Learning Research
Jina AI
Jina AI
MongoDB | Blog
MongoDB | Blog
腾讯CDC

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
Top 3 Easiest Threat Hunts
Intel 471 · 2020-12-02 · via Intel 471 Blog

Threat hunting techniques don't always have to be super advanced or complicated to yield beneficial results. There are a number of threat hunts that are simple to carry out, and which can find hidden threats that may not necessarily be picked up by traditional threat detection tools.

The following three hunts are a perfect way for beginner threat hunters and SOC analysts to dip their toes in the water and start honing their skills before building out a more formalized threat hunting program. There's no complicated technology or data collection mechanisms necessary, just the time and patience to do the work.

Easy Threat Hunt #1: Searching for Suspicious Child Processes

Malicious phishing stands as one of the most commonly observed attack vectors. All too often these attacks leverage Microsoft Office documents with malicious macros embedded in them. This is done in order to avoid detection mechanisms that usually fixate on filtering attached executables and other obvious red flags. The phishing mechanisms lure users to open the document and enable macros, allowing the malicious code to run, carrying out its nefarious ends.

Threat hunters can start digging for malicious macro activity by looking through process logging and identifying potential anomalies in parent-child process relationships. A very good indicator of maliciousness is to look for Microsoft Office products (such as winword.exe) spawning cmd.exe or powershell.exe. While this can sometimes be attributed to organizations’ power users, the exact commands running in those child processes should be investigated further. If an analyst finds that the process also used an argument like EncodedCommand, then there is definitely cause for concern.

Easy Threat Hunt #2: Looking for DNS Entropy

Looking through DNS logs can provide a ready-made way to identify potential command and control and/or data exfiltration activity over DNS. The easiest way to do this is extract all requested domains from your infrastructure and start looking at their entropy.

What is entropy?

In the English language there are certain combinations of letters and patterns that occur very frequently. For example, TH and ST occur over and over again, while other combinations are less common such as ZT or QC. Searching for domain name entropy is the art of searching for strings of text that don’t appear to be “natural.” A great starting point for searching for anomalous entropy can be looking for four or more sequential consonants.

Another hunting technique that can yield dividends for hunters wading into DNS data are to look for abnormally long domain names. Of course, the rise of content delivery networks (CDNs) has somewhat muddied the waters, but regardless this technique continues to bear fruit.

Easy Threat Hunt #3: Seek Out Anomalous User Agents

If an organization has the ability to look at HTTP metadata through a tool like Zeek (formerly known as Bro), there's a lot of revealing information available for hunters. Some of the lowest hanging fruit on this front can be picked from the HTTP headers, especially the user agent data. User agents will typically identify to a server what browser you are using and what plugins and their versions are installed. However, user agent strings are completely customizable, and are very easy to manipulate. A common trick malware developers use is to generate obviously – and sometimes not so obviously – false user agent strings.

Threat hunters can get good results by utilizing the concept of “the principle of least seen” and the stack counting tactic to compare user agents across their environments. This process can reveal statistical outliers to begin parsing through.

Common things to look for (beside glaringly obvious strings) are the subtle changes like dangling periods at the end, small spelling errors (does Mozilla have one “L” or two?), or mysterious spaces (Silverlight is all one word, isn’t it?).

The outliers, whether they are subtle or not so subtle, should be investigated further. It could be a malicious connection, or it could also be a radically out-of-date system that had long been forgotten about.

All three of these easy hunts don't take much fancy analytical technology or data collection to carry out. In many cases it just takes existing logging and the time to sift and sort through CSVs and pivot tables. The easy wins produced by them, though, could help prove out the need for more sophisticated threat hunting techniques and tools later on down the line. And then of course, don’t forget what comes next. Read: After the Hunt: How to Follow Up On Cyber Threat Hunting Findings.