From e987d01278378f755a2ab0a0e9eb8eb9522937bb Mon Sep 17 00:00:00 2001 From: Nick Predey Date: Wed, 21 Jun 2023 14:13:06 -0500 Subject: [PATCH] Update requirements.txt Receiving "unsupported hash type MD4" when trying to auto-join the domain controller. Per this issue (https://github.com/cannatag/ldap3/issues/1038) with the ldap Python library, adding pycryptodome==3.18.0 to the requirements.txt fixes the issue. --- ad-joining/register-computer/requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ad-joining/register-computer/requirements.txt b/ad-joining/register-computer/requirements.txt index 3a214b4..f55af94 100644 --- a/ad-joining/register-computer/requirements.txt +++ b/ad-joining/register-computer/requirements.txt @@ -28,4 +28,5 @@ google-api-python-client==2.63.0 google-cloud-secret-manager==2.12.4 oauth2client==4.1.3 dnspython==2.2.1 -gunicorn==20.1.0 \ No newline at end of file +gunicorn==20.1.0 +pycryptodome==3.18.0