vote up 6 vote down star
1

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.

For USB traffic, it seems that SniffUsb is the clear winner... It works under XP and has much nicer GUI than earlier versions. It produce huge dump files, but everything is there.

However, my device is in fact usb serial device, so I turned to Portmon which can sniff serial port traffic without USB overhead.

flag

67% accept rate
Was this a question then? – Rich B Sep 22 '08 at 20:55
I imagine it was once a question, but that the user answered it himself, and edited that answer into the question instead of filing it as an answer. (Boo!) – Charles Duffy Sep 22 '08 at 23:36

3 Answers

vote up 1 vote down check

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; writing USB device drivers in Python is fun!).

link|flag
Under Linux you'd use Wireshark, no ned to profile code or anything so complicated. However read to the end of the question. – gbjbaanb Sep 22 '08 at 21:49
When did Wireshark sniff usb? We're not talking about Ethernet here. I know the questioner is asking about USB serial, but since the topic asks about USB sniffing in general, folks who find this question will expect an answer suitable to the overall topic. – Charles Duffy Sep 22 '08 at 23:35
Thnaks, as a next step I will probably try to run it under qemu or kvm. – dpavlin Sep 23 '08 at 19:59
vote up 2 vote down

USBSnoop works too - and is free.

Or, you could buy a USB to Ethernet converter and use whatever network sniffer you prefer to see the data.

link|flag
If you look at URL of SniffUsb, it includes USBSnoop because it's based on it :-) – dpavlin Sep 23 '08 at 19:49
A network sniffer and a usb-ethernet converter is only going to sniff ethernet. Because it's not converting the raw usb, it won't let you see the individual usb packets which is what a tool like usbsnoop will provide. – Andrew Edgecombe Sep 26 '08 at 10:54
vote up 0 vote down

Is there a question in here, or are you just posting what you have found?

If its the latter, this still looks like useful information...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.