summaryrefslogtreecommitdiff
path: root/changes
diff options
context:
space:
mode:
authorDavid Goulet <dgoulet@torproject.org>2018-02-13 10:29:41 -0500
committerDavid Goulet <dgoulet@torproject.org>2018-02-13 10:35:41 -0500
commit4fe4f8179fe81244319c7fdec64299b6506434a2 (patch)
tree7f9995241419b200b25cdf7a81554f80eaa3cae1 /changes
parent1555946e202fef523b35e169c90892b57caea766 (diff)
downloadtor-4fe4f8179fe81244319c7fdec64299b6506434a2.tar.gz
tor-4fe4f8179fe81244319c7fdec64299b6506434a2.zip
dos: Don't set consensus param if we aren't a public relay
We had this safeguard around dos_init() but not when the consensus changes which can modify consensus parameters and possibly enable the DoS mitigation even if tor wasn't a public relay. Fixes #25223 Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'changes')
-rw-r--r--changes/bug252233
1 files changed, 3 insertions, 0 deletions
diff --git a/changes/bug25223 b/changes/bug25223
new file mode 100644
index 0000000000..2a7eb6b25d
--- /dev/null
+++ b/changes/bug25223
@@ -0,0 +1,3 @@
+ o Minor bugfixes (DoS mitigation):
+ - Make sure we don't modify consensus parameters if we aren't a public
+ relay when a new consensus arrives. Fixes bug 25223.