Created
November 11, 2018 19:33
-
-
Save filiperfernandes/e6195b0e81ff264f4cdc1c7271c04f2a to your computer and use it in GitHub Desktop.
Setup Custom Volatility Profile on Kali
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Set layout PT | |
setxkbmap pt | |
# Setup working directory | |
mkdir -p /volumes/storage1 | |
mount /dev/sda1 -t ext4 /volumes/storage1 | |
cd /volumes/storage1 | |
# Download volatility repo | |
git clone https://github.com/volatilityfoundation/volatility | |
# Setup Volatility custom profile | |
cd volatility/ | |
wget http://turbina.gsd.inesc-id.pt/csf1819/Ubuntu160405.zip | |
mv Ubuntu160405.zip volatility/plugins/overlays/linux/ | |
# Get profile name | |
python vol.py --info | grep Ubuntu | |
# List available commands | |
python vol.py --profile=LinuxUbuntu160405x64 -f ../sally_mem -h | |
# List processes | |
python vol.py --profile=LinuxUbuntu160405x64 -f ../sally_mem linux_pslist |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment