When a security incident occurred and must be investigated, the Incident Handlers Holy Grail is a network capture file. It contains all communications between the hosts on the network. These metadata are already in goldmine: source and destination IP addresses, ports, time stamps. But if we can also have access to the full packets with the payload, it is even more interesting. We can extract binary files from packets, replay sessions, extract IOCs and many mores.
Performing FPC or Full Packet Capture is a must but has many constraints:
- It has a huge impact on the required storage
- It has privacy issues as the captured data may contain confidential information (for a user or the company)
- Within complex architectures, it is complex to implement (multiple Internet gateways, distributed sites, ...)
So, the idea: Instead of deploying a full packet capture solution for the entire network, you can focus on more sensitive assets and collects locally. Thats what Im doing with all my servers hosted here and there. How?
First of all, when I deploy a new server, the first piece of software that I install after the operating system is Docker[1]. It is so convenient to deploy applications in a container for production or test/development. Docker containers can be deployed at boot time and do">
FROM ubuntuMAINTAINER Xavier MertensVOLUME [ /data ]RUN apt-get update apt-get -y -q install tcpdumpCMD [ -i, any, -C, 1000, -W, 10, -w, /data/dump ]ENTRYPOINT [ /usr/sbin/tcpdump ]
And you"> # docker run -d --net=host -v /var/log/tcpdump:/data --restart=always \ --name tcpdump -i eth0 -n -s 0 -C 1000 -W 10 -w /data/dump.pcap
Keep in mind:
- Sometimes it takes some delays to detect an incident and to start investigations.
- Adapt the sliding window of your PCAP files accordingly to the traffic handled by the server! (It is easy for an attacker to full fill your PCAP files with junk traffic to force the rotation and discard evidence)
- PCAP files are stored on the computer and could be deleted by the attacker.
- Add any BPF[2] filter to log only relevant traffic (but you could loose some interesting data)
- Tcpdump does not provide data persistence. If the container is restarted (ex: the server is rebooted), PCAP files rotation will restart with the file 0.
Happy logging!
[1] https://www.docker.com/
[2] http://biot.com/capstats/bpf.html
Xavier Mertens (@xme)
ISC Handler - Freelance Security Consultant
PGP Key