I need a way to automatically fill in the input fields of a page according to a password wordlist I have. Basically a bruteforce that runs on the browser page.
I can generate, for example, a list of commands for the console, type:
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 in my wordlist, which would be impractical - it would be better to enter 1 password per 1 direct from the browser. I need to automate this process by populating the user field, then typing the password and submitting 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 any extension that does this?