Skip to content

Commit

Permalink
Merge pull request #42 from CravateRouge/patch-1
Browse files Browse the repository at this point in the history
Offer multiple etype for TGS-REQ
  • Loading branch information
skelsec authored Nov 29, 2024
2 parents 916d9da + a7f2068 commit 3d3d6db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion minikerberos/aioclient.py
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ async def get_TGS(self, spn_user:KerberosSPN, override_etype = None, is_linux =
# but we can request etype 23 here for which all is implemented
kdc_req_body['etype'] = [23]
else:
kdc_req_body['etype'] = [self.kerberos_cipher_type]
kdc_req_body['etype'] = [self.kerberos_cipher_type, 23]

authenticator_data = {}
authenticator_data['authenticator-vno'] = krb5_pvno
Expand Down

0 comments on commit 3d3d6db

Please sign in to comment.