Skip to content
New issue

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

How to Bruteforce a List #112

Open
Huibuh2010 opened this issue Sep 7, 2021 · 1 comment
Open

How to Bruteforce a List #112

Huibuh2010 opened this issue Sep 7, 2021 · 1 comment

Comments

@Huibuh2010
Copy link

Huibuh2010 commented Sep 7, 2021

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

@secf00tprint
Copy link

secf00tprint commented Sep 17, 2021

--password is not a legitimate parameter.

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

192.168.0.1
192.168.10.1
192.168.1.50
192.168.3.66

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants