This is a pretty thorough and high profile hack on a major tech company - this isn't something I'd expect from an Amazon owned property. The hack (allegedly, I haven't downloaded it) includes * Entire git histories * Internal/Private AWS SDKs * Encrypted Password dumps and payout reports It's so comprehensive I'm very curious into how an attacker got that level of access. I can't think of another, large, corporate we…
It something I would expect security hardware to have automatically stopped. Even an employee shouldn't be able to download 125GB of stuff without flipping a safety switch somewhere.
Twitch is hacked, and its source code leaked
111–120 of 325 posts
Re: Twitch is hacked, and its source code leaked
#112As an avid Twitch streamer, what do I need to do to protect myself?
And if you want to be perfectly safe, don't visit twitch. Because if that source code has any vulnerabilities they might be exploited against twitch visitors as we speak.
Re: Twitch is hacked, and its source code leaked
#113Earlier quoted context omitted.
>Then I'm not sure what you can even do with those Assume some end users used the same passwords on other, non-twitch accounts. That's what makes hacked passwords valuable, no matter where they came from.
That's something I've wondered - do password hashes tend to be the same across platforms? Is everyone using the same hashing algorithm? Isn't this also what salting is for? Never implemented auth myself.
But mistakes such as salting with just the username are sometimes made even by very large companies and in that case, hashes could be the same.
Re: Twitch is hacked, and its source code leaked
#114Does it take a genius to figure out how to build twitch? It’s a modern crud app with video streaming.
Re: Twitch is hacked, and its source code leaked
#115As an avid Twitch streamer, what do I need to do to protect myself?
Change your password (and if you used this password at any other site, change it there too). You might want to put a hold on the credit card you stored info of with Twitch (for any followers).
If the source code is compromised, other attacks are possible. Depending on how the code works, it may be possible for attackers to successfully charge your followers while you stream. It would be very easy to phish your followers with a website that looks like twitch but is in fact twtich.com for example. And then charge them when they think they are donating to you.
It's honestly probably going to hit you hard if you have to move to an alternative service. But you have to weight that against the very real threat of this leak being used to steal from your followers or you.
Re: Twitch is hacked, and its source code leaked
#116Earlier quoted context omitted.
I found out how to destroy reddit. Just fork their repos! https://github.com/reddit
Sadly, Reddit stopped updating the public repo for their main application in 2017: https://github.com/reddit-archive/reddit
Re: Twitch is hacked, and its source code leaked
#117Earlier quoted context omitted.
Its still more secure. Rubber hose cryptanalysis applies to both equally, but that doesn't mean there aren't other attacks that apply to totp which don't to yubikeys. More secure != perfectly secure.
With a phone you need my passcode to accept to 2FA request (assuming lock screen notifications are disabled). I think yubikeys can work without a passcode as long you plug it in right?
With a Yubikey, you need to use your password to log in to your computer, and then need to auth using Yubikey.
With OTP app, you need to use your password to log into your computer, passcode for phone, and then auth.
In both cases, it's something you know, and something you have. You could argue that the app based is a bit more secure in that you need two passwords. On the flipside, if your phone gets pwned, someone can access completely remote.
Everything is a tradeoff.
Re: Twitch is hacked, and its source code leaked
#118Anybody took a peek? What language, and framework if they use one, do they use?
Re: Twitch is hacked, and its source code leaked
#119Anybody took a peek? What language, and framework if they use one, do they use?
WARNING: do not click the link, copy it and paste it in new tab.
Re: Twitch is hacked, and its source code leaked
#120This will help with ad preroll blockers.
I would love to see someone look deep into Twitch recommendation system - last time I tested the thing they call "Feedback" is a rolling buffer and wont let you exclude more than ~100 things, adding more simply removed oldest entries and started spamming you with things you already excluded in the past. This looked like performance optimization (less things to track per user).