Slashdot Mirror


eBay Japan Passwords Revealed As Username+123456

mask.of.sanity (1228908) writes "eBay Japan created passwords for accounts based on a combination of a username plus a static salt, allowing anyone with knowledge of it to access any account, a researcher reported. The salt, which should have been random, used was the combination '123456', which was reported as last year's worst password." Complete with visual aids.

12 of 80 comments (clear)

  1. Hey by dale.furno · · Score: 5, Funny

    That's the same password as my luggage!

    1. Re:Hey by marcansoft · · Score: 5, Interesting

      Sorry for the threadjack, but this is yet another case of horrible security reporting.

      From watching the video, what it seems happened here was that eBay chose phpBB for their community forum, but did not integrate its authentication system directly with eBay's on the server side. Instead, the site was set-up as a standalone system, and whoever implemented the integration had the bright idea of hardcoding the forum password for everyone as username+123456, and then just having the eBay login page issue a hidden POST request behind the scenes to authenticate users to the community forum section.

      Thus, this allows anyone to trivially impersonate anyone else on the forum. It shouldn't have anything to do with the rest of the site, though. Nor does this have anything to do with initial passwords, salts, or any of the other terms that have been thrown around.

      A case of absolutely retarded login integration for the community site, but not something that would allow people to take over others' main eBay account. What this says about the people running eBay is another matter entirely...

  2. Obligatory by hey! · · Score: 5, Funny

    ....That's amazing! I've got the same combination on my luggage!

    --
    Post may contain irony: discontinue use if experiencing mood swings, nausea or elevated blood pressure.
    1. Re:Obligatory by ArcadeMan · · Score: 5, Interesting

      You just gave me an idea.

      Alright everyone, LISTEN UP!

      If a user tries to use "12345" for his password, return an error message exactly as follows:
      "1,2,3,4,5? ....That's amazing! I've got the same combination on my luggage!"

      Now go and implement this on your systems, whatever they may be. I don't care if your code systems for banks, the NSA or whatever. It shall be known as "Spaceballs: The Error Message".

    2. Re:Obligatory by 0racle · · Score: 4, Funny

      Then code a quality easter egg with full test cases and stellar documentation.

      --
      "I use a Mac because I'm just better than you are."
  3. Spaceballs: The Comment! by broginator · · Score: 5, Funny

    I too have seen Spaceballs.

    --
    s/[stupid comments]/[intelligent discourse]/gi
  4. Why was the initial password still being used? by Todd+Knarr · · Score: 4, Insightful

    If the password was set by the system, either during a password reset or initial account creation, the first thing I do is change the password to a random one my password manager program's generated. Why were these accounts still using the system-created password? Also, the article seems to conflate two uses of the term "salt": the random nonce used to insure the stored hash value isn't the same for two different accounts that picked the same password, and the random string used in the plaintext of the initial password to avoid a trivially-guessable "password same as username"-type case. The two aren't at all the same.

  5. wait a minute... by slashmydots · · Score: 4, Funny

    Wait so in the US most passwords (and server names and PC names and switch names and domain names) are Anime characters or related to Animes and in Japan they chose 123456? What the hell?

  6. looks like both. password = crypt(username+salt) by raymorris · · Score: 4, Informative

    My interpretation is that they used a) as b), which should be fine if the salt was actually salty. I think they did:

      default_password = crypt(username+salt)

    That would be fine if they used real salt (random), but instead they used Mrs. Dash salt substitute.

  7. Not salt by blueg3 · · Score: 5, Informative

    It looks from the video that the password is simply the username concatenated with a global string, "123456".

    That's not salt. That's not what the word means. A salt is data that is not part of the password but is combined with the password when hashed. The client side never sees salt.

    So all these discussions of salt are not at all relevant.

    This is fundamentally a case of hard-coded credentials, which is more stupid than a non-random salt. (Also, really, transmitting credentials over HTTP?)

    1. Re:Not salt by jxander · · Score: 4, Funny

      We'll call this "just a pinch of salt"

      --
      This signature is false.
  8. Same for all Four Users? by fullback · · Score: 3, Insightful

    I've lived in Japan for over 20 years and I, like probably most people in Japan, didn't know it even existed.