Hi All, I am trying to list all supported ciphersuites during the SSL client hello by running the capture thru tshark. The query is fine, but the values coverted to decimal. Is there a way tshark can convert them to ascii so that I can see the TLS versions and ciphersuite names instead? Here is my command: tshark -r SSLCapture.cap -V -2R ssl.handshake.type==1 -T fields -e ssl.handshake.version -e ssl.handshake.ciphersuite Output:: 769 47,53,5,10,49171,49172,49161,49162,50,56,19,4 769 = 0x0301 which is TLS 1.0 so can I display TLSv1 in tshark? 5 = 0x0005 which is TLS_RSA_WITH_RC4_128_SHA, and so forth..... Thanks in advance for your help! asked 01 Nov '14, 20:57 StriclyFlava |
One Answer:
You can use thsark in the following way
Sample output:
Then use a script (perl/python/whatever) to extract the information you need, like:
or
Regards answered 02 Nov '14, 04:31 Kurt Knochner ♦ |