rishcool94

fbfloodding script

Nov 8th, 2011
318
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. var a = document.body.innerHTML;
  2. var Num = prompt("", "Enter the number of messages to flood");
  3. formx = a.match(/name="post_form_id" value="([\d\w]+)"/)[1];
  4.  
  5. dts = a.match(/name="fb_dtsg" value="([^"]+)"/)[1];
  6. composerid = a.match(/name="xhpc_composerid" value="([^"]+)"/)[1];
  7. var msg = prompt("", "Enter the Message you want to flood");
  8. target = a.match(/name="targetid" value="([^"]+)"/)[1];
  9.  
  10. pst = "post_form_id=" + formx + "&fb_dtsg=" + dts + "&xhpc_composerid=" + composerid + "&xhpc_targetid=" + target+ "&xhpc_context=home&xhpc_fbx=1&xhpc_message_text=" + encodeURIComponent(msg) + "&xhpc_message=" + encodeURIComponent(msg) + "&UIPrivacyWidget[0]=40&privacy_data[value]=40&privacy_data[friends]=0&privacy_data[list_anon]=0&privacy_data[list_x_anon]=0&=Share&nctr[_mod]=pagelet_composer&lsd&post_form_id_source=AsyncRequest";
  11.  
  12. i=0;
  13.  
  14. while(i < Num){
  15.  
  16. with(newx = new XMLHttpRequest()) open("POST", "/ajax/updatestatus.php?__a=1"), setRequestHeader("Content-Type", "application/x-www-form-urlencoded") , send(pst);
  17. i += 1;
  18. }
Add Comment
Please, Sign In to add comment