aboutsummaryrefslogtreecommitdiff
path: root/changes
diff options
context:
space:
mode:
Diffstat (limited to 'changes')
-rw-r--r--changes/bug136676
-rw-r--r--changes/bug13823-decrease-consensus-interval11
-rw-r--r--changes/bug13839-fix-TestingMinExitFlagThreshold5
-rw-r--r--changes/bug139137
-rw-r--r--changes/bug13963-decrease-if-modified-since-delay2
-rw-r--r--changes/bug140415
-rw-r--r--changes/resolvemyaddr-tests3
7 files changed, 31 insertions, 8 deletions
diff --git a/changes/bug13667 b/changes/bug13667
new file mode 100644
index 0000000000..852e61fa2a
--- /dev/null
+++ b/changes/bug13667
@@ -0,0 +1,6 @@
+ o Major features (security, hidden services):
+ - Make HS port scanning more difficult by sending back REASON_DONE if the
+ exit policy didn't match. Furthermore, immediately close the circuit to
+ avoid other connection attempts on it from the possible attacker trying
+ multiple ports on that same circuits. Closes ticket 13667.
+
diff --git a/changes/bug13823-decrease-consensus-interval b/changes/bug13823-decrease-consensus-interval
index 1d99bd73cb..67f0b9fe62 100644
--- a/changes/bug13823-decrease-consensus-interval
+++ b/changes/bug13823-decrease-consensus-interval
@@ -1,8 +1,9 @@
- o Minor bugfixes:
+ o Minor bugfixes (Testing networks):
- Decrease minimum consensus interval to 10 seconds
- when TestingTorNetwork is set. (Or 5 seconds for
- the first consensus.)
- Fix code that assumes larger interval values.
+ when TestingTorNetwork is set, or 5 seconds for
+ the first consensus.
+ Fix assumptions throughout the code that assume larger interval values.
This assists in quickly bootstrapping a testing
Tor network.
- Fixes bugs 13718 & 13823.
+ Fixes bugs 13718 and 13823; bugfix on 0.2.0.3-alpha.
+
diff --git a/changes/bug13839-fix-TestingMinExitFlagThreshold b/changes/bug13839-fix-TestingMinExitFlagThreshold
index 947614f550..e0fa270243 100644
--- a/changes/bug13839-fix-TestingMinExitFlagThreshold
+++ b/changes/bug13839-fix-TestingMinExitFlagThreshold
@@ -1,7 +1,8 @@
- o Minor bugfixes:
+ o Minor bugfixes (Testing networks)
- Stop requiring exits to have non-zero bandwithcapacity in a
TestingTorNetwork. Instead, when TestingMinExitFlagThreshold is 0,
ignore exit bandwidthcapacity.
This assists in bootstrapping a testing Tor network.
- Fixes bugs 13718 & 13839.
+ Fixes bugs parts of bugs 13718 and 13839;
Makes bug 13161's TestingDirAuthVoteExit non-essential.
+ Bugfix on 0.2.0.3-alpha.
diff --git a/changes/bug13913 b/changes/bug13913
new file mode 100644
index 0000000000..9a23180eb3
--- /dev/null
+++ b/changes/bug13913
@@ -0,0 +1,7 @@
+ o Documentation:
+ - Clarify HiddenServiceDir option description in manpage to make it
+ clear that relative paths are taken with respect to the current
+ working
+ directory of Tor instance. Also clarify that this behavior is
+ not guaranteed to remain indefinitely. Fixes
+ issue 13913.
diff --git a/changes/bug13963-decrease-if-modified-since-delay b/changes/bug13963-decrease-if-modified-since-delay
index 62371444c4..d4bbc1bbd4 100644
--- a/changes/bug13963-decrease-if-modified-since-delay
+++ b/changes/bug13963-decrease-if-modified-since-delay
@@ -4,4 +4,4 @@
This allows us to obtain consensuses promptly when the consensus
interval is very short.
This assists in bootstrapping a testing Tor network.
- Fixes bugs 13718 & 13963.
+ Fixes parts of bugs 13718 and 13963; bugfix on 0.2.0.3-alpha.
diff --git a/changes/bug14041 b/changes/bug14041
new file mode 100644
index 0000000000..d3d6538483
--- /dev/null
+++ b/changes/bug14041
@@ -0,0 +1,5 @@
+ o Minor features (security):
+ - Clear all memory targetted by tor_addr_{to,from}_sockaddr(),
+ not just the part that's used. This makes it harder for data leak
+ bugs to occur in the event of other programming failures.
+ Resolves ticket 14041.
diff --git a/changes/resolvemyaddr-tests b/changes/resolvemyaddr-tests
new file mode 100644
index 0000000000..c019bb831e
--- /dev/null
+++ b/changes/resolvemyaddr-tests
@@ -0,0 +1,3 @@
+ o Testing:
+ - Add unit tests for resolve_my_addr(). Part of ticket 12376;
+ patch by 'rl1987'.