Earlier quoted context omitted.
Just one foot note (as I have just taken my own advice and turned it on). Suddenly I couldn't push/pull through the git command line access as it would not accept my password. Took me a bit to work it out but you need to go here https://github.com/settings/applications and create personal access tokens.
If you need to store a personal access token in order to pull or push to your own repos, how is two-factor auth any better than a normal account with a secure (ie reasonably long, unique, randomly generated) password?
Github seems to be experiencing security issues
51–59 of 59 posts
Re: Github seems to be experiencing security issues
#52Earlier quoted context omitted.
no, they definitely shouldn't, for the same reason they don't store the real passwords in plain text. it would be a terrible security hole.
Sorry for being ignorant, but why is providing the passwords they guess/automate a security issue?
Re: Github seems to be experiencing security issues
#53I don't get it... this is my own security page which looks normal to me. [edit] I see one failed login attempt from a chinese IP like other people are saying. Maybe that is what OP meant to point out?
Re: Github seems to be experiencing security issues
#54Re: Github seems to be experiencing security issues
#55Earlier quoted context omitted.
If you need to store a personal access token in order to pull or push to your own repos, how is two-factor auth any better than a normal account with a secure (ie reasonably long, unique, randomly generated) password?
I use 2FA with GMail and the same question could be asked. The answer is that an application password does not have admin rights to the account. It can be revoked at any time. It traces the breach directly back to a particular application. They are not meant to be memorized but rather to be set and remembered in a particular application which means they can be extremely complex and are by default. I have to think tha…
For github though, the the repos you have read (or commit if vandalism is the risk) access to are the data in question, so unless you use your github account for other things, I'm still not really seeing the benefit to the end user if you still have to store OAuth tokens everywhere you actually use git.
Can github issue OAuth tokens that are restricted to a specific repo? At least that would prevent a token leak exposing other repos that you had access to.
Re: Github seems to be experiencing security issues
#56The list of IPs from China (& Indonesia, etc) - that most are seeing on their page - making failed login attempts, looks like a botnet or automated bruteforce on the GitHub authentication service. Hit enough usernames with a dictionary attack and they'll get some accounts. I assume that GH are doing some basic rate-limiting or 'fail2ban' style blacklisting on these attempts. As anyone who's put an EC2 up without secu…
I wonder if this is related to the recent Adobe and vBulletin user database breaches. They might be trying those passwords on GH.
Of course I changed the password for github now.
I have 14 failed attempts in the last 4 days.
Re: Github seems to be experiencing security issues
#57The list of IPs from China (& Indonesia, etc) - that most are seeing on their page - making failed login attempts, looks like a botnet or automated bruteforce on the GitHub authentication service. Hit enough usernames with a dictionary attack and they'll get some accounts. I assume that GH are doing some basic rate-limiting or 'fail2ban' style blacklisting on these attempts. As anyone who's put an EC2 up without secu…
Or attached any box directly to the internet. This looks like bog standard background noise to me.
Re: Github seems to be experiencing security issues
#58Earlier quoted context omitted.
I wonder if this is related to the recent Adobe and vBulletin user database breaches. They might be trying those passwords on GH.
Very likely. We've just added a kill-list of known decrypted passwords and English language words and forced people to reset their passwords who are listed in the adobe breach.
Re: Github seems to be experiencing security issues
#59Earlier quoted context omitted.
Very likely. We've just added a kill-list of known decrypted passwords and English language words and forced people to reset their passwords who are listed in the adobe breach.
How do you find out that someone's using a known decrypted password on your service?
We wrote a script that hashed these passwords with the stored salt for each user and compared the result with the stored hashed value. Basically we brute forced everyone's accounts with the dictionary provided. Anyone who was found with an account that was in the dictionary was locked out with forced password change. We changed the password policy before doing this to increase complexity and block dictionary and the decrypted list words. We also force people to change their password every 28 days anyway and keep the last 7 hashed passwords and salts to verify that the user hasn't reused.
We store financial data so it's pretty hardcore auth requirements.