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

推荐订阅源

WordPress大学
WordPress大学
Stack Overflow Blog
Stack Overflow Blog
人人都是产品经理
人人都是产品经理
Y
Y Combinator Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
D
DataBreaches.Net
GbyAI
GbyAI
Microsoft Security Blog
Microsoft Security Blog
博客园_首页
大猫的无限游戏
大猫的无限游戏
Jina AI
Jina AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Engineering at Meta
Engineering at Meta
IT之家
IT之家
MongoDB | Blog
MongoDB | Blog
The GitHub Blog
The GitHub Blog
月光博客
月光博客
U
Unit 42
Hugging Face - Blog
Hugging Face - Blog
博客园 - 叶小钗
腾讯CDC
B
Blog RSS Feed
博客园 - Franky
爱范儿
爱范儿

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
Hunting a Phish
Intel 471 · 2020-12-10 · via Intel 471 Blog

I think it is safe to say that 2020 has proven to be a year of fear, uncertainty, and doubt, and the data supports that threat actors of all stripes are taking advantage of it. In fact, COVID-19 alone is believed to be the largest coalescing cyber-attack in history. Of course, actors didn’t stop merely at using COVID-19 for nefarious means, but they have also leveraged things like uncertainty around the 2020 US Presidential Election, the growing social unrest across the globe, and many others. And while the objectives, tools, and outcomes of each of these attacks have all varied widely, one thing that has remained consistent is the use of phishing to establish a foothold in the environment.

From Phish to Foothold

The use of phishing – specifically using malicious attachments – as a means of penetrating organizations’ perimeter defenses, continues to rise and take a heavy toll on corporate security teams. While those security teams need to “get it right” every time with a never-ending onslaught of phishing attacks, a threat actor needs to only “get it right” once, often with a barrier of entry of nothing more than some free tools and a disposable (or altogether non-existent) email account.

It is because of the ubiquity of phishing as an initial method of establishing a foothold in organizations that threat hunters often focus very heavily on telltale signs of it to start their hunts. This is because while the tools, subject matter, and motivations of the actors involved may change frequently, their tactics, techniques, and procedures (TTPs), or more simply their behaviours, often don’t. With that in mind, let’s dive into one method that organizations can use to detect MITRE ATT&CK Technique T1556.001 – Spearphishing Attachments.

Shooting Phish in a Barrel

Hunting for phishing attachments is incredibly popular amongst hunt teams because it only requires basic Windows Event logging to get started. Security teams don’t require any other fancy tools like EDR or XDR platforms – though they can of course help. This low barrier of entry makes it incredibly accessible, especially for organizations just getting started or for first time hunters.

While searching across an entire enterprise for malicious phishing attachments may seem daunting at first, the methodology used is actually quite simple and straightforward, relying heavily on the concept of suspicious parent-child process relationships.

What are Parent-Child Relationships

In the simplest terms, a process is any computer program being executed (duh!). A parent process is any program that spawns (or creates) one or more child processes. A child process is any program that was spawned by a parent process. In both of these instances, the important concept to understand is that a child process is executed (or invoked) from another program and not from the user.

[Image: Parent-Child Relationships]

With the concept of parent-child processes behind us, the next step is to consider what is “normal” behaviour both generally, and more specifically for your organization.

An Outlook on Email

As an example, consider the workflow of an average user: like almost everyone, the average employee’s life at your organization likely revolves around email, and with those emails will likely come attachments. The average user often forgoes downloading and saving attachments, in favour of opening them directly from the email. In this case the parent process, OUTLOOK.exe, will spawn a child process corresponding to the attachment type, such as WINWORD.exe if the attachment were a *.doc file. This process of OUTLOOK.exe spawning one of the standard Microsoft Office applications likely occurs hundreds of times a day for most mid-sized organizations, and if that is where the processes stop, all is likely well.

[Image: An Outlook on Email]

The (Pretty Common) Maldoc Phish

However, malicious spearphishing attachments (often simply termed “maldocs” or referred to as Stage 0) often contain specially crafted macros. Macros are small pieces of code that allow users to automate specific tasks in a document, but they can also be used for malicious purposes. These malicious macros are often highly obfuscated, and some of them are quite clever in their design, in order to ward off curious security researchers, but the outcome of these macros is often the same. Specifically, to invoke another child process (often, but not always, PowerShell) which will enable the actor the ability to execute a wider array of commands that will enable allow them to download additional payloads (these payloads are often downloaders or droppers and are commonly referred to as Stage 1).

[Image: The (Pretty Common) Maldoc Phish]

Be Very Quiet... I'm Hunting Phish

From a hunting perspective, we can use what we know about parent-child process behaviour to look at Windows Event logs a little more closely. Specifically, we can hone in on Windows Events with an ID of 4688 (which are events generated every time there is aa process is createion) to look for suspicious relationships between those processes. In this case we are specifically looking for process creation events for specific suspicious irregular tools like PowerShell, CScript, WScript, WMIC and othersimilar windows built-in toolss, where the Creator Process Name matches a Microsoft Office product (such as EXCEL.EXEexe, WINWORD.EXEexe, POWERPNT.exe, MSPUB.exe, and VISIO.exe).

[Image: In this case we are specifically looking for process creation events for specific suspicious irregular tools like PowerShell, CScript, WScript, WMIC and othersimilar windows built-in toolss, where the Creator Process Name matches a Microsoft Office product (such as EXCEL.EXEexe, WINWORD.EXEexe, POWERPNT.exe, MSPUB.exe, and VISIO.exe).]

In Closing...

Now, the results of such a hunt will likely still require analysis to separate the malicious activity from the Office power users (whose ingenuity will often leave security teams speechless, and sometimes terrified!), however the result of the hunt nonetheless it will give hunters a great starting point for hunting maldocs from spearphishing emails in their environment. Want to keep going? Continue the Hunt in the first episode of Cyborg Security's Threat Hunting Deep Dives.