Zeus Trojan - Memory Forensics with Volatility
In this post I'm going to talk about Volatility. Volatility is one of the best tools for memory forensics. It is an open source framework writen in python for incident response and malware analysis. Thanks to Malware Analyst's Cookbook we can get a real memory dump from an infected host with Zeus Trojan. You can donwload zeus.vmem.zip [41,4 MB] 1) With the option " imageinfo " you can find out what type of OS was running. python vol.py -f zeus.vmem imageinfo 2) Now, we are going to watch what processes were running on the computer when the memory dump was recorder. python vol.py -f zeus.vmem pstree 3) I couldn't see anything weird... I wanted to know if the machine was making connections... python vol.py -f zeus.vmem connscan 4) Ok. Our machine was making connections with 193.104.47.75 by the 80/tcp port. The proccess Pid is 856. We want to know whether this process belong to an Internet Browser. We run it again: p...