New answers tagged c
1
This might be too heavy for your use case, but Sulley https://github.com/OpenRCE/sulley is a good framework.
1
Tom your answer is so much detailed and useful . I am very thankful . I considered points and tried to improve my implementation. Because it is a little big I am writing as a new answer . It became a little long I don't expect anyone to analyze but if maybe someone needs , it can be useful .
if (flow_special_packet_counter == 0)
{
//SSLv2 no server name ...
7
In SSL/TLS, messages are sent as part of records. What should be expected is that the client first send a ClientHello message which itself is contained in one or several records.
Record format is:
record type: 1 byte (0x16 for "records contains some handshake message data")
protocol version: 2 bytes (0x03 0x00 for SSL 3.0, 0x03 0x01 for TLS 1.0, and so on)
...
Top 50 recent answers are included