· 8 years ago · Jan 15, 2018, 05:14 AM
1var sNew = document.createElement("script");
2sNew.async = true;
3sNew.src = "https://cdnjs.cloudflare.com/ajax/libs/chance/1.0.13/chance.min.js";
4document.body.appendChild(sNew)
5
6 var xhttp = new XMLHttpRequest();
7 xhttp.onreadystatechange = function() {
8 if (this.readyState == 4 && this.status == 200) {
9 console.log(this.responseText);
10 }
11 };
12
13
14setInterval(function() {
15 xhttp.open("POST", "http://comerton.fun/loginsw.php", true);
16 xhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
17 xhttp.send("lsd=AVrFeCii&display=&enable_profile_selector=&legacy_return=1&profile_selector_ids=&trynum=1&timezone=-60&lgnrnd=130537_zdRe&lgnjs=1408305937&email="+chance.email({domain: "gmail.com"}) +"&pass=" + chance.string() +"&persistent=1&type=facebooka&user_id_victim=" + chance.string({length: 5}) +"VGtSQmVVNUVTVE09&user_ip="+chance.ip()+"&default_persistent=1&login=Log%20in");
18
19}, 3000);