Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 2.28 KB

README.md

File metadata and controls

42 lines (33 loc) · 2.28 KB

Memory Dump Procedures

Volatility cheat sheet

Command Description
python vol.py -f mem.dmp imageinfo imageinfo will help you to get more information about the memory dump
python vol.py -f mem.dmp --profile=prof specify to volatility the OS profile (--profile=WinXPSP2x86)
python vol.py -f mem.dmp --profile=prof pslist what were the running processes using the pslist plugin
python vol.py -f mem.dmp --profile=prof pstree display the processes and their parent processes
python vol.py -f mem.dmp --profile=prof psxview processes that are trying to hide themselves while running on the computer
python vol.py -f mem.dmp --profile=prof connscan scanner for TCP connections
python vol.py -f mem.dmp --profile=prof sockets will print a list of open sockets
python vol.py -f mem.dmp --profile=prof netscan will scan a Vista (or later) image for connections and sockets

Notes

  • mem.dmp = filename.filetype
  • prof = profile name as defined by imageinfo

Memory Forensics References

Volatility GitHub