diff options
author | Alexander Færøy <ahf@torproject.org> | 2020-01-15 23:24:18 +0000 |
---|---|---|
committer | Alexander Færøy <ahf@torproject.org> | 2020-01-15 23:41:58 +0000 |
commit | ca9a5390ff56cb809b2afa2645863ebd7b12262d (patch) | |
tree | 8e034b0c61e97e1979e5bce11ed45418c362086a /changes | |
parent | 399ec3130be818825e01b5ab0c8a8aac1845b29c (diff) | |
download | tor-ca9a5390ff56cb809b2afa2645863ebd7b12262d.tar.gz tor-ca9a5390ff56cb809b2afa2645863ebd7b12262d.zip |
Don't escape the bridge distribution value.
We already check if there are invalid values in
check_bridge_distribution_setting() and reject the value if that is the
case. We can therefore only have strings of [A-Z] | [a-z] | [0-9] | '-'
| '_' here which is according to the directory specification.
See: https://bugs.torproject.org/32753
Diffstat (limited to 'changes')
-rw-r--r-- | changes/bug32753 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/changes/bug32753 b/changes/bug32753 new file mode 100644 index 0000000000..6f59c7729d --- /dev/null +++ b/changes/bug32753 @@ -0,0 +1,3 @@ + o Minor bugfixes (bridges): + - Lowercase the value of BridgeDistribution from torrc before adding it to + the descriptor. Fixes bug 32753; bugfix on 0.3.2.3-alpha. |