(self, impacket_auth)
| 250 | """Wrapper class to make ImpacketAuth compatible with ldap3 connection interface""" |
| 251 | |
| 252 | def __init__(self, impacket_auth): |
| 253 | self.impacket_auth = impacket_auth |
| 254 | self.is_impacket = True |
| 255 | self.entries = [] # Store last search results |
| 256 | |
| 257 | def _resolve_dc_hostname(self, ip_address): |
| 258 | """Try to resolve DC IP to NetBIOS hostname for proper Kerberos SPN |
nothing calls this directly
no outgoing calls
no test coverage detected