Using Volatility in Kali Linux
To start the Volatility Framework, click on the All Applications
button at the bottom of the sidebar and type volatility
in the search bar:
![](https://static.packt-cdn.com/products/9781788625005/graphics/c9f78a71-5b68-4e13-bcce-95be08a0de43.png)
Clicking on the volatility
icon starts the program in a Terminal. When Volatility starts, we see that the version being used is 2.6
and also presents us with options for use:
![](https://static.packt-cdn.com/products/9781788625005/graphics/af780aac-ab7d-454c-aabb-e00417a6966e.png)
For a complete list of all plugins at your fingertips, open a separate Terminal and run the volatility -h
command, rather than having to scroll to the top of the Terminal that you are using to run Volatility plugin commands:
![](https://static.packt-cdn.com/products/9781788625005/graphics/e0902618-2243-4b16-88e4-4f4f26de0e81.png)
The following screenshot shows a snippet of some of the many plugins within the Volatility Framework:
![](https://static.packt-cdn.com/products/9781788625005/graphics/51b9a740-dcea-41c4-8b91-5210f33d1aa8.png)
This list comes in handy when performing analysis as each plugin comes with its own short description. The following screenshot shows a snippet of the help
command, which gives a description of the imageinfo
plugin:
![](https://static.packt-cdn.com/products/9781788625005/graphics/108cfad6-117e-4316-93d6-acef06754e69.png)
The format for using plugins in Volatility is:
volatility -f [filename] [plugin] [options]
As seen in the previous section...