TIL that you can analyze live packets from remote network interfaces in Wireshark with the following command: ```bash ssh $SSH_TARGET "tcpdump -w- -i $REMOTE_INTERFACE" | wireshark -k -i- ```It's essentially three commands glued together in a big pipe. On the left side of the… read more