General Usage
Use -f to specify the memory image and -s
for symbol directories if they are not in the default path.
1 2 3 4 5 6 7
| vol -f <image> <plugin>
-f, --file <image> -s, --symbol-dirs <path> -o, --output-dir <path>
|
1 2
| vol -f image.vmem windows.info.Info
|
Processes & Activity
1 2 3 4 5 6 7 8 9 10 11
| vol -f image.vmem windows.pslist.PsList
vol -f image.vmem windows.psscan.PsScan
vol -f image.vmem windows.pstree.PsTree
vol -f image.vmem windows.cmdline.CmdLine
|
Network
1 2
| vol -f image.vmem windows.netscan.NetScan
|
Files & Memory Dumping
1 2 3 4 5 6 7 8 9 10 11 12
| vol -f image.vmem windows.filescan.FileScan | grep "filename"
vol -f image.vmem -o ./ windows.dumpfiles.DumpFiles --pid <PID> vol -f image.vmem -o ./ windows.dumpfiles.DumpFiles --virtaddr <OFFSET>
vol -f image.vmem -o ./ windows.memmap.Memmap --pid <PID> --dump
vol -f image.vmem windows.mftscan.MFTScan
|
Useful Tips
1 2 3 4 5
| vol -f image.vmem windows.filescan.FileScan | grep -i "flag"
vol -s ~/ctf/symbolTables -f image.vmem windows.info.Info
|