about summary refs log tree commit diff
path: root/pkgs/tools/security
diff options
context:
space:
mode:
authorJoachim Fasting <joachifm@fastmail.fm>2016-10-18 00:38:17 +0200
committerJoachim Fasting <joachifm@fastmail.fm>2016-10-18 00:44:41 +0200
commitb3ffc580ec01f07371e774e089f1485462a88a20 (patch)
tree0765226553c839e3027bd074fc8bd1aa6f1f4969 /pkgs/tools/security
parentac3fb8389cea9e028cc21f7a90251b14ddc12dd3 (diff)
downloadnixlib-b3ffc580ec01f07371e774e089f1485462a88a20.tar
nixlib-b3ffc580ec01f07371e774e089f1485462a88a20.tar.gz
nixlib-b3ffc580ec01f07371e774e089f1485462a88a20.tar.bz2
nixlib-b3ffc580ec01f07371e774e089f1485462a88a20.tar.lz
nixlib-b3ffc580ec01f07371e774e089f1485462a88a20.tar.xz
nixlib-b3ffc580ec01f07371e774e089f1485462a88a20.tar.zst
nixlib-b3ffc580ec01f07371e774e089f1485462a88a20.zip
tor: 0.2.8.8 -> 0.2.8.9
Fixes a security hole that could be exploited for a denial of service
attack against a tor client, relay, hidden service, or authority [1].

[1]: https://trac.torproject.org/projects/tor/ticket/20384
Diffstat (limited to 'pkgs/tools/security')
-rw-r--r--pkgs/tools/security/tor/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/security/tor/default.nix b/pkgs/tools/security/tor/default.nix
index 0e69729a2262..8fbf35caf1d2 100644
--- a/pkgs/tools/security/tor/default.nix
+++ b/pkgs/tools/security/tor/default.nix
@@ -3,11 +3,11 @@
 }:
 
 stdenv.mkDerivation rec {
-  name = "tor-0.2.8.8";
+  name = "tor-0.2.8.9";
 
   src = fetchurl {
     url = "https://archive.torproject.org/tor-package-archive/${name}.tar.gz";
-    sha256 = "1pp3h0a1cl25fv04b3j6wp8aw1sfpbd2lmag397dpp2k2b305bxi";
+    sha256 = "3f5c273bb887be4aff11f4d99b9e2e52d293b81ff4f6302b730161ff16dc5316";
   };
 
   nativeBuildInputs = [ pkgconfig ];