Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
David Goulet
Tor
Commits
80c404c4
Commit
80c404c4
authored
May 05, 2021
by
George Kadianakis
Committed by
David Goulet
May 07, 2021
Browse files
Log warning when connecting to soon-to-be-deprecated v2 onions.
parent
8c297299
Changes
2
Hide whitespace changes
Inline
Side-by-side
changes/ticket40373
0 → 100644
View file @
80c404c4
o Minor features (onion services):
- Add warning message when connecting to soon-to-be-deprecated v2 onions.
Closes ticket 40373.
src/core/or/connection_edge.c
View file @
80c404c4
...
...
@@ -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
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment