How do you go about promoting secure coding practice in a development team?
|
2
|
|||
|
|
|
First stop: Executive buy-in. Next, you have to get the developers interested, but before that - the question should be, WHO is doing all this? It doesnt happen by itself. If you cant have a full blown security team, consider having a single security guru, who should motivate the entire dev team to be his "security team" (more on that in a moment). If you're in a large or bueracratic org, consider having a "security council", made up of the security lead, senior pms, dev manager, and the executive sponsor. This council provides the final word on disagreements, scheduling issues, and in the (hopefully) rare situation when you knowingly accept the risk of faulty security. Education. Tools. If programmers are given good tools which are easy to use, they will use them. Thats why MS is bundlign a lot of these tools into Visual Studio, such as CodeAnalysis (though not the top of the line, its a decent static analysis tool - most importantly, the programmer can see the results immediately). Management must provide enough time and resources to include security from the beginning of the dev process, starting even before design, thru threat modeling, guidelines, testing, etc. This entails a great deal of planning, and willingness to take the hit both on resources and on schedule. That executive buyin from step one should help here. Code reviews. Should be performed constantly, but not negatively - these should be treated more as learning experiences. They should at first be done by the security lead, or someone trained to do security code reviews specifically. Periodic (weekly?) staff meetings should discuss some of the more interesting or prevailing issues which are found in the CRs. Security testing - including penetration testing, fuzz testing, etc. Planning should have ensured that this does NOT occur two days before release, when its too late to care... In general, having a clear, well defined process - whether formal or not - will help the programmers, because it provides structure, and gives guidance as to what to do when. Moreover, its because that says that management cares about security more than rushing the product out the door. That will help their own buyin, especially when they have the capabilities to do something about it. It occurred to me that I did not emphasize that THIS IS NOT SOMETHING YOU SHOULD DO ON YOUR OWN. Having an experienced security professional on your side, one that's already been through this - preferably numerous times, preferably from different angles in different situations - is indispensable. |
|||
|
|
|
|
Code reviews Static analysis Extensive testing Treating Security Flaws as High Priority Bugs |
||
|
|
|
|
This has to be done both from the top-down and bottom-up or nothing will get done; if management doesn't care and reacts to security concerns cavalierly, then it doesn't matter if the developers notice problems, time will never be allocated to deal with them. On the other hand, if the developers don't care, they won't report their concerns to the managers. In our company, we use peer code reviews and a "rule of three" design process to ensure that we have the greatest possible chance of having eyeballs on potential problems. This additionally offers us the opportunity to show off our skills to our peers, which is powerful motivation to do well. |
||||||
|
|
|
Education of programmers and peer reviews! |
||
|
|
|
|
Whatever you do, do NOT punish your programmers for having bugs in their code. Punishing them (even just calling them out derisively in meetings) will only cause them to hide/ignore bugs, and keep their peers from reporting them & harming their friends. |
||
|
|
|
|
Have a QA department that actually tries to break the code, and make sure the original developer has to fix anything that breaks if possible. Breaking includes compromising security and malicious testing. |
||
|
|
|
|
If you are looking for books, I recommend Exploiting Software, Software Security, and Building Secure Software. You can also get a boxed set containing all three books. I'm still reading Exploiting Software, but I thumbed through all of them and they seem good. I personally thinking that good processes would help. A security problem can be introduced at any level, from requirements through maintenance. And once a problem propogates, it becomes that much harder (and more costly) to fix. |
||
|
|
|
|
always good to have a team member who responsible for advanced penetration testing, while the others considering the general security issues together |
||
|
|
|
|
Security is a frame-of-mind. You have to get them there. Try "Security Awareness Day" once a month, well just for a few hours and not the entire day. They really have to develop this consciousness in today's world. |
||
|
|
|
|
I would recommend code reviews. Security is a tricky thing. The more people you have reviewing code, the more devious minds you have analyzing security problems. |
||||||||
|
|
|
From a managers perspective, I think at least one member on the team has to become the champion for this. Telling the team to write secure code might not go very far. I would probably pick someone that has the most excitement on the subject. Give this developer the instruction to evangelize this practice. Have them review the code, make recommendations, point out problems during normal pair programming, code review, etc. Don't make it a big deal requirement. Developers will feel better writing secure code and if they know management is behind it (the champion can point that out too) they might spend the extra time necessary to onboard the discipline. |
||
|
|
|
|
I think the advice here is good but I am trying to figure out how to apply it in a way that is effective. I have been toying around with the idea of trying to setup a security team, much the same way Microsoft does it. The purpose of the team would be to enact many of the things mentioned here. But I doubt we are going to be able to have dedicated full time resources to a security team. What I was thinking was purposing we build a security team from the existing development team. Some subset of the team, I was thinking five or so, would serve on the security team for a period of time. They would only be On duty for one week periods. During that On time they perform code reviews, peform and mitigate security tests, and work with M's, SA's to determine security concerns before a drop of code is written. Then after they have served on the team for a period of time, someone else rotates in. The advantages I can see is everyone has the potential to get involved in the security process. They learn by doing instead of studying. The others who are not involved are working with their peers instead of some security expert. Since it is my idea...all I can see currently is the advantages, but I am sure that it has plenty of disadvantages. What do you think? |
||
|
|
|
|
Another, separate comment regarding books, the best - and first - book ALL your devs should read is Writing Secure Code, 2nd Edition, By Michael Howard, MSPress. |
||
|
|
|
|
The best way to educate developers is to encourage them to participate in local user groups such as OWASP. On my side of town, there are multiple ways for developers in different companies to learn and interact with each other that is 100% free of cost. |
||
|
|
