detecting-process-hollowing-technique

mukul975/Anthropic-Cybersecurity-Skills · updated May 25, 2026

MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.

$npx skills install mukul975/Anthropic-Cybersecurity-Skills/detecting-process-hollowing-technique
0 commentsdiscussion
summary

Detect process hollowing (T1055.012) by analyzing memory-mapped sections, hollowed process indicators, and parent-child process anomalies in EDR telemetry.

skill.md
name
detecting-process-hollowing-technique
description
Detect process hollowing (T1055.012) by analyzing memory-mapped sections, hollowed process indicators, and parent-child process anomalies in EDR telemetry.
domain
cybersecurity
subdomain
threat-hunting
tags
- threat-hunting - mitre-attack - process-hollowing - process-injection - edr - t1055 - proactive-detection
version
'1.0'
author
mahipal
license
Apache-2.0
d3fend_techniques
- Platform Monitoring - Process Code Segment Verification - Segment Address Offset Randomization - Process Analysis - Application Hardening
nist_csf
- DE.CM-01 - DE.AE-02 - DE.AE-07 - ID.RA-05

Detecting Process Hollowing Technique

When to Use

  • When investigating suspected fileless malware or in-memory threats
  • After EDR alerts on process injection or suspicious memory operations
  • When hunting for defense evasion techniques in a compromised environment
  • When threat intel reports indicate process hollowing in active campaigns
  • During purple team exercises validating T1055.012 detection coverage

Prerequisites

  • EDR with memory protection monitoring (CrowdStrike, MDE, SentinelOne)
  • Sysmon with Event IDs 1 (Process Create), 8 (CreateRemoteThread), 25 (ProcessTampering)
  • Windows ETW providers for process hollowing (Microsoft-Windows-Kernel-Process)
  • Memory forensics capabilities (Volatility, WinDbg)
  • Process integrity monitoring tools

Workflow

  1. Understand Hollowing Mechanics: Process hollowing involves creating a legitimate process in suspended state, unmapping its memory, writing malicious code, then resuming execution.
  2. Monitor Suspended Process Creation: Hunt for processes created with CREATE_SUSPENDED flag followed by memory writes and thread resumption.
  3. Detect Memory Section Anomalies: Identify processes where the in-memory image differs from the on-disk binary (image mismatch).
  4. Analyze Parent-Child Process Trees: Flag processes whose behavior does not match their binary name (e.g., svchost.exe making unusual network connections).
  5. Check Process Integrity: Compare process memory sections against the legitimate binary on disk.
  6. Correlate with Network Activity: Hollowed processes often establish C2 connections - correlate suspicious process behavior with network logs.
  7. Document and Contain: Report findings, isolate affected endpoints, and update detection rules.

Key Concepts

ConceptDescription
T1055.012Process Injection: Process Hollowing
T1055Process Injection (parent technique)
T1055.001DLL Injection
T1055.003Thread Execution Hijacking
T1055.004Asynchronous Procedure Call
CREATE_SUSPENDEDWindows flag to create a process in suspended state
NtUnmapViewOfSectionAPI to unmap process memory sections
WriteProcessMemoryAPI to write into another process's memory
ResumeThreadAPI to resume a suspended thread
Image MismatchProcess memory content differs from on-disk binary
Process DoppelgangingRelated technique using NTFS transactions (T1055.013)

Tools & Systems

ToolPurpose
CrowdStrike FalconMemory protection and hollowing detection
Microsoft Defender for EndpointProcessTampering alerts
Sysmon v13+Event ID 25 ProcessTampering detection
VolatilityMemory forensics - malfind plugin
pe-sieveProcess memory scanner for hollowed processes
Hollows HunterAutomated hollowed process detection
Process HackerLive process memory inspection
API MonitorMonitor NtUnmapViewOfSection calls

Common Scenarios

  1. Svchost.exe Hollowing: Malware creates svchost.exe suspended, hollows it, injects backdoor code - process appears legitimate but behaves maliciously.
  2. Explorer.exe Hollowing: Attacker hollows explorer.exe to inherit its network permissions and trusted process context.
  3. Rundll32 Hollowing: Malicious loader creates rundll32.exe, replaces its memory with implant code for C2 beaconing.
  4. Multi-Stage Hollowing: Loader uses process hollowing as first stage, then performs additional injection into services.

Output Format

Hunt ID: TH-HOLLOW-[DATE]-[SEQ]
Technique: T1055.012
Hollowed Process: [Process name and PID]
Original Binary: [Expected on-disk path]
Parent Process: [Parent name and PID]
Memory Mismatch: [Yes/No]
Suspicious APIs: [NtUnmapViewOfSection, WriteProcessMemory, etc.]
Network Activity: [C2 connections if any]
Host: [Hostname]
User: [Account context]
Risk Level: [Critical/High/Medium/Low]
how to use detecting-process-hollowing-technique

