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
David Goulet
Tor
Commits
5e836eb8
Commit
5e836eb8
authored
May 05, 2021
by
George Kadianakis
Committed by
David Goulet
May 07, 2021
Browse files
Add warning when trying to connect to deprecated v2 onions.
parent
f230bead
Changes
2
Hide whitespace changes
Inline
Side-by-side
changes/ticket40373
0 → 100644
View file @
5e836eb8
o Minor features (onion services):
- Add warning message when connecting to deprecated v2 onions.
Closes ticket 40373.
\ No newline at end of file
src/core/or/connection_edge.c
View file @
5e836eb8
...
@@ -2242,7 +2242,7 @@ connection_ap_handshake_rewrite_and_attach(entry_connection_t *conn,
...
@@ -2242,7 +2242,7 @@ connection_ap_handshake_rewrite_and_attach(entry_connection_t *conn,
}
}
/* Now, we handle everything that isn't a .onion address. */
/* Now, we handle everything that isn't a .onion address. */
if
(
addresstype
!=
ONION_V3_HOSTNAME
)
{
if
(
addresstype
!=
ONION_V3_HOSTNAME
&&
addresstype
!=
ONION_V2_HOSTNAME
)
{
/* Not a hidden-service request. It's either a hostname or an IP,
/* Not a hidden-service request. It's either a hostname or an IP,
* possibly with a .exit that we stripped off. We're going to check
* possibly with a .exit that we stripped off. We're going to check
* if we're allowed to connect/resolve there, and then launch the
* if we're allowed to connect/resolve there, and then launch the
...
@@ -2527,6 +2527,19 @@ connection_ap_handshake_rewrite_and_attach(entry_connection_t *conn,
...
@@ -2527,6 +2527,19 @@ connection_ap_handshake_rewrite_and_attach(entry_connection_t *conn,
return
0
;
return
0
;
}
else
{
}
else
{
/* If we get here, it's a request for a .onion address! */
/* If we get here, it's a request for a .onion address! */
/* We don't support v2 onions anymore. Log a warning and bail. */
if
(
addresstype
==
ONION_V2_HOSTNAME
)
{
log_warn
(
LD_PROTOCOL
,
"Tried to connect to a v2 onion address, but this "
"version of Tor no longer supports them. Please encourage the "
"site operator to upgrade. For more information see "
"https://blog.torproject.org/v2-deprecation-timeline."
);
control_event_client_status
(
LOG_WARN
,
"SOCKS_BAD_HOSTNAME HOSTNAME=%s"
,
escaped
(
socks
->
address
));
connection_mark_unattached_ap
(
conn
,
END_STREAM_REASON_TORPROTOCOL
);
return
-
1
;
}
tor_assert
(
addresstype
==
ONION_V3_HOSTNAME
);
tor_assert
(
addresstype
==
ONION_V3_HOSTNAME
);
tor_assert
(
!
automap
);
tor_assert
(
!
automap
);
return
connection_ap_handle_onion
(
conn
,
socks
,
circ
);
return
connection_ap_handle_onion
(
conn
,
socks
,
circ
);
...
...
Write
Preview
Markdown
is supported
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