Skip to content
Snippets Groups Projects
Commit ff3ac027 authored by David Goulet's avatar David Goulet :panda_face:
Browse files

hs-v2: Disable version 2 introduction point


Upon receiving a v2 introduction request, the relay will close the
circuit and send back a tor protocol error.

Part of #40476

Signed-off-by: David Goulet's avatarDavid Goulet <dgoulet@torproject.org>
parent 765bdb9c
No related branches found
No related tags found
No related merge requests found
......@@ -320,7 +320,8 @@ hs_intro_received_establish_intro(or_circuit_t *circ, const uint8_t *request,
switch (first_byte) {
case TRUNNEL_HS_INTRO_AUTH_KEY_TYPE_LEGACY0:
case TRUNNEL_HS_INTRO_AUTH_KEY_TYPE_LEGACY1:
return rend_mid_establish_intro_legacy(circ, request, request_len);
/* Don't accept version 2 introduction anymore. */
goto err;
case TRUNNEL_HS_INTRO_AUTH_KEY_TYPE_ED25519:
return handle_establish_intro(circ, request, request_len);
default:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment