There are the obvious wtfs that make the headlines such as SQL injection, authentication in JavaScript but are there other more fundamental and common errors programmmers tend to make when writing applications without considering security?
|
33
|
|
|
|
|
|
I've seen a number of cases where where input validation is done exlusively with JavaScript on the client. |
|||
|
|
Thinking there are programmers who don't need to care about security. In some circles: Using String concatenation with user-supplied data to build SQL statements. |
|||
|
|
|
|
The first three that leap to mind are:
Another one that's not so much a security issue, although it is security-related, is complete and abject failure to grok the difference between hashing a password and encrypting it. Most commonly found in code where the programmer is trying to provide unsafe "Remind me of my password" functionality. |
||||
|
|
|
Storing passwords, for that matter, any other sensitive information, as clear text. |
|||
|
|
