Your password must also not contain the following character combinations: script, select, insert, update, delete, drop, --, ', /*, */.
Your password must also not contain the following character combinations: script, select, insert, update, delete, drop, --, ', /*, */.
You're viewing a single thread.
So they’re not hashing or salting the passwords too. Cool…
53 1 ReplyThey might be doing it in the DB query, but they’re definitely not sanitized beforehand.
19 2 ReplySanitization has nothing to do with salting and hashing.
2 0 ReplyIf you do the salting and hashing in a database query you need to sanitize the input before you use it or you open yourself to SQL injection.
Databases have salting and hashing functions, after all
2 0 Reply
Which makes me want to try and insert a password of a few megabytes worth of text. Should be fine, since there is no max lenght defined, right?
9 0 ReplyIf there is no overwrought prohibition of something I know that at least in America that means it’s
- Affirmatively legal and
- Legislatively encouraged by the FREEE Act
So give ’em hell!
4 0 Reply
That's not how it works. The code always has access to the submitted plaintext password. It's salted and hashed after it's verified for complexity. The complexity verification can even be done in JavaScript.
1 0 Reply