I am working on a heartbleed project for my studies to learn more about it. As an implemented example I got this git repository: https://github.com/mpgn/heartbleed-PoC.
When the program gets a response from the server, it contains a value that is stored in a field called 'content-type'. e.g. line 97: (content_type, version, length) = struct.unpack('>BHH', hdr)
.
I wonder what this value is supposed to say. Any ideas?
I've looked for it in some blogs and documentations but havn't found any information.