[S5 Slides] Security in Web Applications
6.470.scripts.mit.edu
[S5 Slides] Security in Web Applications
1–5 of 5 posts
Re: [S5 Slides] Security in Web Applications
#2Zipped source code: http://6.470.scripts.mit.edu/lectures/security/security_in_w...
Live source code: http://github.com/costan/security_in_webapps_slides
Re: [S5 Slides] Security in Web Applications
#31) Don't use anything fast (like md5) to hash your passwords. Use many-rounds of md5 or sha-1, or use something specifically designed for password hashing like eksblowfish
2) Don't escape your SQL, use parameterized queries
Re: [S5 Slides] Security in Web Applications
#4How good is md5 plus a 4-character (digits, actually, in the slides) salt?
Re: [S5 Slides] Security in Web Applications
#5Zipped source code: http://6.470.scripts.mit.edu/lectures/security/security_in_w... Live source code: http://github.com/costan/security_in_webapps_slides
Thank you! Can you recommend any good case study collections on web security?