|
|
|
|
|
by therealchiggs
1507 days ago
|
|
Scapy is great if you want to send and receive packets onto a network from Python. There are a few gotchas, for example it can be eager to send real packets out in order to resolve names which might not always be what you want if you're doing offline analysis. If you are parsing packet captures or defining custom protocols then dpkt[0] is also worth a look. It's a simpler module with substantially higher performance. [0] https://dpkt.readthedocs.io/en/latest/ |
|