xiongyihui / notes

Notes
https://xiongyihui.github.io/notes/
3 stars 0 forks source link

Use Wireshark as a USB Analyzer #26

Open xiongyihui opened 5 years ago

xiongyihui commented 5 years ago

On Windows, install Wireshark with USBPcap

image

display filters:

usb.src != "1.5.1" and usb.dst != "1.5.1"

usb.src == "1.5.1" or usb.dst == "1.5.1"

More on https://www.wireshark.org/docs/dfref/u/usb.html

xiongyihui commented 5 years ago

usb.transfer_type != 0

xiongyihui commented 2 years ago

usb.src ~ "2.13." || usb.dst ~ "2.13." is equal to usb.src matches "2.13." || usb.dst matches "2.13."