diff options
author | Sebastian Hahn <sebastian@torproject.org> | 2011-10-26 23:30:27 +0200 |
---|---|---|
committer | Sebastian Hahn <sebastian@torproject.org> | 2011-10-26 23:30:27 +0200 |
commit | df05e5ef4d5e379e50b38e29fa23228e5b260e8a (patch) | |
tree | 36f76e0bf35cd6a92229114959e200dfe7ce4a17 /changes | |
parent | f85c56182f485bea483288a26fd74cefcb87653a (diff) | |
parent | a74e7fd40f1a77eb4000d8216bb5b80cdd8a6193 (diff) | |
download | tor-df05e5ef4d5e379e50b38e29fa23228e5b260e8a.tar.gz tor-df05e5ef4d5e379e50b38e29fa23228e5b260e8a.zip |
Merge branch 'maint-0.2.1_secfix' into maint-0.2.2_secfix
Conflicts:
src/or/connection_or.c
Diffstat (limited to 'changes')
-rw-r--r-- | changes/issue-2011-10-19L | 21 | ||||
-rw-r--r-- | changes/issue-2011-10-23G | 9 |
2 files changed, 30 insertions, 0 deletions
diff --git a/changes/issue-2011-10-19L b/changes/issue-2011-10-19L new file mode 100644 index 0000000000..1fefd7267e --- /dev/null +++ b/changes/issue-2011-10-19L @@ -0,0 +1,21 @@ + o Security fixes: + + - Don't send TLS certificate chains on outgoing OR connections + from clients and bridges. Previously, each client or bridge + would use a single cert chain for all outgoing OR connections + for up to 24 hours, which allowed any relay connected to by a + client or bridge to determine which entry guards it is using. + This is a potential user-tracing bug for *all* users; everyone + who uses Tor's client or hidden service functionality should + upgrade. Fixes CVE-2011-2768. Bugfix on FIXME; found by + frosty_un. + + - Don't use any OR connection on which we have received a + CREATE_FAST cell to satisfy an EXTEND request. Previously, we + would not consider whether a connection appears to be from a + client or bridge when deciding whether to use that connection to + satisfy an EXTEND request. Mitigates CVE-2011-2768, by + preventing an attacker from determining whether an unpatched + client is connected to a patched relay. Bugfix on FIXME; found + by frosty_un. + diff --git a/changes/issue-2011-10-23G b/changes/issue-2011-10-23G new file mode 100644 index 0000000000..45f86754f0 --- /dev/null +++ b/changes/issue-2011-10-23G @@ -0,0 +1,9 @@ + o Security fixes: + + - Reject CREATE and CREATE_FAST cells on outgoing OR connections + from a bridge to a relay. Previously, we would accept them and + handle them normally, thereby allowing a malicious relay to + easily distinguish bridges which connect to it from clients. + Fixes CVE-2011-2769. Bugfix on 0.2.0.3-alpha, when bridges were + implemented; found by frosty_un. + |