Searching for opened documents
Unfortunately, Linux-based systems do not have the same level of information logging as Windows. Nevertheless, it is still possible to find information about a particular file or even try to recover its content from memory. But first things first.
You already know that the files opened at the start of a program can be seen with the linux_psaux
or linux_bash
plugins. If you are interested in the files opened while a program is running, you can use the linux_lsof
plugin by passing it the ID of the process you are interested in via the -p
option. Let's try to find information about xls
files opened by the soffice.bin
process of the itupport
user. To search for files of a certain type, we will use grep
:
The output shows that, in our case, LibreOffice connected to only one file, cliens.xls
. It would be nice to know the contents of this file as well. Volatility provides a mechanism...