mirror of
https://github.com/mukul975/Anthropic-Cybersecurity-Skills.git
synced 2026-08-29 12:49:41 +03:00
fix: use explicit path for YARA rule in Volatility command
The --yara-file reference should not assume a specific working directory. Use a placeholder path that analysts will substitute for their setup.
This commit is contained in:
@@ -245,8 +245,9 @@ vol3 -f memory.dmp windows.vadinfo --pid 4012 | grep -i "PAGE_EXECUTE"
|
||||
# PowerShell CLR usage (indicates .NET reflection loading)
|
||||
vol3 -f memory.dmp windows.cmdline | grep -i "powershell"
|
||||
|
||||
# Scan for known fileless frameworks (rule file avoids AV false positives on SKILL.md)
|
||||
vol3 -f memory.dmp yarascan.YaraScan --yara-file references/yara-fileless-powershell.yar
|
||||
# Scan for known fileless frameworks
|
||||
# YARA rule lives in references/yara-fileless-powershell.yar (kept separate to reduce AV false positives)
|
||||
vol3 -f memory.dmp yarascan.YaraScan --yara-file /path/to/yara-fileless-powershell.yar
|
||||
|
||||
# Extract PowerShell command history from memory
|
||||
vol3 -f memory.dmp windows.cmdline
|
||||
|
||||
Reference in New Issue
Block a user