about summary refs log tree commit diff
path: root/pkgs/development/python2-modules
diff options
context:
space:
mode:
authorRobert Schütz <nix@dotlambda.de>2022-06-05 17:10:32 +0000
committerRobert Schütz <nix@dotlambda.de>2022-06-05 17:10:32 +0000
commitac4fc73abc159cd8860ce7b61844306335fb3578 (patch)
tree2f9fa7c87fa23ee0156078c9c2cfd4091b846cf5 /pkgs/development/python2-modules
parentb1e986f80e913017727a9d7e86fd6278088e5e89 (diff)
python2Packages.urllib3: mark insecure
Diffstat (limited to 'pkgs/development/python2-modules')
-rw-r--r--pkgs/development/python2-modules/urllib3/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/python2-modules/urllib3/default.nix b/pkgs/development/python2-modules/urllib3/default.nix
index a52e68eac5e3e..c23835ce4dc2d 100644
--- a/pkgs/development/python2-modules/urllib3/default.nix
+++ b/pkgs/development/python2-modules/urllib3/default.nix
@@ -77,5 +77,8 @@ buildPythonPackage rec {
     homepage = "https://github.com/shazow/urllib3";
     license = licenses.mit;
     maintainers = with maintainers; [ fab ];
+    knownVulnerabilities = [
+      "CVE-2021-33503"
+    ];
   };
 }