User Tools

Site Tools


scapy-usage-examples

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
scapy-usage-examples [2012/08/03 15:33]
94.245.224.234 [examples]
scapy-usage-examples [2012/08/05 12:12]
89.144.206.230 [how to]
Line 10: Line 10:
  
 <code python> <code python>
->>>​ pkts=sniff(count=10)+>>>​ pkts=sniff(count=100, iface="​wlan1"​#use exteranl wifi card to sniff 
 +>>>​pkts 
 +<​Sniffed:​ TCP:0 UDP:47 ICMP:0 Other:​53>​
 >>>​ wrpcap(‘traffic.pcap’,​pkts) ​     #  Write list of packets to PCAP file >>>​ wrpcap(‘traffic.pcap’,​pkts) ​     #  Write list of packets to PCAP file
 >>>​ packetlist = rdpcap(‘traffic.pcap’) #  Read PCAP file into list of packets >>>​ packetlist = rdpcap(‘traffic.pcap’) #  Read PCAP file into list of packets
->>>​ for pkt in pkts+>>>​ for pkt in packetlist
-...     print pkt+...     print pkt, pkt.src, pkt.name #src give the MAC address of the device; name gives the protocol (Ethernet/​802.3...)
 </​code>​ </​code>​
 returns a dump like this: returns a dump like this:
scapy-usage-examples.txt · Last modified: 2012/08/05 12:12 by 89.144.206.230