Skip to content

Commit

Permalink
Log warning when connecting to soon-to-be-deprecated v2 onions.
Browse files Browse the repository at this point in the history
  • Loading branch information
asn-d6 authored and dgoulet-tor committed May 7, 2021
1 parent 8c29729 commit 80c404c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
3 changes: 3 additions & 0 deletions changes/ticket40373
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
o Minor features (onion services):
- Add warning message when connecting to soon-to-be-deprecated v2 onions.
Closes ticket 40373.
10 changes: 10 additions & 0 deletions src/core/or/connection_edge.c
Original file line number Diff line number Diff line change
Expand Up @@ -2582,6 +2582,16 @@ connection_ap_handshake_rewrite_and_attach(entry_connection_t *conn,
tor_assert(addresstype == ONION_V2_HOSTNAME ||
addresstype == ONION_V3_HOSTNAME);
tor_assert(!automap);

if (addresstype == ONION_V2_HOSTNAME) {
log_warn(LD_PROTOCOL,
"Warning! You've just connected to a v2 onion address. These "
"addresses are deprecated for security reasons, and are no "
"longer supported in Tor. Please encourage the site operator "
"to upgrade. For more information see "
"https://blog.torproject.org/v2-deprecation-timeline");
}

return connection_ap_handle_onion(conn, socks, circ, addresstype);
}

Expand Down

0 comments on commit 80c404c

Please sign in to comment.