One suggestion: make the input box have a type of 'password'. I was only a bit put-off by seeing my plaintext password staring me in the face!
LeakedIn
21–30 of 194 posts
Re: LeakedIn
#22Re: LeakedIn
#23yipes - apparently that site sends up an unsalted sha1 of your password. If leaked unsalted sha1s are worth being worried about, then typing your password into this site is just as bad as the original leak
Re: LeakedIn
#24Re: LeakedIn
#25Re: LeakedIn
#26Re: LeakedIn
#27Now there's a great idea! Provide your password to some random site purporting to check if your password's been compromised.
You can supply just your password hash if you want, and if you supply the raw password, it's hashed client-side via Javascript before being sent to the server. Test it out with firebug and a dummy password if you're not keen on wading through the source.
Re: LeakedIn
#28Re: LeakedIn
#29Re: LeakedIn
#30I think its safer to test yourself than randomly typing your password in on websites =)
You can provide your own hash, and a quick source check reveals that plaintext is being converted into a hash client-side, so only hashed data is being sent to the server.