Password Spraying
Using NetExec for password spraying
Using Username/Password Lists
You can use multiple usernames or passwords by separating the names/passwords with a space.
nxc accepts txt files of usernames and passwords. One user/password per line. Watch out for account lockout!
By default nxc will exit after a successful login is found. Using the --continue-on-success flag, it will continue spraying even after a valid password is found. Useful for spraying a single password against a large user list. This is incompatible with command execution.
Usage example:
Checking 'username == password' using wordlist
Checking multiple usernames/passwords using wordlist
The result will be:
user1 => password1
user1 => password2
user2 => password1
user2 => password2
Be careful to not lock accounts using this technique
Checking one login equal one password using wordlist
No bruteforce possible with this one as 1 user = 1 password
The result will be:
user1 => password1
user2 => password2
Avoid range or a list of IPs when using the --no-bruteforce
option
Last updated