mirror of
https://github.com/carlospolop/hacktricks
synced 2024-11-15 01:17:36 +00:00
bbe8b942be
This reverts commit 788cfd70eb
.
928 B
928 B
USB Keystrokes
If you have a pcap containing the communication via USB of a keyboard like the following one:
You can use the tool ctf-usb-keyboard-parser to get what was written in the communication:
tshark -r ./usb.pcap -Y 'usb.capdata && usb.data_len == 8' -T fields -e usb.capdata | sed 's/../:&/g2' > keystrokes.txt
python3 usbkeyboard.py ./keystrokes.txt
You can read more information and find some scripts about how to analyse this in: