LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Server (https://www.linuxquestions.org/questions/linux-server-73/)
-   -   modify sources.list to improve security? (https://www.linuxquestions.org/questions/linux-server-73/modify-sources-list-to-improve-security-883589/)

sneakyimp 05-30-2011 04:27 PM

modify sources.list to improve security?
 
I've got an amazon EC2 instance running Natty 11.04. I want to harden this server and make sure it's very secure as I ultimately will be handling sensitive data. I'm wondering what should be in /etc/apt/sources.list. Can anyone comment on these contents? Or, better yet, recommend a good secure sources.list file?

Code:

## Note, this file is written by cloud-init on first boot of an instance
## modifications made here will not survive a re-bundle.
## if you wish to make changes you can:
## a.) add 'apt_preserve_sources_list: true' to /etc/cloud/cloud.cfg
##    or do the same in user-data
## b.) add sources in /etc/apt/sources.list.d
## c.) make changes to template file /etc/cloud/templates/sources.list.tmpl
#

# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb http://us-west-1.ec2.archive.ubuntu.com/ubuntu/ natty main
deb-src http://us-west-1.ec2.archive.ubuntu.com/ubuntu/ natty main

## Major bug fix updates produced after the final release of the
## distribution.
deb http://us-west-1.ec2.archive.ubuntu.com/ubuntu/ natty-updates main
deb-src http://us-west-1.ec2.archive.ubuntu.com/ubuntu/ natty-updates main

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
deb http://us-west-1.ec2.archive.ubuntu.com/ubuntu/ natty universe
deb-src http://us-west-1.ec2.archive.ubuntu.com/ubuntu/ natty universe
deb http://us-west-1.ec2.archive.ubuntu.com/ubuntu/ natty-updates universe
deb-src http://us-west-1.ec2.archive.ubuntu.com/ubuntu/ natty-updates universe

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team, and may not be under a free licence. Please satisfy yourself as to
## your rights to use the software. Also, please note that software in
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
# deb http://us-west-1.ec2.archive.ubuntu.com/ubuntu/ natty multiverse
# deb-src http://us-west-1.ec2.archive.ubuntu.com/ubuntu/ natty multiverse
# deb http://us-west-1.ec2.archive.ubuntu.com/ubuntu/ natty-updates multiverse
# deb-src http://us-west-1.ec2.archive.ubuntu.com/ubuntu/ natty-updates multiverse

## Uncomment the following two lines to add software from the 'backports'
## repository.
## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
# deb http://us-west-1.ec2.archive.ubuntu.com/ubuntu/ natty-backports main restricted universe multiverse
# deb-src http://us-west-1.ec2.archive.ubuntu.com/ubuntu/ natty-backports main restricted universe multiverse

## Uncomment the following two lines to add software from Canonical's
## 'partner' repository.
## This software is not part of Ubuntu, but is offered by Canonical and the
## respective vendors as a service to Ubuntu users.
# deb http://archive.canonical.com/ubuntu natty partner
# deb-src http://archive.canonical.com/ubuntu natty partner

deb http://security.ubuntu.com/ubuntu natty-security main
deb-src http://security.ubuntu.com/ubuntu natty-security main
deb http://security.ubuntu.com/ubuntu natty-security universe
deb-src http://security.ubuntu.com/ubuntu natty-security universe
# deb http://security.ubuntu.com/ubuntu natty-security multiverse
# deb-src http://security.ubuntu.com/ubuntu natty-security multiverse


AlucardZero 05-30-2011 04:44 PM

Question doesn't really make sense.

You have the security repos enabled already and you don't have any third-party ones enabled.

I guess you could comment out the universe lines, but let's hope all the programs you want are in main and not universe nor multiverse.

sneakyimp 05-30-2011 05:02 PM

if one specifies 'universe' as my sources.list does, then that would include software that is "not officially supported" and which may contain either non-free software or copyrighted material. What concerns me most is that the universe repository appears to include packages developed by the world at large and this introduces the possibility that I may inadvertently install somebody's backdoor along with my various packages and their dependencies. Just because I reference only ubuntu servers doesn't guarantee security, does it?

On the other hand, ratcheting it down to just "main" might preclude software that I need for my LAMP server -- as you pointed out.

Just wondering what the common wisdom is when setting up a LAMP server to handle sensitive data.


All times are GMT -5. The time now is 02:20 PM.