snippetbashTip
vol.py — Forensics framework used to analyze volatile memory (RAM) dumps. With volatility3, plugins are now b
Viewed 0 times
vol.pyforensicscommandvolatileframeworkusedclianalyze
windows
Problem
How to use the
vol.py command: Forensics framework used to analyze volatile memory (RAM) dumps. With volatility3, plugins are now based on operating system. Examples below will use Windows. More information: <https://volatility3.readthedocs.io/en/latest/index.html>.Solution
vol.py — Forensics framework used to analyze volatile memory (RAM) dumps. With volatility3, plugins are now based on operating system. Examples below will use Windows. More information: <https://volatility3.readthedocs.io/en/latest/index.html>.Get information about a memory dump file:
python3 vol.py {{[-f|--filename]}} {{path\to\memory_dump_file}} windows.infoList active processes:
python3 vol.py {{[-f|--filename]}} {{path\to\memory_dump_file}} windows.pslistList hashes of users on system:
python3 vol.py {{[-f|--filename]}} {{path\to\memory_dump_file}} windows.hashdumpList active network connections:
python3 vol.py {{[-f|--filename]}} {{path\to\memory_dump_file}} windows.netstatDisplay help:
python3 vol.py {{[-h|--help]}}Code Snippets
Get information about a memory dump file
python3 vol.py {{[-f|--filename]}} {{path\to\memory_dump_file}} windows.infoList active processes
python3 vol.py {{[-f|--filename]}} {{path\to\memory_dump_file}} windows.pslistList hashes of users on system
python3 vol.py {{[-f|--filename]}} {{path\to\memory_dump_file}} windows.hashdumpList active network connections
python3 vol.py {{[-f|--filename]}} {{path\to\memory_dump_file}} windows.netstatDisplay help
python3 vol.py {{[-h|--help]}}Context
tldr-pages: windows/vol.py
Revisions (0)
No revisions yet.