Scapy/Pcap Reader: Difference between revisions
From charlesreid1
(Created page with "Creating a pcap file reader in Scapy. {{ScapyFlag}}") |
No edit summary |
||
| Line 1: | Line 1: | ||
Creating a pcap file reader in Scapy. | Creating a pcap file reader in Scapy. | ||
First, capture a pcap file. (Use [[Tcpdump]] or some other utility.) | |||
<pre> | |||
a=rdpcap("/path/to/capture.pcap") | |||
</pre> | |||
{{ScapyFlag}} | {{ScapyFlag}} | ||
Revision as of 20:31, 24 January 2016
Creating a pcap file reader in Scapy.
First, capture a pcap file. (Use Tcpdump or some other utility.)
a=rdpcap("/path/to/capture.pcap")
| scapy a Python library for interfacing with network devices and analyzing packets from Python.
Building Wireless Utilities: Scapy/Airodump Clone · Scapy/AP Scanner Analyzing Conversations: Scapy/Conversations Database: Scapy/Wifi Database Category:Scapy · Category:Python · Category:Networking
|