forked from WADComs/WADComs.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f60062d
commit 04addd0
Showing
5 changed files
with
84 additions
and
13 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
description: | | ||
ropnop's kerbrute bruteforces and enumerates valid Active Directory accounts through Kerberos Pre-Authentication. The following command will attempt to brute force valid username and passwords logins given a list of credentials (in the format `username:password`). | ||
Command Reference: | ||
Domain: test.local | ||
Credential List: credentials.txt | ||
items: | ||
No_Creds: | ||
- code: | | ||
cat credentials.txt | kerbrute_linux_amd64 -d test.local bruteforce - | ||
filters: | ||
Kerberos: | ||
- code: | | ||
empty | ||
--- |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
description: | | ||
ropnop's kerbrute bruteforces and enumerates valid Active Directory accounts through Kerberos Pre-Authentication. The following command will bruteforce an account against a list of provided passwords given a username. | ||
Command Reference: | ||
Domain: test.local | ||
Password List: passwords.txt | ||
Username: john | ||
items: | ||
Username: | ||
- code: | | ||
kerbrute_linux_amd64 bruteuser -d test.local passwords.txt john | ||
filters: | ||
Kerberos: | ||
- code: | | ||
empty | ||
--- |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
description: | | ||
ropnop's kerbrute bruteforces and enumerates valid Active Directory accounts through Kerberos Pre-Authentication. The following command will perform a password spray account against a list of provided users given a password. | ||
Command Reference: | ||
Domain: test.local | ||
Username List: domain_users.txt | ||
Password: password123 | ||
items: | ||
Password: | ||
- code: | | ||
kerbrute_linux_amd64 passwordspray -d test.local domain_users.txt password123 | ||
filters: | ||
Kerberos: | ||
- code: | | ||
empty | ||
--- |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
description: | | ||
ropnop's kerbrute bruteforces and enumerates valid Active Directory accounts through Kerberos Pre-Authentication. The following command will attempt to enumerate valid usernames given a list of usernames to try. | ||
Command Reference: | ||
Domain: test.local | ||
Username List: usernames.txt | ||
items: | ||
No_Creds: | ||
- code: | | ||
kerbrute_linux_amd64 userenum -d test.local usernames.txt | ||
filters: | ||
Kerberos: | ||
- code: | | ||
empty | ||
--- |