How to sniff usb port under Windows? - Stack Overflow most recent 30 from stackoverflow.com2009-11-23T07:20:19Zhttp://stackoverflow.com/feeds/question/117474http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/117474/how-to-sniff-usb-port-under-windows6How to sniff usb port under Windows?dpavlin2008-09-22T20:39:03Z2008-10-16T10:52:13Z
<p>From time to time I need to dump usb traffic under windows, mostly to support hardware under Linux, so my primary goal is to produce dump files for protocol analysis.</p>
<p>For USB traffic, it seems that <a href="http://www.pcausa.com/Utilities/UsbSnoop/default.htm" rel="nofollow">SniffUsb</a> is the clear winner... It works under XP and has much nicer GUI than earlier versions. It produce <em>huge</em> dump files, but everything is there.</p>
<p>However, my device is in fact usb serial device, so I turned to <a href="http://technet.microsoft.com/en-us/sysinternals/bb896644.aspx" rel="nofollow">Portmon</a> which can sniff serial port traffic without USB overhead.</p>
http://stackoverflow.com/questions/117474/how-to-sniff-usb-port-under-windows/117562#1175620Answer by pkaeding for How to sniff usb port under Windows?pkaeding2008-09-22T20:51:26Z2008-09-22T20:51:26Z<p>Is there a question in here, or are you just posting what you have found?</p>
<p>If its the latter, this still looks like useful information...</p>
http://stackoverflow.com/questions/117474/how-to-sniff-usb-port-under-windows/117842#1178421Answer by Charles Duffy for How to sniff usb port under Windows?Charles Duffy2008-09-22T21:46:12Z2008-09-23T20:45:42Z<p>Personally, I'd use qemu or kvm and instrument their USB passthrough code, then use libusb to prototype the replacement driver in userspace (this latter bit I've done before; <A HREF="http://pyusb.berlios.de/" rel="nofollow">writing USB device drivers in Python</A> is fun!).</p>
http://stackoverflow.com/questions/117474/how-to-sniff-usb-port-under-windows/117853#1178532Answer by gbjbaanb for How to sniff usb port under Windows?gbjbaanb2008-09-22T21:48:14Z2008-09-22T21:48:14Z<p><a href="http://sourceforge.net/projects/usbsnoop/" rel="nofollow">USBSnoop</a> works too - and is free.</p>
<p>Or, you could buy a <a href="http://www.lanshop.co.uk/productslist.aspx?CategoryID=52972&" rel="nofollow">USB to Ethernet</a> converter and use whatever network sniffer you prefer to see the data. </p>