The most secure code in the world
September 28th, 2005 by ido, Filed under: Commentary, Linux
I’m going to say some things, that might be the last thing I’ll ever be able to say (You’ll see why in the next paragraph
). Open source is as secure as much as the developers made it secure. It is not more secure then close source, and it’s not better then closed code. It’s merely code !
Most of the open source community (Hey I also develop open source tools and programs) try to sell us that Open = Secure. When Internet Explorer had a lot of security risks one after the other, firefox developers came and told us that in Open source it would have never happen. there are 10000000 (I must have missed few O
) eyes on the code so it’s can not be less secure, only more secure….
Ammm.. OK (I’m starting to look for a place to hide right about now
)
The fact is, that for better, and more secure code, the first thing we have to do, is to educate people to think and be paranoid. Yeah! You can not trust any user input, any result of system function, and you must validate them over and over again.
You must check the input and see that it does not overflow the amount of memory you are willing to give your buffers.
You must sanitize (filter) any char you do not wish to see and have.
And escape anything that you must have, but may effect your program.
But wait, thats still does not give us secure programs and code, only start making us understand better the risks. For example, Off by one can happen to every one… specially after alcohol is involved
And what about the user control our function jumps (you know change hard coded our machine code of the program), or inject us with system functions of his like… We can sanitize the input we getting back form the function, but we can not control what happen on the function itself…
Or even bugs that we didn’t thought we had, and someone found them and exploit them. Or as Knuth one said: “I just proved that my claim is right, but I haven’t tested my code with a compiler” (I’m quoting from memory…)
But I just realize that thats not the thing I needed to start with… I should have said, that we are not educated to think in more secure manners. In high schools and universities we are taught to assume that the user input is somewhat correct, and all we need to do is focus on the functionality of the program.
We are also taught that there is only one “right” way to do thing and thats the professor way
So before every one starts jumping and accusing something to be more/less secure, lets start teaching people to do things in a more secure way… So how do we start ?
-
Ryan Sommers
-
http://www.whiteacid.org WhiteAcid
-
http://c0d3r.org Kaveh Razavi
-
http://CoraxNetworks.com P Davidson



