Hacker Steals 1.6 Million Accounts From Top Mobile Game's Forum (zdnet.com)
Zack Whittaker, reporting for ZDNet: A hacker has targeted the official forum of popular mobile game "Clash of Kings," making off with close to 1.6 million accounts. The hack was carried out on July 14 by a hacker, who wants to remain nameless, and a copy of the leaked database was provided to breach notification site LeakedSource.com, which allows users to search their usernames and email addresses in a wealth of stolen and hacked data. In a sample given to ZDNet, the database contains (among other things) usernames, email addresses, IP addresses (which can often determine the user's location), device identifiers, as well as Facebook data and access tokens (if the user signed in with their social account). Passwords stored in the database are hashed and salted. LeakedSource has now added the total 1,597,717 stolen records to its systems.
He's a criminal and deserves to be outed. If you steal people's personal information, you deserve the retribution that comes from doing so.
It was a cracker.
IP addresses (which can often determine the user's location),
So now an IP address can be used to determine a person's location yet people on here whine about how an IP address can't be traced to someone accused of child pornography or stealing music/movies.
Would be nice if you people would make up your minds.
We will bankrupt ourselves in the vain search for absolute security. -- Dwight D. Eisenhower
They should have locked the server in a bathroom closet. That way if they get hacked there are no consequences.
seems to have become a sporting event - yes, I can do it I am the king.
What's a person gonna do with a million of data records - maybe sell it or is it just a proof of "concept"?
Seems weird, guess there are nicer things to do than sticking your mind for hours and days into something like this.
Or, the "we don't know shit but like to scare you regardless" style of non-reporting.
Well someone's got fuck all to do.
Hashing and salting makes your breakfast taste better ... but for you shouldn't use the same salt for every password.
You have to use a UNIQUE SALT for every password and then have a WORK FACTOR of some large number (use the bcrypt library). That makes it much harder to crack all the passwords in the database because the attacker can't make a thing called a rainbow table easily .. which is basically a list of possible passwords hashed with the salt. Oh yeah when they enter the password check that the user doesn't use any of the top 100 passwords and patterns (ie, company name or username derivative a password etc.). First, after 3 bad tries (make sure you're saving the count on the server by updating the DB with the number of consecutive failed attempts -- dont track it with a cookie or session) on a username display a reCAPTCHA challenge. Second, if they do the reCAPTCHA but can't get the right password after 3 more tries .. then lock the account at least temporarily. The reason for displaying a reCAPTCHA before locking accounts is to make it harder for someone to write a script that locks out all your users. People should be using password managers nowadays anyway (they are built into the browsers right).
You have to use a UNIQUE SALT for every password and then have a WORK FACTOR of some large number (use the bcrypt library).
Yup, a slow and hard to brute force hash would have been good (other example: PBKDF2, Scrypt and the latest competition winner Argon2)
Saddly people are still using SHA-1 as a password hash (a hash function designed purposedly to be fast and simple, which has the advantage of being able to be useful even on small hardware like smart cards - but is easy to brute force on dedicated hardware (GPU, FPGA) as proven by bitcoin's proof-of-work system, and it there a bad solution for *password* hashing)
Public key based authentication is even better, but I have it seen rarely used outside of the professional word.
Two-factor is another alternative, and at least that one is seeing come consumer usage...
"Sufficiently advanced satire is indistinguishable from reality." - [Tips: 1DrYakQDKCQ6y52z6QbnkxHXAocMZJE61o ]