Monitoring Network Traffic with Scapy
Learn how to use Scapy’s sniff function to monitor traffic flowing over a network.
We'll cover the following...
Sending vs. listening in Scapy
Port scanners and vulnerability scanners are clients, meaning they initiate a conversation with a server. For clients, we can use sr()
and similar functions that send a packet and look for a response.
However, honeypots ...