Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/dadevel/krb-spray

Password Spraying and Brute Forcing over Kerberos
https://github.com/dadevel/krb-spray

brute-force kerberos password-spraying

Last synced: 3 days ago
JSON representation

Password Spraying and Brute Forcing over Kerberos

Awesome Lists containing this project

README

        

# krb-spray

## Setup

Install with [pipx](https://github.com/pypa/pipx/).

~~~ bash
pipx install git+https://github.com/dadevel/krb-spray.git
~~~

## Usage

User enumeration.

~~~ bash
krb-spray -d corp.local -U ./users.txt -p '' | jq -c 'select(.error != "KDC_ERR_C_PRINCIPAL_UNKNOWN")'
~~~

Password spraying.

~~~ bash
krb-spray -d corp.local -U ./users.txt -p Start123 | jq -c 'select(.error == "KDC_ERR_NONE")'
~~~