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
|
|
|
|
|
|
There are a lot of good tactical suggestions already. Let me offer a strategic observation. Most applications are written from the default security perspective of "allow all". This means a programmer will start coding everything wide open and then (hopefully) will start to consider elements that need to be secured (these tactical suggestions which have already been made are terrific examples of that). This happens across the board. Everything from operating systems to fat clients to web-based thin clients are constructed this way. That's a primary reason why every Tuesday Microsoft comes out with a set of patches. Vulnerabilities continue to be discovered and must be remediated in a never-ending stream of patches. My strategic suggestion is this: start coding from a default perspective of "deny all". Every architectural element, every layer, every object, every method, every variable...construct them to be inaccessible to anything unless you expressly allow it. This will slow down your productivity a little (at least at first). However, once you become accustomed to thinking this way, your delivered code will be vastly more secure. Another analogy to this is when a programmer decides that unit testing is a good thing. Or maybe even TDD if you want to go to the extreme end of that spectrum. It takes a truckload more work to write the unit test first and then write the code to make the test pass than it takes to just write the code. But the end result is an order of magnitude more stable, and one could argue that overall less time is spent tracking down defects when a smart investment in unit testing is made. |
|||
|
|
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. |
|||
|
|
|
|
|
||||
|
|
|
Using directly GET or POST parameters in the code without validating it's content before using it. |
|||
|
|
Here's what I can come up with:
|
|||
|
|
|
|
I've seen a number of cases where where input validation is done exlusively with JavaScript on the client. |
|||
|
|
Not knowing what a threat model is. Given there is an endless amount of security to be applied it's vital to know where to start given your setup and business. |
|||
|
|
|
|
Thinking that they can consider every situation. This problem takes many forms; from C programmers thinking they can be careful enough to use stdio or the standard string library, to C++ programmers thinking all they need is safe pointers; to PHP programmers relying on the define/include hack; to Perl programmers thinking Protecting against security mistakes requires that you plan for what happens when it fails; What is the impact if this module is broken? It's real simple: If you don't run any part of your application as root, then a user cannot exploit your application to get root. Many programmers make a similar err, by thinking that some applications cannot be modularized and segregated, and that of course, they happen to be working on one of those very applications. |
|||
|
|
Not thinking about security when designing the application.. |
||||||||
|
|
|
Using security through obscurity -- if any part of your security strategy includes the phrase "Nobody will ever think of looking here!", or "Nobody will ever think of doing it this way!", it's not secure. |
|||
|
|
|
|
I would add these:
|
|||
|
|
|
|
What? No one mentioned SO's friend BufferOverflow! It's second to cross site IMHO. |
|||
|
|
|
|
Programmers trust too much! It's not just data from the user that should be checked, it's anything from a database, filesystem, configuration file, anything that's external to the application. |
|||
|
|
|
|
Some specific gotchas--rather than the usual generic "watch out for CSRF" advice--for people building AJAX-powered sites: Returning live JavaScript with user data. (Any site can include your endpoint as a SCRIPT tag and act on behalf of your user, if he or she is signed in. Examples: Facebook, 30Boxes.) Failing to disallow GET on URLs that should only accept POST. (Any site can include your endpoint as an image and act on behalf of your user, if he or she is signed in. Examples: Netflix, Amazon.) Returning an HTML page instead of JSON data if the user is not signed in. (Any site can include your endpoint as a script, watch onError, and tell if your user is signed in. Examples: Twitter, Google, and many, many others.) |
|||
|
|
|
|
The most common security mistakes I see come from people trying to protect from external threats and completely ignoring internal threats. You can have the most secure computers and databases in the world, but if the sensitive data is in a print-out on your desk, your an easy target. Think about the recent news stories about unauthorized phone company employees accessing Obama's call history, unauthorized US State Department employees accessing Senator Clinton's passport file, ChoicePoint employees stealing customer information, and so on. Everyone likes to trust the people on the inside. I once had to work with a third party to install secure machines in a bank. It wasn't my choice, but that's how it is. The machines were compromised in two minutes because a random guy in the machine room asked them for the root password and they gave it to them, despite explicit instructions to give it to no one but me. That was just inexperience and incompetence, but it violated the bank's requirement for security, and it was all internal. |
|||
|
|
|
|
Implementing security themselves is one of the most common mistakes programmers make. Even security professionals get it wrong sometimes, and I think a lot of programmers don't understand how hard security is to get right. Using Open Source security software is free and cheap (in terms of time). Implementing it yourself takes time, and you're almost certain to get it wrong. |
|||
|
|
|
|
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. |
|||
|
|
|
|
Designing security with too many "gates". Imagine security as a fence with gates with guards at the gates. The best security is a very high fence or under a mountain, with a single path inside and one or more gates on the path with dedicated, paranoid guards. The other way is a PHP web application where every individual PHP file has code to check the user authorization cookie. This code is trivially easy to forget or to get the permission check wrong. This is a bunch of gates side by side without a fence and some of the gates are unguarded. |
|||
|
|
|
|
Biggest mistake is to throw security issues out of scope of system development and put it on shoulders of everybody else. Common practice is to state that security is a responsibility of system administrators. Quite common also is blaming clients for low attention to security and vogue requirements regarding this. While there is a point of course it is IT department responsibility to elevate this topic and draw attention to the question. |
|||
|
|
|
|
Probably some of the most common errors are:
|
|||
|
|
|
|
The fundamental problem is that ... programmers think security of a application is only in its login page asking "login name & password" This ignorance is the big mistake the programmers make. |
|||
|
|
|
|
Using the SA account to talk to a MSSQL Database while just execute rights on sp's should be enough. Assuming that since you are on a closed system security is not important since it is not connected to the internet. Like internal users never do anything wrong or bad. |
|||
|
|
|
|
|
|||
|
|
|
|
Check out OWASP Top 10 |
|||
|
|
|
|
Not handling every returned error code, especially for system calls, and not handling exceptions. Forgetting to check the value of errno in C and C++ programs is also another no-on. |
|||
|
|
|
|
I'm not professional, but I think the biggest security mistake I have made was by 'not' encrypting password before saving them the Mysql db |
||||
|
|
|
Not documenting code and making it human readable. (Of course, this is a common non-security related mistake as well.) A programmer will never be able to catch every possible security mistake, but making it so other developers can follow their code and understand it means another set of eyes is more likely to be able to help. Clear, documented code generally forces the programmer to actually think about what they're trying to accomplish as well, which usually leads to direct benefits like proper input validation. |
|||
|
|
|
|
Improper Error Handling I've seen this several times. The app crashes for whatever reason, and in order to have a clue of what happened the developer leave the stacktrace reachable to the end user. It is not enough to show an "Try again later" if there's a detail button that shows the stacktrace. With this information the end user may know the technology, API, library, version, structure, even database information, that eventually may lead to steal information. The best practice for this is to generate a log number, and provide that number in the detail. If a report is needed that number could be provided and used to research in the log files A good example of PROPERLY handled error is SO Kitty "Wait a minute, I'll fix it!".. plus is cute. |
|||
