Skip to content

Commit

Permalink
tcpdump: fix CVE-2020-8037
Browse files Browse the repository at this point in the history
  • Loading branch information
Ma27 committed Jan 5, 2021
1 parent b8da297 commit 08d77ca
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion pkgs/tools/networking/tcpdump/default.nix
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, libpcap, perl }:
{ stdenv, fetchurl, libpcap, perl, fetchpatch }:

stdenv.mkDerivation rec {
pname = "tcpdump";
Expand All @@ -9,6 +9,14 @@ stdenv.mkDerivation rec {
sha256 = "0434vdcnbqaia672rggjzdn4bb8p8dchz559yiszzdk0sjrprm1c";
};

patches = [
# Patch for CVE-2020-8037
(fetchpatch {
url = "https://github.com/the-tcpdump-group/tcpdump/commit/32027e199368dad9508965aae8cd8de5b6ab5231.patch";
sha256 = "sha256-bO3aV032ru9+M/9isBRjmH8jTZLKj9Zf9ha2rmOaZwc=";
})
];

postPatch = ''
patchShebangs tests
'';
Expand Down

0 comments on commit 08d77ca

Please sign in to comment.