Earlier quoted context omitted.
I'm still getting almost daily phishing/malware from the Mt Gox leak in 2011, and I never even signed up for anything more than to see what it's interface was like. Can't imagine how that will be with people having copies of passports (supposedly).
My spam folder is also full of, well, spam addressed to the email address I supplied to Dropbox (and only Dropbox) when I first signed up there sometime in 2011 and later leaked (I think 2012). Sometimes I wish data privacy laws were stricter, but it appears that not even financial services laws are sufficiently strict, as just demonstrated here.
Mt. Gox Has Been Hacked by People Trying to Find Out What Happened?
131–140 of 157 posts
Re: Mt. Gox Has Been Hacked by People Trying to Find Out What Happened?
#132Earlier quoted context omitted.
My spam folder is also full of, well, spam addressed to the email address I supplied to Dropbox (and only Dropbox) when I first signed up there sometime in 2011 and later leaked (I think 2012). Sometimes I wish data privacy laws were stricter, but it appears that not even financial services laws are sufficiently strict, as just demonstrated here.
Please contact Dropbox support about this. Mine vendor-tagged address leaked on or before 3 Feb 2014, as that's when I got the first spam. I'm currently in the middle of persuading them that they have a security issue, and more people expressing the problem would be helpful.
I have stopped using Dropbox shortly after receiving the first such spam email, so I cannot comment on more recent leaks.
Re: Mt. Gox Has Been Hacked by People Trying to Find Out What Happened?
#133Earlier quoted context omitted.
My spam folder is also full of, well, spam addressed to the email address I supplied to Dropbox (and only Dropbox) when I first signed up there sometime in 2011 and later leaked (I think 2012). Sometimes I wish data privacy laws were stricter, but it appears that not even financial services laws are sufficiently strict, as just demonstrated here.
> Sometimes I wish data privacy laws were stricter I think the laws and awareness are good enough atm, but no laws and probably no amount of knowledge or auditing will stop a data leak from indadvertedly occurring.
In summary I have spent at least five to ten minutes (and likely more) on spam brought to me by Dropbox without any compensation. How about a fixed payout of, say, 100€ per leaked detail (username, password, email etc.), payable immediately to each customer? At least companies with bad security would be out-of-business soon.
Re: Mt. Gox Has Been Hacked by People Trying to Find Out What Happened?
#134Earlier quoted context omitted.
> The first thing you do when hacking together a stupid exchange for a joke e-currency isn't writing unit tests. As soon as you write anything where a bug causes money to change hands, even on a laugh, you write some tests.
No kidding, I would be so freaked out not writing tests the second money is involved. I just don't understand why he didn't bother to hire some help when things got bigger.
Re: Mt. Gox Has Been Hacked by People Trying to Find Out What Happened?
#135Wow, that's a lot of my personal data leaked in these last months. My email and encrypted password in the adobe breach, my user id and part of my mobile number via SnapChat, and now hackers potentially have scans of my passport courtesy of Mt. Gox. I'm probably forgetting about some leaks, and who knows how many security breaches were never discovered. The internet is not a safe place.
Re: Mt. Gox Has Been Hacked by People Trying to Find Out What Happened?
#136Re: Mt. Gox Has Been Hacked by People Trying to Find Out What Happened?
#137Wow, that's a lot of my personal data leaked in these last months. My email and encrypted password in the adobe breach, my user id and part of my mobile number via SnapChat, and now hackers potentially have scans of my passport courtesy of Mt. Gox. I'm probably forgetting about some leaks, and who knows how many security breaches were never discovered. The internet is not a safe place.
I signed up for Mint.com once. I liked the concept in theory. But then after an hour of using it, I realized just how incredibly stupid it is giving a third party total access to all your bank accounts. Then I immediately went and changed the passwords on all my bank accounts.
Re: Mt. Gox Has Been Hacked by People Trying to Find Out What Happened?
#138Earlier quoted context omitted.
Can you explain what's wrong with this? If I had 1 million in $info[ 'balance' ]? Would $bean->Coins overflow?
If this is 32-bit PHP, any amount above 21 bitcoins will overflow the integer range (2^31) and will be converted to float. That's bad. If this is 64-bit PHP, any realistic bitcoin amount multiplied by 100000000 would still be within the integer range (2^63 - 1) and can be passed around without any loss of precision ... ... unless $info['balance'] has anything below the decimal point. As soon as you're dealing with fr…
Re: Mt. Gox Has Been Hacked by People Trying to Find Out What Happened?
#139Re: Mt. Gox Has Been Hacked by People Trying to Find Out What Happened?
#140The code is ... interesting. Smells organic, not designed. Comments are rare but usually useful. Highly coupled. Static methods everywhere. Violates SOLID principles. Basically, ignores current best practices. Clearly not designed for any sort of automated testing, which should be the first damn thing you do when there's any sort of money involved. Hell, even when there isn't money involved. We'd already guessed that…