summary refs log tree commit diff
path: root/pkgs/tools/networking/miniupnpd
diff options
context:
space:
mode:
authorAndreas Rammhold <andreas@rammhold.de>2018-01-15 17:51:19 +0100
committerAndreas Rammhold <andreas@rammhold.de>2018-01-15 17:51:19 +0100
commitaddf1d5da37236f0e0dbb7959f7eedb7d255e65b (patch)
treee8e3f48b073230176d8a0a96d2b766450848b82d /pkgs/tools/networking/miniupnpd
parent5d8b359db7b680d5f6c77f92b789ceea43d3ee92 (diff)
miniupnpd: 2.0 -> 2.0.20171212 (fixes CVE-2017-1000494)
changelog since the last version bump:

  2017/12/12:
    Fix a few buffer overrun in SSDP and SOAP parsing

  2017/11/02:
    PCP : reset epoch after address change

  2017/05/26:
    merge https://github.com/miniupnp/miniupnp/tree/randomize_url branch

  2017/05/24:
    get SSDP packet receiving interface index and use it to check if the
      packet is from a LAN

  2017/03/13:
    default to client address for AddPortMapping when <NewInternalClient>
      is empty
    pass ext_if_name to add_pinhole()

  2016/12/23:
    Fix UDA-1.2.10 Man header empty or invalid

  2016/12/16:
    Do not try to open IPv6 sockets once it is disabled

  2016/12/01:
    Fix "AddPinhole Twice" test

  2016/11/11:
    fixes build for Solaris/SunOS

  2016/07/23:
    fixes build error on DragonFly BSD
Diffstat (limited to 'pkgs/tools/networking/miniupnpd')
-rw-r--r--pkgs/tools/networking/miniupnpd/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/networking/miniupnpd/default.nix b/pkgs/tools/networking/miniupnpd/default.nix
index 6003471bed934..3e3b4ec34a306 100644
--- a/pkgs/tools/networking/miniupnpd/default.nix
+++ b/pkgs/tools/networking/miniupnpd/default.nix
@@ -3,11 +3,11 @@
 assert stdenv.isLinux;
 
 stdenv.mkDerivation rec {
-  name = "miniupnpd-2.0";
+  name = "miniupnpd-2.0.20171212";
 
   src = fetchurl {
     url = "http://miniupnp.free.fr/files/download.php?file=${name}.tar.gz";
-    sha256 = "1dxzhvkylrnbkd5srb9rb2g4f9ydd1zbjg5sdf190m0g1sha6snr";
+    sha256 = "0jdcll1nd8jf356fpl0n2yw8sww58nfz6hkx052d77l34afq6sn7";
     name = "${name}.tar.gz";
   };