From cybersecurity-skills
Analyzes Windows memory dumps with Rekall to detect process hollowing, injected code, hidden processes, and rootkits using plugins like pslist, psscan, malfind, and dlllist. Use during incident response memory forensics.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cybersecurity-skills:extracting-memory-artifacts-with-rekallThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- When performing authorized security testing that involves extracting memory artifacts with rekall
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
# Create a Rekall session with a memory image
s = session.Session(
filename="/path/to/memory.raw",
autodetect=["rsds"],
profile_path=["https://github.com/google/rekall-profiles/raw/master"]
)
# List processes
for proc in s.plugins.pslist():
print(proc)
# Detect injected code
for result in s.plugins.malfind():
print(result)
Key analysis steps:
from rekall import session
s = session.Session(filename="memory.raw")
# Compare pslist vs psscan for hidden processes
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}")
npx claudepluginhub mukul975/anthropic-cybersecurity-skills --plugin cybersecurity-skillsAnalyzes Windows memory dumps with Rekall to detect process hollowing, injected code, hidden processes, and rootkits using plugins like pslist, psscan, malfind, and dlllist. Use during incident response memory forensics.
Analyzes Windows memory dumps with Rekall to detect process hollowing, injected code, hidden processes, and rootkits during incident response.
Analyzes Windows memory dumps with Rekall for process hollowing, injected code via VADs, hidden processes, rootkits using pslist, psscan, malfind, dlllist plugins. For incident response forensics.