vote up 39 vote down star
33

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?

flag

34 Answers

prev 1 2
vote up 7 vote down

I've seen a number of cases where where input validation is done exlusively with JavaScript on the client.

link|flag
show 2 more comments
vote up 2 vote down

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.

link|flag
vote up 31 vote down

The first three that leap to mind are:

  1. Not validating every bit of data from the client
  2. Not considering filesystem permissions when working with files
  3. Leaving database access too wide-ranging (read/write when a user only need read access)

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.

link|flag
1  
+1 for not trusting user input. And please, salt those hashes. – Thanatos May 25 at 2:52
show 4 more comments
vote up 17 vote down

Storing passwords, for that matter, any other sensitive information, as clear text.

link|flag
prev 1 2

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.