It would really make me laugh if Disney was at fault but it sounds like people with compromised credentials reusing those same creds.
Disney+ fans without answers after thousands hacked
11–20 of 88 posts
Re: Disney+ fans without answers after thousands hacked
#12Re: Disney+ fans without answers after thousands hacked
#13It would really make me laugh if Disney was at fault but it sounds like people with compromised credentials reusing those same creds.
Re: Disney+ fans without answers after thousands hacked
#14Earlier quoted context omitted.
Sounds like JSON web tokens! Should have stuck to sessions if that's the case. Admittedly, the performance benefits of jwt are probably warranted here. But still, you either end up building an in-memory blacklist or a DB table thus negating most benefits.
It's not that hard to build a highly available active-active session service given time and engineering headcount. It's hard if you're trying to get out the door fast, though.
I went through my shiny jwt phase. I'm happily back in session land though.
Re: Disney+ fans without answers after thousands hacked
#15It would really make me laugh if Disney was at fault but it sounds like people with compromised credentials reusing those same creds.
How do you know of your credentials are compromised?
Re: Disney+ fans without answers after thousands hacked
#16> More than 4,000 customer accounts appeared in the search
To clear this up:
No, not true. The software in the screenshot called Open Bullet and it's basically a request builder for Selenium (ok it's more than that but you get the idea). You add in lists of usernames/passwords (from database dumps) and it runs your script. You have success/fail reporting, and that's where you get "Hits: 4"
> Ads on the dark web for stolen Disney+ accounts
That's a sellers page from shoppy.gg — not the dark web.
Re: Disney+ fans without answers after thousands hacked
#17Re: Disney+ fans without answers after thousands hacked
#18Re: Disney+ fans without answers after thousands hacked
#19I am sure Netflix and amazon prime users also reuse their passwords, but I haven’t yet heard about users having the Disney+ issues with these accounts.
Yeah, I've logged into my Amazon account on my phone before and it wouldn't let me in until I verified something via email. The lack of these security controls is negligent these days. I can't totally blame Disney though, since the opportunity cost of implementing this level of security just isn't worth it. The public doesn't really care enough, and governments don't seem to care about security at all.
Re: Disney+ fans without answers after thousands hacked
#20yikes. It doesn't support the security feature of logging everyone out of the account? So if a someone gets access to your account they're in for good.
Sounds like JSON web tokens! Should have stuck to sessions if that's the case. Admittedly, the performance benefits of jwt are probably warranted here. But still, you either end up building an in-memory blacklist or a DB table thus negating most benefits.