Brute attack extension/command automation on console

Asked

Viewed 143 times

0

I need a way to automatically fill in the input fields of a page according to a Wordlist of passwords I have. Basically a bruteforce that rotates on the browser page.

I can generate for example a list of commands for the console, like:

document.getElementById("meuInput").value = "111";
document.getElementById("meuInput").value = "112";
document.getElementById("meuInput").value = "113";

But I would need to redo this for each item of my Wordlist, which would be unfeasible - it would be better to type 1 password for 1 direct from the browser. I need to automate this process of filling in the user field, then the password and give Submit in the form. If you return to the same page, repeat the process. If you go to a new page, stop running the script.

Is there an extension that does this?

NOTE: You can’t do this with Hydra, as far as I know, since each login page access a new value for a input[type=hidden] of "authentication" is generated.

  • Only with this information, the chance of a response is 0% for 0%, that one Wordlist in what format ?

  • It is in .txt. What can be done to improve the question?

  • Look at this research, here you find help on extension.

No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.