86
Self-documenting Code (lackofimagination.org)
you are viewing a single comment's thread
view the rest of the comments
[-] koper@feddit.nl 40 points 2 weeks ago* (last edited 2 weeks ago)

Why the password.trim()? Silently removing parts of the password can lead to dangerous bugs and tells me the developer didn't peoperly consider how to sanitize input.

I remember once my password for a particular organization had a space at the end. I could log in to all LDAP-connected applications, except for one that would insist my password was wrong. A trim() or similar was likely the culprit.

[-] spechter@lemmy.ml 33 points 2 weeks ago

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

[-] NotationalSymmetry@ani.social 16 points 2 weeks ago

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.

[-] nitefox@sh.itjust.works 1 points 2 weeks ago

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

[-] nous@programming.dev 4 points 2 weeks 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.

load more comments (2 replies)
load more comments (4 replies)
this post was submitted on 21 Oct 2024
86 points (86.4% liked)

Programming

17314 readers
346 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 !webdev@programming.dev



founded 1 year ago
MODERATORS