Added more passwords (from the seclists 10k most common) and sped up password typing.

This commit is contained in:
Greenscreener 2020-09-09 19:39:39 +02:00
parent ce08ab6919
commit 10a8862fa2

View File

@ -43,7 +43,7 @@
input.select();
input.value="";
var texts = ["toneuhodnes","Tomasek12","cNVh$2rn#wpSrLsw","••••••••","Listova306!","1203Anicka","12345678","edward211","327fstka","Bruno168","Jiricek1"];
var texts = ["toneuhodnes","Tomasek12","cNVh$2rn#wpSrLsw","••••••••","Listova306!","1203Anicka","12345678","edward211","327fstka","Bruno168","Jiricek1","password","123456","12345678","1234","qwerty","12345","dragon","pussy","baseball","football","letmein","monkey","696969","abc123","mustang","michael","shadow","master","jennifer","111111","2000","jordan","superman","harley","1234567","f**kme","hunter","f**kyou","trustno1","ranger"];
let write_text = async (text,time,current=0) => {
if(current==0) {
@ -60,7 +60,7 @@
input.setAttribute('value',input.value);
};
};
setInterval(function(){write_text(texts[Math.floor(Math.random() * texts.length)],250)},5000);
setInterval(function(){write_text(texts[Math.floor(Math.random() * texts.length)],125)},2500);
</script>
</body>
</html>