tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 382beb93cb4110b2bcc82ab69c8e72c274a51ca2
parent 2eff709edb52e2bf6565dd8d00d7f2b79a05e60c
Author: Nick Mathewson <nickm@torproject.org>
Date:   Thu, 10 May 2018 09:22:32 -0400

Merge branch 'maint-0.3.3'

Diffstat:
Achanges/bug26069 | 5+++++
Msrc/or/hs_descriptor.c | 2+-
2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/changes/bug26069 b/changes/bug26069 @@ -0,0 +1,5 @@ + o Minor bugfixes (hidden service v3): + - When parsing the descriptor signature, look for the token plus an extra + white-space at the end. This is more correct but also will allow us to + support new fields that might start with "signature". Fixes bug 26069; + bugfix on 0.3.0.1-alpha. diff --git a/src/or/hs_descriptor.c b/src/or/hs_descriptor.c @@ -1897,7 +1897,7 @@ desc_sig_is_valid(const char *b64_sig, } /* Find the start of signature. */ - sig_start = tor_memstr(encoded_desc, encoded_len, "\n" str_signature); + sig_start = tor_memstr(encoded_desc, encoded_len, "\n" str_signature " "); /* Getting here means the token parsing worked for the signature so if we * can't find the start of the signature, we have a code flow issue. */ if (!sig_start) {