Secure Programming RecipesCookbook-style recipes for tackling programming problems securely.Validating Email Addresses in JavaScript- September 5, 2003 Your program accepts an email address as input, and you need to verify that the supplied address is valid.http://www.secureprogramming.com/?action=view&feature=recipes&recipeid=7 Preventing Buffer Overflows- September 3, 2003 C and C++ do not perform array-bounds checking, which turns out to be a security-critical issue, particularly in handling strings. The risks increase even more dramatically when user-controlle...http://www.secureprogramming.com/?action=view&feature=recipes&recipeid=5 Understanding Basic Data Validation Techniques- September 3, 2003 You have data coming into your application, and you would like to filter or reject data that might be malicious.http://www.secureprogramming.com/?action=view&feature=recipes&recipeid=4 |