summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Gerbet <thomas@gerbet.me>2025-12-27 10:47:34 +0100
committerThomas Gerbet <thomas@gerbet.me>2025-12-27 10:47:34 +0100
commit50ae072874da06034405ae995046e53c3b6d927e (patch)
tree5693ff1aad5a0593b3e9c56161c169610f4caabb
parent799013d71f32e69bacde52df19ec4251ae2aebe3 (diff)
mongodb*: mark vulnerable to 25.05
Not-cherry-picked-because: Requires additional work to be backported, 25.05 is soon to be EOL
-rw-r--r--pkgs/by-name/mo/mongodb-ce/package.nix1
-rw-r--r--pkgs/servers/nosql/mongodb/mongodb.nix1
2 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/by-name/mo/mongodb-ce/package.nix b/pkgs/by-name/mo/mongodb-ce/package.nix
index a13971b6b4a4..726e36510208 100644
--- a/pkgs/by-name/mo/mongodb-ce/package.nix
+++ b/pkgs/by-name/mo/mongodb-ce/package.nix
@@ -129,5 +129,6 @@ stdenv.mkDerivation (finalAttrs: {
maintainers = with lib.maintainers; [ drupol ];
platforms = lib.attrNames (srcs version);
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
+ knownVulnerabilities = [ "CVE-2025-14847, public exploit available" ];
};
})
diff --git a/pkgs/servers/nosql/mongodb/mongodb.nix b/pkgs/servers/nosql/mongodb/mongodb.nix
index b847dfc278df..3094f0daa7bd 100644
--- a/pkgs/servers/nosql/mongodb/mongodb.nix
+++ b/pkgs/servers/nosql/mongodb/mongodb.nix
@@ -189,5 +189,6 @@ stdenv.mkDerivation rec {
offline
];
platforms = subtractLists systems.doubles.i686 systems.doubles.unix;
+ knownVulnerabilities = [ "CVE-2025-14847, public exploit available" ];
};
}