DFIR Chapter 14 Flashcards
What is called a when the network is monitored and network data is stored for a certain amount of time? This allows Network Forensics to be performed.
Retention time
What are the three main ways that traffic data can be captured?
- Through packet Captures 2. Logs and 3. NetFlow
What is the most efficient method and the most difficult to maintain to capture traffic data?
Packet capture is the most efficient method and most difficult to maintain.
What form of traffic data can be collected from host and network devices deployed on the network such as firewall and IPS devices?
Network Logs.
What is network protocol developed by Cisco, that monitors network traffic and collects IP traffic information?
NetFlow
What is a common tool used for network capture and investigation that is installed by default on most servers and network equipment and can be run via CLI(command Line Interace)?
Tcpdump
(it displays TCP/IP and additional packets that are received or transmitted over the network. It can be used for live , on-demand captures or to save network captures as .pcap files.
What can be used for live, on-demand captures or to save network captures as .pcap files?
Tcpdump
What supports several flags for a more focused collection of network data as well as filters for the collected data?
Tcp dump
What Tcpdump Flag is for (Interface to listen on)?
-i (interface)
[sudo tcpdump -i eth0 -v port 80
-i eth0 - Select eth0 as the interface that the capture is to take place on.
What Tcpdump flag is for (Packets to capture)?
-c (packets)
What Tcpdump flag is for (Verbose output)?
-v (Verbose)
[sudo tcpdump -i eth0 -v port 80
-v - verbose output that increases the amount of detail shown in the
output, often showing more protocol-specific information.
What Tcpdump flag is for (Host to filter by source and destination)?
host (host)
What Tcpdump flag is for (port to filter by source and destination)?
tcp port (port)
sudo tcpdump -i eth0 -v port 80
port 80 - port filter to capture only traffic on port 80 (http).
What Tcpdump flag is for (boolean operators for complex rules)?
and/or
Is it possible to create a packet capture when a rule is triggered?
Yes, on advanced routers and firewalls.
Packet captures can also be configured to start automatically when an event or chain of events are triggered.