Packet sniffing in Python (Windows) - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T14:55:07Zhttp://stackoverflow.com/feeds/question/462439http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/462439/packet-sniffing-in-python-windows3Packet sniffing in Python (Windows)Elimis2009-01-20T18:18:33Z2009-01-20T22:00:52Z
<p>Hi all,</p>
<p>What is the best way to sniff network packets using Python?</p>
<p>I've heard from several places that the best module for this is a module called Scapy, unfortunately, it makes python.exe crash on my system. I would assume that it's just a problem with how I installed it, except that many other people have told me that it doesn't work particularly well on Windows. (If anyone is interested, I'm running Windows Vista, which might affect things).</p>
<p>Does anyone know of a better solution?</p>
<p>Thanks</p>
<p>EDITED TO ADD:</p>
<p>Thanks for the answers.</p>
<p>After reading the answer telling me to install PyPcap, I messed around with it a bit and found out that Scapy, which I had tried using, was telling me to install PyPcap as well, except that it's a modified version for it's use. It was this modified PyPcap that was causing the problem, apparently, since the example in the answer also caused a hang.</p>
<p>I installed the original version of PyPcap (from Google's site), and Scapy started working fine (I didn't try many things, but at least it didn't crash as soon as I started sniffing). I sent a new defect ticket to the Scapy developers: <a href="http://trac.secdev.org/scapy/ticket/166" rel="nofollow">http://trac.secdev.org/scapy/ticket/166</a>, hope they can do something with it.</p>
<p>Anyways, just thought I'd let y'all know.</p>
http://stackoverflow.com/questions/462439/packet-sniffing-in-python-windows/462447#4624475Answer by nosklo for Packet sniffing in Python (Windows)nosklo2009-01-20T18:20:59Z2009-01-20T18:27:57Z<p>Use <a href="http://sourceforge.net/projects/pylibpcap/" rel="nofollow">python-libpcap</a>.</p>
<pre><code>import pcap
p = pcap.pcapObject()
dev = pcap.lookupdev()
p.open_live(dev, 1600, 0, 100)
#p.setnonblock(1)
try:
for pktlen, data, timestamp in p:
print "[%s] Got data: %s" % (time.strftime('%H:%M',
time.localtime(timestamp)),
data)
except KeyboardInterrupt:
print '%s' % sys.exc_type
print 'shutting down'
print ('%d packets received, %d packets dropped'
' %d packets dropped by interface') % p.stats()
</code></pre>
http://stackoverflow.com/questions/462439/packet-sniffing-in-python-windows/462473#4624731Answer by orip for Packet sniffing in Python (Windows)orip2009-01-20T18:26:40Z2009-01-20T18:26:40Z<p>Another option is <a href="http://code.google.com/p/pypcap/" rel="nofollow">pypcap</a>.</p>
<p>To parse the results, <a href="http://construct.wikispaces.com/" rel="nofollow">Construct</a> is very slick.</p>
http://stackoverflow.com/questions/462439/packet-sniffing-in-python-windows/462497#4624970Answer by nosklo for Packet sniffing in Python (Windows)nosklo2009-01-20T18:31:15Z2009-01-20T18:31:15Z<p>Using <a href="http://code.google.com/p/pypcap/" rel="nofollow">pypcap</a>:</p>
<pre><code>import dpkt, pcap
pc = pcap.pcap()
pc.setfilter('icmp')
for timestamp, packet in pc:
print dpkt.ethernet.Ethernet(pkt)
</code></pre>
<p>output sample:</p>
<pre><code>Ethernet(src='\x00\x03G\xb2M\xe4', dst='\x00\x03G\x06h\x18', data=IP(src='\n\x00\x01\x1c',
dst='\n\x00\x01\x10', sum=39799, len=60, p=1, ttl=128, id=35102, data=ICMP(sum=24667,
type=8, data=Echo(id=512, seq=60160, data='abcdefghijklmnopqrstuvwabcdefghi'))))
Ethernet(src='\x00\x03G\x06h\x18', dst='\x00\x03G\xb2M\xe4', data=IP(src='\n\x00\x01\x10',
dst='\n\x00\x01\x1c', sum=43697, len=60, p=1, ttl=255, id=64227, data=ICMP(sum=26715,
data=Echo(id=512, seq=60160, data='abcdefghijklmnopqrstuvwabcdefghi'))))
</code></pre>