As these hacks are becoming more common place, I'd love to hear fellow HN reader's take on their password strategy/management. Many thanks in advance!
GoToMyPC has been hacked, all customer passwords reset
41–50 of 171 posts
Re: GoToMyPC has been hacked, all customer passwords reset
#42Earlier quoted context omitted.
A unique password, 2FA, AND a unique email address. I use https://lastpass.com/ for generating passwords. $12/year and works on Linux & Android. Would prefer open source, but nothing else comes close. I tend to generate 32 char passwords with a mix of upper, lower, number, and special. Only a few websites insist on shorter passwords - or have character restrictions. For 2FA I use either SMS or Authy https://www.authy…
Good idea on (2). I have a gmail account, so I just use myaccount+whatever_service@gmail.com. Pretty handy.
Re: GoToMyPC has been hacked, all customer passwords reset
#43Why do people keep recommending these incredibly insecure passwords... replacing vowels with numbers will do little... Ugh
... service has been targeted by a very sophisticated password attackRe: GoToMyPC has been hacked, all customer passwords reset
#44As these hacks are becoming more common place, I'd love to hear fellow HN reader's take on their password strategy/management. Many thanks in advance!
Re: GoToMyPC has been hacked, all customer passwords reset
#45As these hacks are becoming more common place, I'd love to hear fellow HN reader's take on their password strategy/management. Many thanks in advance!
A unique password, 2FA, AND a unique email address. I use https://lastpass.com/ for generating passwords. $12/year and works on Linux & Android. Would prefer open source, but nothing else comes close. I tend to generate 32 char passwords with a mix of upper, lower, number, and special. Only a few websites insist on shorter passwords - or have character restrictions. For 2FA I use either SMS or Authy https://www.authy…
On a linux/unix system, one could use /dev/urandom:
tr -dc '[[:alnum:][:punct:]]'
would generate a 16 character long password.One could even put the following function in $HOME/.bash_profile or such
genpw() {
tr -dc '[[:alnum:][:punct:]]'
Now invoking it by saying genpw would generate a pseudorandom string of 16 characters length. You could specify the length by passing a parameter to it, e.g. genpw 8.Re: GoToMyPC has been hacked, all customer passwords reset
#46As these hacks are becoming more common place, I'd love to hear fellow HN reader's take on their password strategy/management. Many thanks in advance!
A unique password, 2FA, AND a unique email address. I use https://lastpass.com/ for generating passwords. $12/year and works on Linux & Android. Would prefer open source, but nothing else comes close. I tend to generate 32 char passwords with a mix of upper, lower, number, and special. Only a few websites insist on shorter passwords - or have character restrictions. For 2FA I use either SMS or Authy https://www.authy…
Re: GoToMyPC has been hacked, all customer passwords reset
#47Earlier quoted context omitted.
A unique password, 2FA, AND a unique email address. I use https://lastpass.com/ for generating passwords. $12/year and works on Linux & Android. Would prefer open source, but nothing else comes close. I tend to generate 32 char passwords with a mix of upper, lower, number, and special. Only a few websites insist on shorter passwords - or have character restrictions. For 2FA I use either SMS or Authy https://www.authy…
Good idea on (2). I have a gmail account, so I just use myaccount+whatever_service@gmail.com. Pretty handy.
Re: GoToMyPC has been hacked, all customer passwords reset
#48It might mean attackers are using password lists from previous leaks (linkedin), so they decided to force a pass reset to everyone. Or maybe they got hacked. Who knows, not very clear.
Re: GoToMyPC has been hacked, all customer passwords reset
#49 Substitute numbers for letters that
look similar (for example, substitute
“0” for “o” or “3” for “E”.Re: GoToMyPC has been hacked, all customer passwords reset
#50https://news.ycombinator.com/item?id=11880593
would have detected that intrusion?