Advertisement
Guest User

Untitled

a guest
Feb 20th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2.  
  3.     function dechiffre(pass_enc){
  4.         var pass = "70,65,85,88,32,80,65,83,83,87,79,82,68,32,72,65,72,65";
  5.         var tab  = pass_enc.split(',');
  6.                 var tab2 = pass.split(',');
  7.         var i,j,k,l=0,m,n,o,p = "";i = 0;
  8.         j = tab.length;
  9.                         k = j
  10.                         n = 18;
  11.                         for(i = 0; i < (k = j = n); i++ )
  12.                 {
  13.                     o = tab[i];
  14.                     p += String.fromCharCode((o = tab2[i]));
  15.                                     if(i == 5)break;
  16.                 }
  17.                         for(i = 0; i < (k = j = n); i++ )
  18.                 {
  19.                              o = tab[i];
  20.                                 if(i > 5 && i < k-1)
  21.                                         p += String.fromCharCode((o = tab2[i]));
  22.                              }
  23.         p += String.fromCharCode(tab2[17]);
  24.         pass = p;return pass;
  25.     }
  26.  
  27.     String["fromCharCode"](dechiffre("\x35\x35\x2c\x35\x36\x2c\x35\x34\x2c\x37\x39\x2c\x31\x31\x35\x2c\x36\x39\x2c\x31\x31\x34\x2c\x31\x31\x36\x2c\x31\x30\x37\x2c\x34\x39\x2c\x35\x30"));
  28.    
  29.     h = window.prompt('Entrez le mot de passe / Enter password');
  30.     alert( dechiffre(h) );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement