18
bahua
4y

Expert: "The core problem with passwords is that they reside on a server."

I suppose that's true, but only if you're a complete moron. Store a hash of a password, and users can authenticate against it with a password that doesn't get logged. This is technology that's been around for over fifty years. If you're storing passwords on a server, you deserve whatever trouble you get.

Comments
  • 8
    "The core problem with passwords is that they reside on a server."

    That's so empty I don't know what it means...
  • 1
    Depends on context.

    On Windows this is a huge problem: While the cleartext password of the logged in user (from console or RDP) is not stored in a persistent database, it is in memory for the length of a session.

    This means, if a Windows server administrated with RDP is compromised (e.g. with malware), the user account is as well. As sessions are commonly done with network wide credentials, it may hurt the whole network.

    The emotet malware does this: It waits on a server / workstation for a domain administrator to log on and uses his credentials to compromoise the network.

    For web applications there is a similar issue: in case a hacker can execute arbitrary code, as the web application takes the password unhashed from the user before comparing it to the stored hash.
  • 5
    I think the 'expert' still draws the wrong conclusion:

    The problem is that the same passwords are used for multiple resources.
  • 4
    @sbiewald

    Sure, but when the server has a bad security design, hacking it gets you everybody's credentials, regardless of how good or bad the discipline is of each user.
  • 4
    "eXpErT"
  • 0
    @linuxxx As seen on your local TV news channel ;)
Add Comment