From 962a7ec45ceeee216bbdcfc49d649fb1cc945ad9 Mon Sep 17 00:00:00 2001 From: Alexander Neff Date: Sun, 25 May 2025 10:43:38 -0400 Subject: [PATCH] Add info if 'bloodhound' package not found --- nxc/protocols/ldap.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nxc/protocols/ldap.py b/nxc/protocols/ldap.py index f791c9e6..0406fa3f 100644 --- a/nxc/protocols/ldap.py +++ b/nxc/protocols/ldap.py @@ -1287,6 +1287,8 @@ class ldap(connection): self.logger.fail("Please run the following commands to fix this:") self.logger.fail("poetry remove bloodhound") self.logger.fail("poetry add bloodhound-ce") + self.logger.fail("If you get the error 'Package bloodhound not found', run 'poetry remove bloodhound-ce', then 'poetry add bloodhound-ce' again.") + self.logger.fail("") # If using pipx self.logger.fail("Or if you installed with pipx:")