Ron Rivest's MIT Computer and Network Security
courses.csail.mit.edu
Ron Rivest's MIT Computer and Network Security
1–7 of 7 posts
Re: Ron Rivest's MIT Computer and Network Security
#2Re: Ron Rivest's MIT Computer and Network Security
#3Is it expected that all software engineers are knowledgable in computer and network security or are this considered a different specialty? Reason I ask is that I'm working on a healthcare startup that deals with rather sensitive information but I don't have a background in security. I've actually learned a lot during the last year that I didn't know, mainly using Ubuntu Command Line, modifying web server configuratio…
Re: Ron Rivest's MIT Computer and Network Security
#4Is it expected that all software engineers are knowledgable in computer and network security or are this considered a different specialty? Reason I ask is that I'm working on a healthcare startup that deals with rather sensitive information but I don't have a background in security. I've actually learned a lot during the last year that I didn't know, mainly using Ubuntu Command Line, modifying web server configuratio…
When the class is taught by the guy who puts the R in RSA, you can imagine he's going to lean heavy and hard into cryptography.
Re: Ron Rivest's MIT Computer and Network Security
#5Is it expected that all software engineers are knowledgable in computer and network security or are this considered a different specialty? Reason I ask is that I'm working on a healthcare startup that deals with rather sensitive information but I don't have a background in security. I've actually learned a lot during the last year that I didn't know, mainly using Ubuntu Command Line, modifying web server configuratio…
Trying to "duct tape" Apache's mod_security in front of an insecure webapp is no picnic... it would've been much cleaner to clean up the code base, but because the code was 10+ years old, the level of risk in changing that much code was deemed too high, and we needed fixes NOW (a customer was scanning us and finding SQL injections) we ended up standing up mod_security on the DMZ web servers we had.
Please learn secure coding practices! Worst case it will make you a more valuable dev.
Re: Ron Rivest's MIT Computer and Network Security
#6Is it expected that all software engineers are knowledgable in computer and network security or are this considered a different specialty? Reason I ask is that I'm working on a healthcare startup that deals with rather sensitive information but I don't have a background in security. I've actually learned a lot during the last year that I didn't know, mainly using Ubuntu Command Line, modifying web server configuratio…
When the class is taught by the guy who puts the R in RSA, you can imagine he's going to lean heavy and hard into cryptography.
It isn't particularity "heavy and hard into cryptography", but it is very hands-on with many programming problem sets and puzzles to solve. It covers security from AES to secure voting to firewalls to buffer overflows to sql injection to physical security. This class will teach you to build more secure systems.
To get a good idea of what the class is like check out the lecture list. http://courses.csail.mit.edu/6.857/2012/handouts
At the end of the course students present research projects. They are almost always worth taking a look at because they tend to be highly creative and fun (the MBTA "T" hacking talk at Defcon was originally a project for this class): http://courses.csail.mit.edu/6.857/2010/pitches.html
This class is excellent and Ron Rivest is very friendly and very approachable. If you have a chance I would recommend taking it (or watching it online). If you have a background in programming you can take this course.
Re: Ron Rivest's MIT Computer and Network Security
#7Is it expected that all software engineers are knowledgable in computer and network security or are this considered a different specialty? Reason I ask is that I'm working on a healthcare startup that deals with rather sensitive information but I don't have a background in security. I've actually learned a lot during the last year that I didn't know, mainly using Ubuntu Command Line, modifying web server configuratio…
Honestly, at least in larger companies, it is expected developers know how to write in what ever language the company works in and that's it. I don't even think that they have to know how to turn their own development machine on.
They don't understand simple security practices. They don't understand that they don't need root for their build process. They don't understand their code should not require root to run. They don't understand why there are access controls on anything.
If you learned any of that, even just the basics of system and network security practices, you would be head and shoulders above most other candidate anywhere for any development position. Nothing you do exists in a vacuum. Knowing a little bit of how the bigger picture relates to your specialty area is a benefit.
However if you don't really have time, don't worry about it. A good amount of healthcare software has horrible security at the software level so it's obviously not that important to them.