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 ?
– NoobSaibot
It is in .txt. What can be done to improve the question?
– Daniel Bonifácio
Look at this research, here you find help on extension.
– NoobSaibot