mirror of
https://github.com/mukul975/Anthropic-Cybersecurity-Skills.git
synced 2026-09-03 06:50:51 +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)
|
# PowerShell CLR usage (indicates .NET reflection loading)
|
||||||
vol3 -f memory.dmp windows.cmdline | grep -i "powershell"
|
vol3 -f memory.dmp windows.cmdline | grep -i "powershell"
|
||||||
|
|
||||||
# Scan for known fileless frameworks (rule file avoids AV false positives on SKILL.md)
|
# Scan for known fileless frameworks
|
||||||
vol3 -f memory.dmp yarascan.YaraScan --yara-file references/yara-fileless-powershell.yar
|
# 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
|
# Extract PowerShell command history from memory
|
||||||
vol3 -f memory.dmp windows.cmdline
|
vol3 -f memory.dmp windows.cmdline
|
||||||
|
|||||||
Reference in New Issue
Block a user