![]() |
|
[TuT]See passwords behind stars! - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Hacking (https://sinister.ly/Forum-Hacking) +--- Forum: Tutorials (https://sinister.ly/Forum-Tutorials) +--- Thread: [TuT]See passwords behind stars! (/Thread-TuT-See-passwords-behind-stars) |
[TuT]See passwords behind stars! - ahsanciit - 03-06-2011 Hello guys, I am going to show you in a short tutorial how to read out a password of a web browser. Example: http://www.gmail.com Username: example@Gmail.com Password: ** What's my password? Alright, now you could read out the **-stuff with a simple javascript code. Code: javascript function(){var s,F,j,f,i; s = ""; F = document.forms; for(j=0; j<F.length; ++j) { f = F[j]; for (i=0; i<f.length; ++i) { if (f[i].type.toLowerCase() == "password") s += f[i].value + "\n"; } } if (s) alert("Passwords in forms on this page:\n\n" + s); else alert("There are no passwords in forms on this page.");})();All you need is to copy & paste it in the URL-address bar. Delete http://www.gmail.com and paste the code into it. RE: [TuT]See passwords behind stars! - gabrieldrs - 03-07-2011 Oh really simple and working method... I tested this and works fine RE: [TuT]See passwords behind stars! - the_wizard - 03-07-2011 Tested And Worked
RE: [TuT]See passwords behind stars! - DrKleiner - 03-07-2011 Thanks, man. That really help me! 8) RE: [TuT]See passwords behind stars! - X Makube - 03-07-2011 Yeah! dude iit;s working... thnaks!!! RE: [TuT]See passwords behind stars! - V1P3R - 03-07-2011 wow lol :o if only you can use it on msn :/ RE: [TuT]See passwords behind stars! - bali723 - 03-07-2011 Thanx ![]() I put to my bookmark ![]() (add a page to bookmarl, rename it, than paste the code to the URL) RE: [TuT]See passwords behind stars! - hazazu - 03-29-2011 i still dont get how to use it plz can some1 help me?? RE: [TuT]See passwords behind stars! - pal62 - 04-02-2011 hmmm.....thanks...might try this later on my other pc. RE: [TuT]See passwords behind stars! - KhAn_S - 04-05-2011 not working in google chrome |