Passwords for 32M Twitter accounts may have been hacked and leaked
1–10 of 199 posts
Re: Passwords for 32M Twitter accounts may have been hacked and leaked
#2Re: Passwords for 32M Twitter accounts may have been hacked and leaked
#3Re: Passwords for 32M Twitter accounts may have been hacked and leaked
#4I have received 3 warnings about suspicious activity on a twitter account I haven't used since 2011. I wonder how old that leak is.
Re: Passwords for 32M Twitter accounts may have been hacked and leaked
#5Re: Passwords for 32M Twitter accounts may have been hacked and leaked
#6Question: From my understanding bcrypt is designed for security even when the hashed data is leaked. Each piece of data is uniquely salted and hashed to perhaps varying degrees of difficulty. So for a thought experiment, let's say a site made the password column of their user database public. Given an entirely public password column, even with associated usernames, would this have any use or decrease the security of…
Re: Passwords for 32M Twitter accounts may have been hacked and leaked
#7Question: From my understanding bcrypt is designed for security even when the hashed data is leaked. Each piece of data is uniquely salted and hashed to perhaps varying degrees of difficulty. So for a thought experiment, let's say a site made the password column of their user database public. Given an entirely public password column, even with associated usernames, would this have any use or decrease the security of…
It would allow you to bruteforce the passwords without any sort of rate limiting. So, if you used a dictionary, you probably could get quite a few weak passwords in a short amount of time relative to a system that had proper rate limiting to prevent these kinds of attacks.
Re: Passwords for 32M Twitter accounts may have been hacked and leaked
#8Question: From my understanding bcrypt is designed for security even when the hashed data is leaked. Each piece of data is uniquely salted and hashed to perhaps varying degrees of difficulty. So for a thought experiment, let's say a site made the password column of their user database public. Given an entirely public password column, even with associated usernames, would this have any use or decrease the security of…
Re: Passwords for 32M Twitter accounts may have been hacked and leaked
#9Question: From my understanding bcrypt is designed for security even when the hashed data is leaked. Each piece of data is uniquely salted and hashed to perhaps varying degrees of difficulty. So for a thought experiment, let's say a site made the password column of their user database public. Given an entirely public password column, even with associated usernames, would this have any use or decrease the security of…