Edit: obligatory explanation (thanks mods for squaring me away)…

What you see via the UI isn’t “all that exists”. Unlike Reddit, where everything is a black box, there are a lot more eyeballs who can see “under the hood”. Any instance admin, proper or rogue, gets a ton of information that users won’t normally see. The attached example demonstrates that while users will only see upvote/downvote tallies, admins can see who actually performed those actions.

Edit: To clarify, not just YOUR instance admin gets this info. This is ANY instance admin across the Fediverse.

  • Vlyn
    link
    fedilink
    English
    arrow-up
    1
    ·
    1 year ago

    Very quick excursion on storing passwords correctly (which Lemmy hopefully does):

    You add a “salt” to it. For example my password is hunter2 and my user id 123, so my salted password is hunter2123.

    This gets hashed, a hash is strictly a one-way function that transforms one text into another (unlike encryption with no way back). My salted password with SHA-512:

    b5bb1764b7b475f9e25d8a301944124d64aa6c7a36a78f985847a4de44fc1a8f9aed396dcd8a8379f745e60d4a0b368a1a40a5d4192db02ae8cd561a23d5d515

    So it’s not easily possible to find out what my password is even if you have access to the database.

    Old hashing algorithms like MD5 were beat with rainbow tables (just generate billions of combinations and their results, then compare to the password hashes you stole). The salt mentioned on top already makes this approach useless, because each user password is changed with some user specific info.

    Passwords should be safe then, but of course using a password manager and a random password per service is the way to go.