this post was submitted on 21 Oct 2024
76 points (85.2% liked)

Programming

17248 readers
255 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
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 29 points 1 day ago (2 children)

Another favorite of mine is truncating the password to a certain length w/o informing the user.

[–] [email protected] 15 points 1 day ago (1 children)

Saving the password truncates but validation doesn't. So it just fails every time you try to log in with no explanation. The number of times I have seen this in a production website is too damn high.

[–] [email protected] 1 points 1 day ago (1 children)

It also can truncate on the BE side when using the damn varchar

[–] nous 3 points 1 day ago

Passwords should be hashed, not stored plain text! Hashes are always the same length so this is an immediate sign they are doing horribly insecure things with your password.

[–] [email protected] 9 points 1 day ago

The password needs to be 8 letters long and may only contain the alphabet. Also we don't tell you this requirement or tell you that setting the password went wrong. We just lock you out.