Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
The Tor Project
Core
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
Pipeline
#5908
passed with stage
in 20 minutes and 1 second
Changes
2
Pipelines
1
Show 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
);
}
...
...
sickcodes
@sickcodes
mentioned in merge request
!434 (closed)
·
Sep 10, 2021
mentioned in merge request
!434 (closed)
mentioned in merge request !434
Toggle commit list
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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