Skip to content

Instantly share code, notes, and snippets.

@valkheim
Created February 28, 2021 11:26
Show Gist options
  • Save valkheim/49700ce7dd02305257b7449cf2042a89 to your computer and use it in GitHub Desktop.
Save valkheim/49700ce7dd02305257b7449cf2042a89 to your computer and use it in GitHub Desktop.
#!/bin/sh
out="vol_dump"
image=$1 # .raw .vmem .sav .bin .mem etc
function vol_op {
echo "[+] $1: $2 ${@:3}"
volatility -f $1 --profile=$2 ${@:3} > $out/$2/$3.txt
}
profiles=$(volatility -f $image imageinfo | grep "Suggested Profile" | cut -d ":" -f2 | cut -d '(' -f1 | tr ' ' '\0')
IFS=',' ; for profile in $profiles; do
echo "[+] Testing $profile"
mkdir -p $out/$profile
vol_op $image $profile pslist
vol_op $image $profile psxview # False columns -> process intentionally hidden
vol_op $image $profile ldrmodules # False columns likely means injection
vol_op $image $profile apihooks # detect unexpected patches in system dlls (<unknow> hooking module is b4d)
malfind_out=$out/$profile/malfind
mkdir -p $malfind_out
vol_op $image $profile malfind -D $malfind_out
vol_op $image $profile dlllist
#vol_op $image $profile netscan
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment