| name | extracting-memory-artifacts-with-rekall |
| description | Uses Rekall memory forensics framework to analyze memory dumps for process hollowing, injected code via VAD anomalies, hidden processes, and rootkit detection. Applies plugins like pslist, psscan, vadinfo, malfind, and dlllist to extract forensic artifacts from Windows memory images. Use during incident response memory analysis.
|
| domain | cybersecurity |
| subdomain | security-operations |
| tags | ["extracting","memory","artifacts","with"] |
| version | 1.0 |
| author | mahipal |
| license | Apache-2.0 |
Extracting Memory Artifacts with Rekall
Instructions
Use Rekall to analyze memory dumps for signs of compromise including process
injection, hidden processes, and suspicious network connections.
from rekall import session
from rekall import plugins
s = session.Session(
filename="/path/to/memory.raw",
autodetect=["rsds"],
profile_path=["https://github.com/google/rekall-profiles/raw/master"]
)
for proc in s.plugins.pslist():
print(proc)
for result in s.plugins.malfind():
print(result)
Key analysis steps:
- Load memory image and auto-detect profile
- Run pslist and psscan to find hidden processes
- Use malfind to detect injected/hollowed code in process VADs
- Examine network connections with netscan
- Extract suspicious DLLs and drivers with dlllist/modules
Examples
from rekall import session
s = session.Session(filename="memory.raw")
pslist_pids = set(p.pid for p in s.plugins.pslist())
psscan_pids = set(p.pid for p in s.plugins.psscan())
hidden = psscan_pids - pslist_pids
print(f"Hidden PIDs: {hidden}")