我正在查看CTF的记录,在复制单个命令时遇到了问题:
tshark -r challenge.pcapng usb.bDescriptorType and usb.urb_type==67 -T fields -e usb.bus_id -e usb.device_address -e usb.idVendor -e usb.idProduct它是正确的,还是我应该如何使用-T参数?
发布于 2016-05-09 06:56:11
这是正确的吗?
不是的。
usb.bDescriptorType and usb.urb_type==67是一个显示/读取过滤器,因此您必须使用一个-Y标志,并将其放在引号中:
tshark -r challenge.pcapng -Y "usb.bDescriptorType and usb.urb_type==67" -T fields -e usb.bus_id -e usb.device_address -e usb.idVendor -e usb.idProducthttps://security.stackexchange.com/questions/122674
复制相似问题