We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hey,
i want to Brute Force a List (1 Line = 1 IP) with Username and Password like
List pf my .txt file 192.168.0.1 192.168.10.1 192.168.1.50 192.168.3.66
ncrack -iL /home/file.txt --user Administrator --password P@ssw0rd -p 3389
i tried a lot of combination and didnt found any example of List Bruteforce, only in Manpage with Option -iL.
Can anybody help me? thx
The text was updated successfully, but these errors were encountered:
--password is not a legitimate parameter.
--password
And I assume you try to attack rdp using port 3389.
So you could use:
ncrack --user Administrator -P <(echo 'P@ssw0rd') -iL /home/file.txt -f -p 3389
file.txt should then contain your ips like
file.txt
192.168.0.1 192.168.10.1 192.168.1.50 192.168.3.66
Sorry, something went wrong.
No branches or pull requests
Hey,
i want to Brute Force a List (1 Line = 1 IP) with Username and Password like
List pf my .txt file
192.168.0.1
192.168.10.1
192.168.1.50
192.168.3.66
ncrack -iL /home/file.txt --user Administrator --password P@ssw0rd -p 3389
i tried a lot of combination and didnt found any example of List Bruteforce, only in Manpage with Option -iL.
Can anybody help me? thx
The text was updated successfully, but these errors were encountered: