Skip to content

Commit

Permalink
vulnix whitelists: add module
Browse files Browse the repository at this point in the history
This module sets some predefined whitelists as default for `services.vulnix.whitelists`.
  • Loading branch information
dermetfan committed Sep 24, 2021
1 parent 3b629a0 commit 22a2fa9
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions modules/vulnix-whitelists.nix
@@ -0,0 +1,39 @@
{ lib, ... }: {
services.vulnix.whitelists = lib.mkOptionDefault [
# fix about to be deployed
{
"openssl-1.1.1k" = {
until = "2021-09-15";
cve = [
"CVE-2021-3711"
"CVE-2021-3712"
];
issue_url = "https://github.com/NixOS/nixpkgs/pull/135611";
};
}

# general false positives
{
"openssl-1.1.1k" = {
cve = [
"CVE-2018-16395"
"CVE-2016-7798"
];
issue_url = [
"https://github.com/flyingcircusio/vulnix/issues/62"
"https://github.com/NixOS/nixpkgs/issues/116905"
"https://github.com/NixOS/nixpkgs/issues/109204"
];
};
}

# do not usually apply to bitte clusters
{
"openssl-1.1.1k" = {
cve = [ "CVE-2019-0190" ];
issue_url = "https://github.com/NixOS/nixpkgs/issues/88371";
comment = "we don't use Apache";
};
}
];
}

0 comments on commit 22a2fa9

Please sign in to comment.