Skip to content

Commit

Permalink
Always set negotiate sign to false
Browse files Browse the repository at this point in the history
  • Loading branch information
Meatballs1 committed Oct 12, 2018
1 parent 9cf1d00 commit ff8c58e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion impacket/examples/ntlmrelayx/clients/ldaprelayclient.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def sendNegotiate(self, negotiateMessage):
#For LDAP this is required otherwise it triggers LDAP signing
negoMessage = NTLMAuthNegotiate()
negoMessage.fromString(negotiateMessage)
negoMessage['flags'] ^= NTLMSSP_NEGOTIATE_SIGN
negoMessage['flags'] &= ~NTLMSSP_NEGOTIATE_SIGN
self.negotiateMessage = str(negoMessage)

with self.session.connection_lock:
Expand Down

0 comments on commit ff8c58e

Please sign in to comment.