[ws 3.2.0] quic handshake is decrypted but subsequent packets are not
I'm trying to get an understanding of the QUIC protocol using wireshark (and other material from various sources).
Steps that I followed:
- captured (using tshark) QUIC traffic between a local client server (generated using mozilla/neqo, with
SSLKEYLOGFILE
env to store traffic secrets). - set the captured traffic secrets path in wireshark preferences (
Protocols -> TLS [(Pre)-Master-Secret log filename]
) - open the pcap file
Expected:
- decrypted payloads for QUIC handshakes
- decrypted payloads for subsequent QUIC packets
Observed:
- [
PASS
] decrypted payloads for QUIC handshakes - [
FAIL
] decrypted payloads for subsequent QUIC packets
Are there any additional steps that I need to follow to decrypt all QUIC packets?
screenshot showing the issue: wireshark-quic-screenshot
(This question was cross-posted at https://www.wireshark.org/lists/wireshark-users/201912/msg00009.html)