Skip to content

Commit

Permalink
Add ECH
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Kovář <[email protected]>
  • Loading branch information
1div0 committed Aug 10, 2024
1 parent 5c20a74 commit 00171e1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ssl/ssl.enums.c
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ static int decode_HandshakeType_ClientHello(ssl_obj *ssl,
SSL_DECODE_UINT16(ssl, "extensions len", 0, data, &exlen);
if(exlen) {
explain(ssl, "extensions\n");
while(data->len) {
while(data->len > 0) {
SSL_DECODE_UINT16(ssl, "extension type", 0, data, &ex);
if(!ja3_ex_str)
ja3_ex_str = calloc(7, 1);
Expand Down Expand Up @@ -1714,6 +1714,7 @@ decoder extension_decoder[] = {
{55, "external_id_hash", decode_extension},
{56, "external_session_id", decode_extension},
{13172, "next_protocol_negotiation", decode_extension},
{0xfe0d, "encrypted_client_hello", decode_extension},
{0xff01, "renegotiation_info", decode_extension},
{-1}};

Expand Down

0 comments on commit 00171e1

Please sign in to comment.