Best security practices in Linux - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T11:50:51Z http://stackoverflow.com/feeds/question/186789 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/186789/best-security-practices-in-linux 1 Best security practices in Linux Federico Ramponi 2008-10-09T11:15:37Z 2009-06-20T00:34:32Z <p>What security best-practices would you strongly recommend in maintaining a Linux server? (i.e. bring up a firewall, disable unnecessary services, beware of suid executables, and so on.)</p> <p>Also: is there a definitive reference on Selinux?</p> <p>EDIT: Yes, I'm planning to put the machine on the Internet, with at least openvpn, ssh and apache (at the moment, without dynamic content), and to provide shell access to some people.</p> http://stackoverflow.com/questions/186789/best-security-practices-in-linux/186815#186815 1 Answer by goldenmean for Best security practices in Linux goldenmean 2008-10-09T11:25:59Z 2008-10-09T11:25:59Z <p>1.) Enabling only necessary and relevant ports.</p> <p>2.) Regular scan of the network data in - out </p> <p>3.) Regular Scan of ip addresses accessing the server and verify if any unusual data activity associated with those ip address as found from logs/traces</p> <p>4.) If some some critical and confidential data and code, needs to be present on the server , may be it can be encrypted </p> <p>-AD</p> http://stackoverflow.com/questions/186789/best-security-practices-in-linux/186823#186823 3 Answer by Angry Albatross for Best security practices in Linux Angry Albatross 2008-10-09T11:27:17Z 2008-10-09T11:27:17Z <p>The short answer is, it depends. It depends on what you're using it for, which in turn influences how much effort you should put into securing the thing.</p> <p>There are some handy hints in the answers to this question: <a href="http://stackoverflow.com/questions/5078/personal-linux-web-server">http://stackoverflow.com/questions/5078/personal-linux-web-server</a></p> <p>If you're not throwing the box up onto the internet, some of those answers won't be relevant. if you're throwing it up onto the internet <em>and</em> hosting something even vaguely interesting on it, those answers are far too laissez-faire for you.</p> http://stackoverflow.com/questions/186789/best-security-practices-in-linux/186832#186832 4 Answer by Oli for Best security practices in Linux Oli 2008-10-09T11:31:53Z 2008-10-09T11:31:53Z <p>For SELinux I've found <a href="http://rads.stackoverflow.com/amzn/click/0131963694" rel="nofollow">SELinux By Example</a> to be really useful. It goes quite in-depth into keeping a sever as secure as possible and is pretty well written for such a wide topic.</p> <p>In general though:</p> <ul> <li>Disable anything you don't need. The wider the attack domain, the more likely you'll have a breach.</li> <li>Use an intrusion detection system (IDS) layer in front of any meaningful servers.</li> <li>Keep servers in a different security zone from your internal network.</li> <li>Deploy updates as fast as possible.</li> <li>Keep up to date on 0-day attacks for your remotely-accessible apps.</li> </ul> http://stackoverflow.com/questions/186789/best-security-practices-in-linux/186986#186986 3 Answer by tonys for Best security practices in Linux tonys 2008-10-09T12:11:18Z 2008-10-09T12:11:18Z <p>There's an NSA document "NSA Security Guide for RHEL5" available at:</p> <p><a href="http://www.nsa.gov/snac/os/redhat/rhel5-guide-i731.pdf" rel="nofollow">http://www.nsa.gov/snac/os/redhat/rhel5-guide-i731.pdf</a></p> <p>which is pretty helpful and at least systematic.</p> http://stackoverflow.com/questions/186789/best-security-practices-in-linux/187160#187160 1 Answer by edomaur for Best security practices in Linux edomaur 2008-10-09T13:05:12Z 2008-10-10T07:01:44Z <ul> <li>Limit the software to the only ones you really use</li> <li>Limit the rights of the users, through sudo, ACLs, kernel capabilities and SELinux/AppArmor/PaX policies</li> <li>Enforce use of hard passwords (no human understandable words, no birthday dates, etc.)</li> <li>Make chroot or vserver jails for the "dangerous" applications</li> <li>Install some IDS, e.g. Snort for the network traffic and OSSEC for the log analysis</li> <li>Monitor the server</li> <li>Encrypt your sensible datas (truecrypt is a gift of the gods)</li> <li>Patch your kernel with GRSecurity : this add a really nice level of paranoïa</li> </ul> <p>That's more or less what I would do.</p> <p>Edit : I added some ideas that I previously forgot to name ...</p> http://stackoverflow.com/questions/186789/best-security-practices-in-linux/187242#187242 0 Answer by Brian G for Best security practices in Linux Brian G 2008-10-09T13:29:48Z 2008-10-09T13:29:48Z <p>Don't use a DNS Server unless you have to . BIND has been a hotspot of security issues and exploits.</p> http://stackoverflow.com/questions/186789/best-security-practices-in-linux/1020619#1020619 0 Answer by rev for Best security practices in Linux rev 2009-06-20T00:34:32Z 2009-06-20T00:34:32Z <p>Goals: The hardest part is always defining your security goals. Everything else is relatively easy at that point.</p> <p>Probing/research: Consider the same approach that attackers would take, ie network reconnaissance (namp is pretty helpful for that). </p> <p>More information: SELinux by example is a helpful book, finding a good centralized source for SELinux information is still hard. I have a small list of helpful links that I find useful time to time <a href="http://delicious.com/reverand_13/selinux" rel="nofollow">http://delicious.com/reverand_13/selinux</a></p> <p>Helpful solution/tools: As with what most people will say less is more. For an out of the box stripped down box with SELinux I would suggest clip (<a href="http://oss.tresys.com/projects/clip" rel="nofollow">http://oss.tresys.com/projects/clip</a>). A friend of mine used it in an academic simulation in which the box was under direct attack from other participants. I recall the story concluded very favorably for said box.</p> <p>You will want to become familiar with writing SELinux policy. Modular policy can also become helpful. such tools as SLIDE and seedit (have not tried) may help you.</p>