Merge pull request #108501 from Ma27/tcpdump-cve-2020-8037

tcpdump: fix CVE-2020-8037
This commit is contained in:
Sandro
2021-01-06 22:51:42 +01:00
committed by GitHub

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchurl, libpcap, perl }:
{ stdenv, fetchurl, libpcap, perl, fetchpatch }:
stdenv.mkDerivation rec {
pname = "tcpdump";
@@ -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
'';