With kerbrute.py:
python kerbrute.py -domain <domain_name> -users <users_file> -passwords <passwords_file> -outputfile <output_file>
With Rubeus version with brute module:
With kerbrute.py:
python kerbrute.py -domain <domain_name> -users <users_file> -passwords <passwords_file> -outputfile <output_file>
With Rubeus version with brute module:
#!/usr/bin/expect -f | |
set mortadela [lindex $argv 0] | |
set timeout 60 | |
spawn ssh usuario@ip_fortinet | |
expect "password:" | |
send "tu_clave\r" | |
expect "Terciario" | |
send "config firewall address\r" | |
expect "Terciario (address)" | |
send "edit $mortadela\r" |