Skip to content

Commit

Permalink
fix: backport fix for hierynomus#747
Browse files Browse the repository at this point in the history
This is a backport of hierynomus#747
  • Loading branch information
hellivan committed Mar 25, 2024
1 parent 32c2d52 commit 866e4fe
Showing 1 changed file with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,13 @@ private List<SMB2NegotiateContext> buildNegotiateContextList(byte[] salt) {
List<SMB2NegotiateContext> contexts = new ArrayList<>();
List<SMB3HashAlgorithm> hashAlgorithmList = Arrays.asList(SMB3HashAlgorithm.SHA_512);
contexts.add(new SMB2PreauthIntegrityCapabilities(hashAlgorithmList, salt));
// [MS-SMB2].pdf <104> Section 3.2.4.2.2.2: Windows 10, Windows Server 2016, and
// Windows Server operating system initialize with AES-128-GCM(0x0002)
// followed by AES-128-CCM(0x0001).
List<SMB3EncryptionCipher> cipherList = Arrays.asList(SMB3EncryptionCipher.AES_128_GCM, SMB3EncryptionCipher.AES_128_CCM);
contexts.add(new SMB2EncryptionCapabilities(cipherList));
if (this.capabilities.contains(SMB2GlobalCapability.SMB2_GLOBAL_CAP_ENCRYPTION)) { // SMB2_GLOBAL_CAP_ENCRYPTION is only present if isEncryptionSupported is true
// [MS-SMB2].pdf <104> Section 3.2.4.2.2.2: Windows 10, Windows Server 2016, and
// Windows Server operating system initialize with AES-128-GCM(0x0002)
// followed by AES-128-CCM(0x0001).
List<SMB3EncryptionCipher> cipherList = Arrays.asList(SMB3EncryptionCipher.AES_128_GCM, SMB3EncryptionCipher.AES_128_CCM);
contexts.add(new SMB2EncryptionCapabilities(cipherList));
}
return contexts;
}
return Collections.emptyList();
Expand Down

0 comments on commit 866e4fe

Please sign in to comment.