aced
aced copied to clipboard
Target Address and dc-ip Conflict
Given these two commands, the below command will fail:
python ./aced.py -hashes 'LM:NTLM' -dc-ip dc.domain.tld 'domain.tld/computer$'
The below command will succeed:
python ./aced.py -hashes 'LM:NTLM' 'domain.tld/computer$'@dc.domain.tld
This is due to the target address being required and there is no logic if the dc-ip argument is used instead. I'm requesting either method being supported to align with official Impacket examples.
Good catch. I'll shoot to get this resolved soon.