mirror of
https://github.com/samba-team/samba.git
synced 2025-03-20 22:50:26 +03:00
traffic_packets: add windows instructions for ldap 0 simple bind
To run packet_ldap_0 simple bind test against Windows, we need to install CA on Windows with following PowerShell commands: Install-windowsfeature ADCS-Cert-Authority Install-AdcsCertificationAuthority -CAType EnterpriseRootCA Restart-Computer Otherwise we will get `NT_STATUS_CONNECTION_RESET` error. Didn't change any code, just add above instructions in comment. Signed-off-by: Joe Guo <joeg@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Garming Sam <garming@catalyst.net.nz>
This commit is contained in:
parent
14af041c13
commit
eafda9137a
@ -644,6 +644,15 @@ class ReplayContext(object):
|
||||
return self.ldap_connections[-1]
|
||||
|
||||
def simple_bind(creds):
|
||||
"""
|
||||
To run simple bind against Windows, we need to run
|
||||
following commands in PowerShell:
|
||||
|
||||
Install-windowsfeature ADCS-Cert-Authority
|
||||
Install-AdcsCertificationAuthority -CAType EnterpriseRootCA
|
||||
Restart-Computer
|
||||
|
||||
"""
|
||||
return SamDB('ldaps://%s' % self.server,
|
||||
credentials=creds,
|
||||
lp=self.lp)
|
||||
|
Loading…
x
Reference in New Issue
Block a user