diff options
author | Nick Mathewson <nickm@torproject.org> | 2021-06-10 08:42:15 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2021-06-10 08:42:15 -0400 |
commit | 69bd4a8a2db6645b69a902d5ef6eb8c832f122fc (patch) | |
tree | 784054f4c4953956ac785d50bee8f354acfd93a0 /changes | |
parent | 1d11675adbc40c52b0d5047c0bb6f033bde6b19a (diff) | |
parent | 1da8621c0aef1f3fa694802b2bbea888a8d82d99 (diff) | |
download | tor-69bd4a8a2db6645b69a902d5ef6eb8c832f122fc.tar.gz tor-69bd4a8a2db6645b69a902d5ef6eb8c832f122fc.zip |
Merge branch 'maint-0.4.5' into maint-0.4.6
Diffstat (limited to 'changes')
-rw-r--r-- | changes/bug40391 | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/changes/bug40391 b/changes/bug40391 new file mode 100644 index 0000000000..e3c186275f --- /dev/null +++ b/changes/bug40391 @@ -0,0 +1,9 @@ + o Major bugfixes (security): + - Resist a hashtable-based CPU denial-of-service attack against + relays. Previously we used a naive unkeyed hash function to look up + circuits in a circuitmux object. An attacker could exploit this to + construct circuits with chosen circuit IDs in order to try to create + collisions and make the hash table inefficient. Now we use a SipHash + construction for this hash table instead. Fixes bug 40391; bugfix on + 0.2.4.4-alpha. This issue is also tracked as TROVE-2021-005. + Reported by Jann Horn from Google's Project Zero. |