sendmail: 127.0.0.1
This means that the local computer is the only IP that can send
email. Sendmail is dangerous because people
who send "spam" look for unix machines that accept mail
from anyone and send it anywhere....Don't help spammers!!
Test this service carefully before using it on a production machine.
ITC offers an update service which is a mirror of Red Hat's site. To use it login as root and do the following:
mkdir /export
mount -t nfs linuxload.itc.virginia.edu:/export/Fedora3 /export
or
mount -t nfs linuxload.itc.virginia.edu:/export/Fedora4 /export
cd /export/
According to SANS, Linux Administrators should be able to:
Below is a list of some of the more common UNIX log file names, their function, and what to look for in those files. Depending on how your
system is configured, you may or may not have the following log files.
The messages log will contain a wide variety of information. Look for anomalies in this file. Anything out of the ordinary should be
inspected. Also, look for events that occurred around the known time of the intrusion.
If the compromised system has a functioning ftp server, xferlog will contain log files for all of the ftp transfers. This may help you
discover what intruder tools have been uploaded to your system, as well as what information has been downloaded from your
system.
This file contains binary information for every user currently logged in. This file is only useful to determine who is currently logged in.
One way to access this data is the who command.
Every time a user successfully logs in, logs out, or your machine reboots, the wtmp file is modified. This is a binary file; thus, you
need to use a tool to obtain useful information from this file. One such tool is last. The output from last will contain a table which
associates user names with login times and the host name where the connection originated. Checking this file for suspicious
connections (e.g., from unauthorized hosts) may be useful in determining other hosts that may have been involved and finding what
accounts on your system may have been compromised.
Some versions of UNIX (RedHat Linux for example) log tcp wrapper messages to the secure log file. Every time a connection is
established with one of the services running out of inetd that uses tcp wrappers, a log message is appended to this log file. When
looking through this log file, look for anomalies such as services that were accessed that are not commonly used, or for connections
from unfamiliar hosts.
copied from
CERT