Advertisement
rdsedmundo

pexfex api

Jul 25th, 2012
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function rand_nick() {
  2.   var base = ["Ana", "Carol", "Ricardo", "Marcelo", "Matheus", "Igor", "Gustavo", "Guilherme", " Izabela","Carolina","RogΓ©rio","Roberto","Carlos","Max","Carminha","Rita","Raposos","BH","Novinha","Putinha","Bitch","ILoveCock"];
  3.   var _base = base[Math.floor(Math.random()*base.length)];
  4.   var _id = Math.floor(Math.random()*9999999999);
  5.   var _nick = _base + _id;
  6. return _nick;
  7. }
  8. function rand_btday() {
  9.    var ano =["1990","1989","1988","1987","1986","1985","1984","1983","1982","1981","1980","1979","1978","1977","1976","1975","1974","1973","1972","1971","1970"];
  10.    var mes = [];
  11.    var dia = [];
  12. for(i=1;i<=12;i++) {
  13.    mes.push(i.toString());
  14. }
  15.    for(i=1;i<=31;i++) {
  16.    dia.push(i.toString());
  17. }
  18.    var _data = ano[Math.floor(Math.random()*ano.length)] + "/" + mes[Math.floor(Math.random()*mes.length)] + "/" + dia[Math.floor(Math.random()*dia.length)];
  19.    return _data;
  20. }
  21. document.getElementById('SPFRLogin').value = rand_nick();
  22. document.getElementById('pass1').value = "asddsa123";
  23. document.getElementById('pass2').value = "asddsa123";
  24. var _sex = Math.floor(Math.random()*6);
  25. if(_sex <= 3) {
  26.  document.getElementById('SPFRMale').checked = true;
  27.  document.getElementById('SPFRFemale').checked = false;
  28. } else {
  29.  document.getElementById('SPFRMale').checked = false;
  30.  document.getElementById('SPFRFemale').checked = true;
  31. }
  32. document.getElementById('BDay').value = rand_btday();
  33. document.getElementsByName('tosagree')[0].checked = true;
  34. setTimeout(SPF_Validate_Reg_Form,1000);
  35.  
  36.  
  37.  
  38.  
  39.  
  40. <?php
  41. if(!isset($_GET['e'])) { exit; };
  42. $pagina = file_get_contents("http://spamavert.com/mail/".$_GET['e']);
  43. $p = explode("Invitation to SexPexFex", $pagina);
  44. $p = explode("<a href=\"http://spamavert.com/mail/".$_GET['e']."/", $p[0]);
  45. $p = explode("\">", $p[1]);
  46. $id = $p[0];
  47. $mail = file_get_contents("http://spamavert.com/mail/original/".$_GET['e']."/".$id);
  48. $t = explode("Please use this link: ",$mail);
  49. $link = $t[1];
  50. $link = str_ireplace("3D", "", $link);
  51. $link = str_ireplace("\n", "", $link);
  52. $link = trim($link);
  53. $link = str_ireplace("</pre>", "", $link);
  54. die($link);
  55. header("Location: ".$link);
  56. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement