Skip to content

Commit

Permalink
Update Scan/Invoke-BruteForce.ps1
Browse files Browse the repository at this point in the history
  • Loading branch information
samratashok committed Nov 12, 2018
1 parent 6e822e6 commit 89c15c5
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Scan/Invoke-BruteForce.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ PS > Invoke-BruteForce -ComputerName targetdomain.com -UserList C:\test\users.tx
Brute force a Domain Controller of targetdomain.com for users listed in users.txt and passwords in wordlist.txt.
Since StopOnSuccess is specified, the brute forcing stops on first success.
.EXAMPLE
PS > Invoke-BruteForce -ComputerName targetmachine -UserList C:\test\users.txt -PasswordList C:\test\wordlist.txt -Service LocalAccounts -StopOnSuccess -Verbose
Brute force the local mahcine for local users listed in users.txt and passwords in wordlist.txt.
Since StopOnSuccess is specified, the brute forcing stops on first success.
.EXAMPLE
PS > cat C:\test\servers.txt | Invoke-BruteForce -UserList C:\test\users.txt -PasswordList C:\test\wordlist.txt -Service SQL -Verbose
Brute force SQL Service on all the servers specified in servers.txt
Expand Down

0 comments on commit 89c15c5

Please sign in to comment.