summary refs log tree commit diff
path: root/pkgs/tools/networking/dropbear
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2016-07-23 21:29:40 +0200
committerTobias Geerinckx-Rice <me@tobias.gr>2016-07-23 21:29:51 +0200
commit7c84bd121a1b6c38092d4f98f29cdadba050b4db (patch)
tree10b3be92eeea605b1500530659add12d6881cb52 /pkgs/tools/networking/dropbear
parent90ee01cd3dc029e1d86bc94eb6aa4b5f4b5a0f2e (diff)
downloadnixlib-7c84bd121a1b6c38092d4f98f29cdadba050b4db.tar
nixlib-7c84bd121a1b6c38092d4f98f29cdadba050b4db.tar.gz
nixlib-7c84bd121a1b6c38092d4f98f29cdadba050b4db.tar.bz2
nixlib-7c84bd121a1b6c38092d4f98f29cdadba050b4db.tar.lz
nixlib-7c84bd121a1b6c38092d4f98f29cdadba050b4db.tar.xz
nixlib-7c84bd121a1b6c38092d4f98f29cdadba050b4db.tar.zst
nixlib-7c84bd121a1b6c38092d4f98f29cdadba050b4db.zip
dropbear: 2016.73 -> 2016.74
Security fixes:
- Message printout was vulnerable to format string injection
- dropbearconvert import of OpenSSH keys could run arbitrary code
  as the local dropbearconvert user when parsing malicious key
  files
- dbclient could run arbitrary code as the local dbclient user if
  particular -m or -c arguments are provided
- dbclient or dropbear server could expose process memory to the
  running user if compiled with DEBUG_TRACE and running with -v

Fixes:
- Fix port forwarding failure when connecting to domains that have
  both IPv4 and IPv6 addresses. The bug was introduced in 2015.68
- Fix 100% CPU use while waiting for rekey to complete
Diffstat (limited to 'pkgs/tools/networking/dropbear')
-rw-r--r--pkgs/tools/networking/dropbear/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/networking/dropbear/default.nix b/pkgs/tools/networking/dropbear/default.nix
index bc9fb6ee4dee..b1f726ad27d6 100644
--- a/pkgs/tools/networking/dropbear/default.nix
+++ b/pkgs/tools/networking/dropbear/default.nix
@@ -2,11 +2,11 @@
 sftpPath ? "/var/run/current-system/sw/libexec/sftp-server" }:
 
 stdenv.mkDerivation rec {
-  name = "dropbear-2016.73";
+  name = "dropbear-2016.74";
 
   src = fetchurl {
     url = "http://matt.ucc.asn.au/dropbear/releases/${name}.tar.bz2";
-    sha256 = "1mzg18jss1bsmcnn88zv7kv5yj01hzimndnd5636hfq9kgva8qaw";
+    sha256 = "14c8f4gzixf0j9fkx68jgl85q7b05852kk0vf09gi6h0xmafl817";
   };
 
   dontDisableStatic = enableStatic;