Hi! I have a pcap file with requests over SSL. Under:
I find the host name of the involved server. I would like to extract all values of this type into a list. Do I have to resort to a programmatic solution using an external library with Python f.x. or is there a built in feature which would allow me to accomplish that or something equivalent? Kind Regards Raffael asked 24 Feb '16, 09:47 Raffael1984 |
One Answer:
Use tshark from the command line, specificying that you only want the server name field, e.g.
Depending on your OS, you may need to provide the path to tshark and use "/" as the path separator. answered 24 Feb '16, 11:14 grahamb ♦ |