openssh_hpn/openssh_gssapi: Add CVE-2021-28041

This commit is contained in:
Janne Heß 2021-03-11 11:57:14 +01:00
parent c99c4998fd
commit 2b1011d4a3
No known key found for this signature in database
GPG key ID: 69165158F05265DF
2 changed files with 10 additions and 1 deletions

View file

@ -4,6 +4,7 @@
, src
, extraPatches ? []
, extraNativeBuildInputs ? []
, extraMeta ? {}
}:
{ lib, stdenv
@ -111,5 +112,5 @@ stdenv.mkDerivation rec {
license = licenses.bsd2;
platforms = platforms.unix ++ platforms.windows;
maintainers = with maintainers; [ eelco aneeshusa ];
};
} // extraMeta;
}

View file

@ -33,6 +33,10 @@ in {
];
extraNativeBuildInputs = [ autoreconfHook ];
extraMeta.knownVulnerabilities = [
"CVE-2021-28041"
];
};
openssh_gssapi = common rec {
@ -59,5 +63,9 @@ in {
];
extraNativeBuildInputs = [ autoreconfHook ];
extraMeta.knownVulnerabilities = [
"CVE-2021-28041"
];
};
}