Skip to content

Commit

Permalink
Return SMB2/3 signing information the same way SMB1 does.
Browse files Browse the repository at this point in the history
  • Loading branch information
asolino committed Apr 1, 2019
1 parent 37cee52 commit ff6450f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion impacket/smb3.py
Original file line number Diff line number Diff line change
Expand Up @@ -1624,7 +1624,7 @@ def is_login_required(self):
return True

def is_signing_required(self):
return self._Session["SigningRequired"]
return self._Connection['RequireSigning']

def nt_create_andx(self, treeId, fileName, smb_packet=None, cmd = None):
if len(fileName) > 0 and fileName[0] == '\\':
Expand Down

0 comments on commit ff6450f

Please sign in to comment.