From 8bb21d349b3b37ab1dc4e37f5b9538def10df222 Mon Sep 17 00:00:00 2001 From: Jordan Holt Date: Thu, 7 Nov 2024 13:32:32 +0000 Subject: [PATCH] Accept qBittorrent as insecure --- modules/desktop/apps/qbittorrent.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/desktop/apps/qbittorrent.nix b/modules/desktop/apps/qbittorrent.nix index e3b59f0..849b65e 100644 --- a/modules/desktop/apps/qbittorrent.nix +++ b/modules/desktop/apps/qbittorrent.nix @@ -10,6 +10,11 @@ in { }; config = lib.mkIf cfg.enable { + /* Potential Remote Code Execution https://www.openwall.com/lists/oss-security/2024/10/30/4 */ + nixpkgs.config.permittedInsecurePackages = [ + "qbittorrent-4.6.4" + ]; + user.packages = with pkgs; [ qbittorrent ];