From: Nick Mathewson Date: Tue, 12 Jan 2016 15:42:01 +0000 (-0500) Subject: Add another safe_str_client to fix bug 17419 X-Git-Tag: tor-0.2.8.1-alpha~51 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=3074b8365fe5c76e6fc0b9597a99ab2671c7e939;p=thirdparty%2Ftor.git Add another safe_str_client to fix bug 17419 --- diff --git a/changes/bug17419 b/changes/bug17419 new file mode 100644 index 0000000000..8ad8edd37b --- /dev/null +++ b/changes/bug17419 @@ -0,0 +1,4 @@ + + o Minor bugfixes: + - When logging a malformed hostname received through socks4, scrub it + if SafeLogging says we should. Fixes bug 17419; bugfix on 0.1.1.16-rc. diff --git a/src/or/buffers.c b/src/or/buffers.c index 4696bec8f4..cdb499b8da 100644 --- a/src/or/buffers.c +++ b/src/or/buffers.c @@ -1945,7 +1945,7 @@ parse_socks(const char *data, size_t datalen, socks_request_t *req, log_warn(LD_PROTOCOL, "Your application (using socks4 to port %d) gave Tor " "a malformed hostname: %s. Rejecting the connection.", - req->port, escaped(req->address)); + req->port, escaped_safe_str_client(req->address)); return -1; } if (authend != authstart) {