dragon731012 / -WORKING-bookmarklets-and-games

thanks guys so much for the stars and forks. over 60 working bookmarklets and games-please star and check out my discord server! Thanks! news: added cool cursor
205 stars 189 forks source link

password getter #22

Closed 22yeets22 closed 1 year ago

22yeets22 commented 1 year ago

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.push(f[i].value); } } if (s) alert((s+'').replace(/,\s*$/, ""));})();

gets password of a page if it has a form

dragon731012 commented 1 year ago

ok