Hi Everyone, Here is my issue: I am able to decrypt TLS packet through Wireshark but somehow I am not able to do it with all the packets that are supposed to. So I am getting this error for those packets:
Here is the whole frame:
I also tried to look for the meaning of the "state 17" but I couldn't find it :S I appreciate any help, thanks. asked 24 Apr '15, 07:03 felipe |
2 Answers:
Asked and answered multiple times, eg. https://ask.wireshark.org/questions/17630 answered 24 Apr '15, 07:42 Jaap ♦ |
I agree that this question doesn't appear to be about using a DH cipher. I suspect that the capture doesn't include all the required frames that setup a TLS session, because of the state value. The "state" is a set of bitflags that indicate what elements of a TLS session have been seen, the current list of bitflags from the source code is:
This a state value of 11 shows that bits 0 and 4 have been set, i.e. SSL_CLIENT_RANDOM and SSL_VERSION have been located, and state 17 has the additional flags SSL_SERVER_RANDOM and SSL_CIPHER. answered 15 Jun '16, 14:07 grahamb ♦ |
How is this question the same? These logs say it is in state 11 but required 17 and make no mention of DH. Those logs fail in state 0x17 but require 0x37 or 0x57. It also does not say what state 17 actually is like the OP was asking.