How to sniff usb port under Windows? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-23T07:20:19Z http://stackoverflow.com/feeds/question/117474 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/117474/how-to-sniff-usb-port-under-windows 6 How to sniff usb port under Windows? dpavlin 2008-09-22T20:39:03Z 2008-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#117562 0 Answer by pkaeding for How to sniff usb port under Windows? pkaeding 2008-09-22T20:51:26Z 2008-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#117842 1 Answer by Charles Duffy for How to sniff usb port under Windows? Charles Duffy 2008-09-22T21:46:12Z 2008-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#117853 2 Answer by gbjbaanb for How to sniff usb port under Windows? gbjbaanb 2008-09-22T21:48:14Z 2008-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&amp;" rel="nofollow">USB to Ethernet</a> converter and use whatever network sniffer you prefer to see the data. </p>