this post was submitted on 30 Sep 2023
154 points (73.6% liked)

Programming

17000 readers
253 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities [email protected]



founded 1 year ago
MODERATORS
 

This thread is frustrating. Everyone seems more interested in nitpicking the specifics of what OP is saying and are ignoring that a forum sends you your password (not an automatically generated one) in an email on registration.

you are viewing a single comment's thread
view the rest of the comments
[–] 8ace40 4 points 11 months ago (2 children)

These kind of forums don't store the plaintext password, they send an email while in memory, and hash them afterwards. Still bad security, but it's not storing it in plaintext.

[–] [email protected] 2 points 11 months ago* (last edited 11 months ago) (1 children)

It's storing it in plain text in at least one third party's database. Indeed, it's not stored in plain text locally, it's doing something much worse

[–] [email protected] 1 points 11 months ago (1 children)

But you are supposed to change that generated password as soon as you use it to login. Now I have no idea about these forums, but you'd expect the software to enforce that need to change

[–] [email protected] 1 points 11 months ago

It's still stupid because people reuse password. They shouldn't, but they do. If it's one time login, make it a token. There's zero reason to ever email a password, period

[–] jormaig 0 points 11 months ago

But your password should never reach the server. It should be hashed already at the client and then salted at the server with a random hash. Then you store the salted hash