![]() |
|
[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) |
RE: [TuT]See passwords behind stars! - $cr!Pto!D - 04-20-2011 (03-29-2011, 12:44 PM)hazazu Wrote: i still dont get how to use it plz can some1 help me?? lol same thing here too can some one say in detail.......
RE: [TuT]See passwords behind stars! - Liyan Oz - 04-20-2011 you make this script ???????? RE: [TuT]See passwords behind stars! - Coder-san - 04-20-2011 Just paste in the Addressbar of your Browser. RE: [TuT]See passwords behind stars! - Hodginsa - 04-21-2011 I think the trouble is coming from how google chrome automatically searches any non http:// or www. or .*, so when you put the code in it just searches google for that code. RE: [TuT]See passwords behind stars! - ArkPhaze - 04-21-2011 Or you can use a local tool like Snadboys revelation that will get the text value to a string. RE: [TuT]See passwords behind stars! - jalal77 - 04-22-2011 very old...i do it in scholl time............but thanks for share it new who donw this..old is gold RE: [TuT]See passwords behind stars! - Akasasukee - 05-27-2011 When I paste the code and press Enter, I have this # all the time... Who can help me ? RE: [TuT]See passwords behind stars! - spsum60 - 06-03-2011 Nice tut.. But i have question. But what if that stars r on window that doesnt have addressbar? Shood i take source out n make html? RE: [TuT]See passwords behind stars! - Akasasukee - 06-07-2011 Please help me "When I paste the code and press Enter, I have this # all the time... Who can help me ? " RE: [TuT]See passwords behind stars! - ArkPhaze - 06-08-2011 You have "#" where?... I don't understand. And to the original post. It's not jFunction.. the code is: 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.");})();
|