Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/dadevel/krb-spray
- Owner: dadevel
- License: mit
- Created: 2024-07-02T08:58:57.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-09-17T23:22:48.000Z (2 months ago)
- Last Synced: 2024-09-18T03:45:23.110Z (2 months ago)
- Topics: brute-force, kerberos, password-spraying
- Language: Python
- Homepage:
- Size: 38.1 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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")'
~~~