How to use detecting-process-hollowing-technique on Cursor

AI-first code editor with Composer

1

Prerequisites

Before installing skills in Cursor, ensure your development environment meets these requirements:

  • Cursor installed and configured on your development machine
  • Node.js version 16.0+ with npm package manager (verify with node --version)
  • Active project directory or workspace where you want to add detecting-process-hollowing-technique
2

Execute installation command

Execute the skills CLI command in your project's root directory to begin installation:

$npx skills install mukul975/Anthropic-Cybersecurity-Skills/detecting-process-hollowing-technique

The skills CLI fetches detecting-process-hollowing-technique from GitHub repository mukul975/Anthropic-Cybersecurity-Skills and configures it for Cursor.

3

Select Cursor when prompted

The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:

◆ Which agents do you want to install to?
│ ── Universal (.agents/skills) ── always included ────
│ • Amp
│ • Antigravity
│ • Cline
│ • Codex
│ ●Cursor(selected)
│ • Cursor
│ • Windsurf
4

Verify installation

Confirm successful installation by checking the skill directory location:

.cursor/skills/detecting-process-hollowing-technique

Reload or restart Cursor to activate detecting-process-hollowing-technique. Access the skill through slash commands (e.g., /detecting-process-hollowing-technique) or your agent's skill management interface.

Security & Verification Notice

We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.

Skills execute code in your development environment. Always verify the publisher's identity, review recent commits, and test in isolated environments before production deployment.

List & Monetize Your Skill

Submit your Claude Code skill and start earning

GET_STARTED →

Use Cases

Task Automation & Efficiency

Automate repetitive workflows and reduce manual effort

Example

Generate reports, summarize documents, draft communications

Save 3-5 hours per week on routine tasks

Knowledge Enhancement

Learn new skills, understand complex topics, get expert guidance

Example

Explain concepts, provide examples, suggest learning resources

Accelerate learning and skill development by 2x

Quality Improvement

Enhance output quality through reviews, suggestions, and refinements

Example

Review drafts, suggest improvements, catch errors

Improve work quality by 30-40% with less effort

Implementation Guide

Prerequisites

  • Claude Desktop or compatible AI client with skill support
  • Clear understanding of task or problem to solve
  • Willingness to iterate and refine outputs

Time Estimate

15-45 minutes depending on use case complexity

Installation Steps

  1. 1.Install skill using provided installation command
  2. 2.Test with simple use case relevant to your work
  3. 3.Evaluate output quality and relevance
  4. 4.Iterate on prompts to improve results
  5. 5.Integrate into regular workflow if valuable

Common Pitfalls

  • Expecting perfect results without iteration
  • Not providing enough context in prompts
  • Using skill for tasks outside its intended scope
  • Accepting outputs without review and validation

Best Practices

✓ Do

  • +Start with clear, specific prompts
  • +Provide relevant context and constraints
  • +Review and refine all outputs before using
  • +Iterate to improve output quality
  • +Document successful prompt patterns

✗ Don't

  • Don't use without understanding skill limitations
  • Don't skip validation of outputs
  • Don't share sensitive information in prompts
  • Don't expect skill to replace human judgment

💡 Pro Tips

  • Be specific about desired format and style
  • Ask for multiple options to choose from
  • Request explanations to understand reasoning
  • Combine AI efficiency with human expertise

When to Use This

✓ Use When

Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.

✗ Avoid When

Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.

Learning Path

  1. 1Familiarize yourself with skill capabilities and limitations
  2. 2Start with low-risk, non-critical tasks
  3. 3Progress to more complex and valuable use cases
  4. 4Build expertise through regular use and experimentation

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
general reviews

Ratings

4.570 reviews
  • Tariq Khan· Dec 28, 2024

    Useful defaults in detecting-process-hollowing-technique — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.

  • Nia Sethi· Dec 24, 2024

    detecting-process-hollowing-technique is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.

  • Daniel Patel· Dec 24, 2024

    Solid pick for teams standardizing on skills: detecting-process-hollowing-technique is focused, and the summary matches what you get after install.

  • Advait Shah· Dec 20, 2024

    detecting-process-hollowing-technique reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Aarav Rahman· Dec 16, 2024

    detecting-process-hollowing-technique reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Anika Okafor· Dec 16, 2024

    Registry listing for detecting-process-hollowing-technique matched our evaluation — installs cleanly and behaves as described in the markdown.

  • Amelia Martinez· Dec 12, 2024

    Solid pick for teams standardizing on skills: detecting-process-hollowing-technique is focused, and the summary matches what you get after install.

  • Evelyn Choi· Dec 12, 2024

    I recommend detecting-process-hollowing-technique for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.

  • Tariq Dixit· Dec 8, 2024

    We added detecting-process-hollowing-technique from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

  • Zara Farah· Nov 27, 2024

    detecting-process-hollowing-technique fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

showing 1-10 of 70

1 / 7