]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Log warning when connecting to soon-to-be-deprecated v2 onions.
authorGeorge Kadianakis <desnacked@riseup.net>
Wed, 5 May 2021 07:50:29 +0000 (10:50 +0300)
committerDavid Goulet <dgoulet@torproject.org>
Fri, 7 May 2021 12:44:36 +0000 (08:44 -0400)
changes/ticket40373 [new file with mode: 0644]
src/core/or/connection_edge.c

diff --git a/changes/ticket40373 b/changes/ticket40373
new file mode 100644 (file)
index 0000000..e2ea297
--- /dev/null
@@ -0,0 +1,3 @@
+  o Minor features (onion services):
+    - Add warning message when connecting to soon-to-be-deprecated v2 onions.
+      Closes ticket 40373.
index a33c64fe19af2e2aa2348507105a70b0727ae779..7f260ba1853b3f15e6ade443a724238882c71a3e 100644 (file)
@@ -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);
   }