1998-12-26 05:19:42 +00:00
|
|
|
.\" Copyright (c) 1998, Matthew Dillon. Terms and conditions are those of
|
|
|
|
.\" the BSD Copyright as specified in the file "/usr/src/COPYRIGHT" in
|
|
|
|
.\" the source tree.
|
1998-12-20 20:12:17 +00:00
|
|
|
.\"
|
1999-08-28 00:22:10 +00:00
|
|
|
.\" $FreeBSD$
|
1998-12-20 20:12:17 +00:00
|
|
|
.\"
|
1999-09-18 18:21:38 +00:00
|
|
|
.Dd September 18, 1999
|
1998-12-20 20:12:17 +00:00
|
|
|
.Dt SECURITY 7
|
2001-07-10 15:31:11 +00:00
|
|
|
.Os
|
1998-12-20 20:12:17 +00:00
|
|
|
.Sh NAME
|
|
|
|
.Nm security
|
|
|
|
.Nd introduction to security under FreeBSD
|
|
|
|
.Sh DESCRIPTION
|
|
|
|
Security is a function that begins and ends with the system administrator.
|
|
|
|
While all
|
|
|
|
.Bx
|
1999-09-18 18:21:38 +00:00
|
|
|
multi-user systems have some inherent security, the job of building and
|
2002-02-18 00:20:12 +00:00
|
|
|
maintaining additional security mechanisms to keep users
|
1999-03-02 03:45:47 +00:00
|
|
|
.Sq honest
|
|
|
|
is probably
|
1998-12-25 23:39:01 +00:00
|
|
|
one of the single largest undertakings of the sysadmin. Machines are
|
1998-12-20 20:12:17 +00:00
|
|
|
only as secure as you make them, and security concerns are ever competing
|
2001-07-14 19:41:16 +00:00
|
|
|
with the human necessity for convenience.
|
1999-03-02 03:45:47 +00:00
|
|
|
.Ux
|
|
|
|
systems,
|
1998-12-25 23:39:01 +00:00
|
|
|
in general, are capable of running a huge number of simultaneous processes
|
1998-12-20 20:12:17 +00:00
|
|
|
and many of these processes operate as servers - meaning that external entities
|
2001-07-14 19:41:16 +00:00
|
|
|
can connect and talk to them. As yesterday's mini-computers and mainframes
|
1998-12-20 20:12:17 +00:00
|
|
|
become today's desktops, and as computers become networked and internetworked,
|
|
|
|
security becomes an ever bigger issue.
|
|
|
|
.Pp
|
1999-09-18 18:21:38 +00:00
|
|
|
Security is best implemented through a layered onion approach. In a nutshell,
|
|
|
|
what you want to do is to create as many layers of security as are convenient
|
|
|
|
and then carefully monitor the system for intrusions. You do not want to
|
2002-01-09 12:34:01 +00:00
|
|
|
overbuild your security or you will interfere with the detection side, and
|
2001-07-14 19:41:16 +00:00
|
|
|
detection is one of the single most important aspects of any security
|
1999-09-18 18:21:38 +00:00
|
|
|
mechanism. For example, it makes little sense to set the
|
2001-07-14 19:41:16 +00:00
|
|
|
.Pa schg
|
1999-09-18 18:21:38 +00:00
|
|
|
flags
|
2001-08-07 15:48:51 +00:00
|
|
|
(see
|
|
|
|
.Xr chflags 1 )
|
1999-09-18 18:21:38 +00:00
|
|
|
on every system binary because while this may temporarily protect the
|
|
|
|
binaries, it prevents a hacker who has broken in from making an
|
|
|
|
easily detectable change that may result in your security mechanisms not
|
|
|
|
detecting the hacker at all.
|
|
|
|
.Pp
|
|
|
|
System security also pertains to dealing with various forms of attack,
|
|
|
|
including attacks that attempt to crash or otherwise make a system unusable
|
|
|
|
but do not attempt to break root. Security concerns can be split up into
|
|
|
|
several categories:
|
1998-12-20 20:12:17 +00:00
|
|
|
.Bl -enum -offset indent
|
|
|
|
.It
|
|
|
|
Denial of service attacks
|
|
|
|
.It
|
|
|
|
User account compromises
|
|
|
|
.It
|
1998-12-25 23:39:01 +00:00
|
|
|
Root compromise through accessible servers
|
1998-12-20 20:12:17 +00:00
|
|
|
.It
|
1998-12-25 23:39:01 +00:00
|
|
|
Root compromise via user accounts
|
1999-09-18 18:21:38 +00:00
|
|
|
.It
|
|
|
|
Backdoor creation
|
1998-12-20 20:12:17 +00:00
|
|
|
.El
|
|
|
|
.Pp
|
|
|
|
A denial of service attack is an action that deprives the machine of needed
|
|
|
|
resources. Typically, D.O.S. attacks are brute-force mechanisms that attempt
|
|
|
|
to crash or otherwise make a machine unusable by overwhelming its servers or
|
|
|
|
network stack. Some D.O.S. attacks try to take advantages of bugs in the
|
|
|
|
networking stack to crash a machine with a single packet. The latter can
|
|
|
|
only be fixed by applying a bug fix to the kernel. Attacks on servers can
|
1999-09-18 18:21:38 +00:00
|
|
|
often be fixed by properly specifying options to limit the load the servers
|
2001-07-14 19:41:16 +00:00
|
|
|
incur on the system under adverse conditions. Brute-force network
|
|
|
|
attacks are harder to deal with. A spoofed-packet attack, for example, is
|
2002-01-09 12:34:01 +00:00
|
|
|
nearly impossible to stop short of cutting your system off from the Internet.
|
|
|
|
It may not be able to take your machine down, but it can fill up Internet
|
1999-09-18 18:21:38 +00:00
|
|
|
pipe.
|
1998-12-20 20:12:17 +00:00
|
|
|
.Pp
|
|
|
|
A user account compromise is even more common then a D.O.S. attack. Many
|
1998-12-25 23:39:01 +00:00
|
|
|
sysadmins still run standard telnetd, rlogind, rshd, and ftpd servers on their
|
1998-12-20 20:12:17 +00:00
|
|
|
machines. These servers, by default, do not operate over encrypted
|
|
|
|
connections. The result is that if you have any moderate-sized user base,
|
|
|
|
one or more of your users logging into your system from a remote location
|
2001-08-07 15:48:51 +00:00
|
|
|
(which is the most common and convenient way to login to a system)
|
1999-03-02 03:45:47 +00:00
|
|
|
will
|
1998-12-20 20:12:17 +00:00
|
|
|
have his or her password sniffed. The attentive system admin will analyze
|
1999-09-18 18:21:38 +00:00
|
|
|
his remote access logs looking for suspicious source addresses
|
1998-12-20 20:12:17 +00:00
|
|
|
even for successful logins.
|
|
|
|
.Pp
|
|
|
|
One must always assume that once an attacker has access to a user account,
|
|
|
|
the attacker can break root. However, the reality is that in a well secured
|
|
|
|
and maintained system, access to a user account does not necessarily give the
|
|
|
|
attacker access to root. The distinction is important because without access
|
|
|
|
to root the attacker cannot generally hide his tracks and may, at best, be
|
2001-11-24 19:47:12 +00:00
|
|
|
able to do nothing more than mess with the user's files or crash the machine.
|
1999-09-18 18:21:38 +00:00
|
|
|
User account compromises are very common because users tend not to take the
|
2002-01-09 12:34:01 +00:00
|
|
|
precautions that sysadmins take.
|
1998-12-20 20:12:17 +00:00
|
|
|
.Pp
|
2001-07-14 19:41:16 +00:00
|
|
|
System administrators must keep in mind that there are potentially many ways
|
|
|
|
to break root on a machine. The attacker may know the root password,
|
1999-09-18 18:21:38 +00:00
|
|
|
the attacker
|
1998-12-20 20:12:17 +00:00
|
|
|
may find a bug in a root-run server and be able to break root over a network
|
|
|
|
connection to that server, or the attacker may know of a bug in an suid-root
|
2001-07-14 19:41:16 +00:00
|
|
|
program that allows the attacker to break root once he has broken into a
|
1999-09-18 18:21:38 +00:00
|
|
|
user's account. If an attacker has found a way to break root on a machine,
|
2000-05-09 14:02:06 +00:00
|
|
|
the attacker may not have a need to install a backdoor.
|
1999-09-18 18:21:38 +00:00
|
|
|
Many of the root holes found and closed to date involve a considerable amount
|
|
|
|
of work by the hacker to cleanup after himself, so most hackers do install
|
2002-01-09 12:34:01 +00:00
|
|
|
backdoors. This gives you a convenient way to detect the hacker. Making
|
1999-09-18 18:21:38 +00:00
|
|
|
it impossible for a hacker to install a backdoor may actually be detrimental
|
|
|
|
to your security because it will not close off the hole the hacker found to
|
2001-06-24 01:34:38 +00:00
|
|
|
break in the first place.
|
1999-09-18 18:21:38 +00:00
|
|
|
.Pp
|
|
|
|
Security remedies should always be implemented with a multi-layered
|
1999-03-02 03:45:47 +00:00
|
|
|
.Sq onion peel
|
1998-12-20 20:12:17 +00:00
|
|
|
approach and can be categorized as follows:
|
|
|
|
.Bl -enum -offset indent
|
|
|
|
.It
|
|
|
|
Securing root and staff accounts
|
|
|
|
.It
|
|
|
|
Securing root - root-run servers and suid/sgid binaries
|
|
|
|
.It
|
|
|
|
Securing user accounts
|
|
|
|
.It
|
2001-07-14 19:41:16 +00:00
|
|
|
Securing the password file
|
1998-12-20 20:12:17 +00:00
|
|
|
.It
|
|
|
|
Securing the kernel core, raw devices, and filesystems
|
|
|
|
.It
|
1999-09-18 18:21:38 +00:00
|
|
|
Quick detection of inappropriate changes made to the system
|
1998-12-20 20:12:17 +00:00
|
|
|
.It
|
|
|
|
Paranoia
|
|
|
|
.El
|
|
|
|
.Sh SECURING THE ROOT ACCOUNT AND SECURING STAFF ACCOUNTS
|
|
|
|
Don't bother securing staff accounts if you haven't secured the root
|
|
|
|
account. Most systems have a password assigned to the root account. The
|
1999-03-02 03:45:47 +00:00
|
|
|
first thing you do is assume that the password is
|
|
|
|
.Sq always
|
1999-09-18 18:21:38 +00:00
|
|
|
compromised. This does not mean that you should remove the password. The
|
|
|
|
password is almost always necessary for console access to the machine.
|
|
|
|
What it does mean is that you should not make it possible to use the password
|
|
|
|
outside of the console or possibly even with a
|
|
|
|
.Xr su 1
|
|
|
|
command.
|
|
|
|
For example, make sure that your pty's are specified as being unsecure
|
2001-07-14 19:41:16 +00:00
|
|
|
in the
|
1999-03-02 03:45:47 +00:00
|
|
|
.Sq Pa /etc/ttys
|
1999-09-18 18:21:38 +00:00
|
|
|
file
|
|
|
|
so that direct root logins via telnet or rlogin are disallowed. If using
|
|
|
|
other login services such as sshd, make sure that direct root logins are
|
|
|
|
disabled there as well. Consider every access method - services such as
|
|
|
|
ftp often fall through the cracks. Direct root logins should only be allowed
|
|
|
|
via the system console.
|
1998-12-20 20:12:17 +00:00
|
|
|
.Pp
|
1998-12-22 19:02:51 +00:00
|
|
|
Of course, as a sysadmin you have to be able to get to root, so we open up
|
1998-12-20 20:12:17 +00:00
|
|
|
a few holes. But we make sure these holes require additional password
|
|
|
|
verification to operate. One way to make root accessible is to add appropriate
|
1999-03-02 03:45:47 +00:00
|
|
|
staff accounts to the wheel group
|
2001-08-07 15:48:51 +00:00
|
|
|
(in
|
|
|
|
.Pa /etc/group ) .
|
1999-03-02 03:45:47 +00:00
|
|
|
The staff members placed
|
2001-07-14 19:41:16 +00:00
|
|
|
in the wheel group are allowed to
|
1999-03-02 03:45:47 +00:00
|
|
|
.Sq su
|
|
|
|
to root. You should never give staff
|
2002-02-28 22:44:15 +00:00
|
|
|
members native wheel access by putting them in the wheel group in their
|
2001-07-14 19:41:16 +00:00
|
|
|
password entry. Staff accounts should be placed in a
|
1999-03-02 03:45:47 +00:00
|
|
|
.Sq staff
|
1999-09-18 18:21:38 +00:00
|
|
|
group, and then added to the wheel group via the
|
|
|
|
.Sq Pa /etc/group
|
|
|
|
file. Only those staff members who actually need to have root access
|
|
|
|
should be placed in the wheel group. It is also possible, when using an
|
|
|
|
authentication method such as kerberos, to use kerberos's
|
|
|
|
.Sq Pa .k5login
|
|
|
|
file in the root account to allow a
|
|
|
|
.Xr ksu 1
|
|
|
|
to root without having to place anyone at all in the wheel group. This
|
2001-07-14 19:41:16 +00:00
|
|
|
may be the better solution since the wheel mechanism still allows an
|
1999-09-18 18:21:38 +00:00
|
|
|
intruder to break root if the intruder has gotten hold of your password
|
2001-07-14 19:41:16 +00:00
|
|
|
file and can break into a staff account. While having the wheel mechanism
|
1999-09-18 18:21:38 +00:00
|
|
|
is better then having nothing at all, it isn't necessarily the safest
|
|
|
|
option.
|
1998-12-20 20:12:17 +00:00
|
|
|
.Pp
|
|
|
|
An indirect way to secure the root account is to secure your staff accounts
|
|
|
|
by using an alternative login access method and *'ing out the crypted password
|
1998-12-25 23:39:01 +00:00
|
|
|
for the staff accounts. This way an intruder may be able to steal the password
|
1998-12-20 20:12:17 +00:00
|
|
|
file but will not be able to break into any staff accounts (or, indirectly,
|
|
|
|
root, even if root has a crypted password associated with it). Staff members
|
2001-07-14 19:41:16 +00:00
|
|
|
get into their staff accounts through a secure login mechanism such as
|
1999-03-02 03:45:47 +00:00
|
|
|
.Xr kerberos 1
|
|
|
|
or
|
|
|
|
.Xr ssh 1
|
|
|
|
using a private/public
|
1998-12-25 23:39:01 +00:00
|
|
|
key pair. When you use something like kerberos you generally must secure
|
1998-12-20 20:12:17 +00:00
|
|
|
the machines which run the kerberos servers and your desktop workstation.
|
1998-12-25 23:39:01 +00:00
|
|
|
When you use a public/private key pair with ssh, you must generally secure
|
1999-03-02 03:45:47 +00:00
|
|
|
the machine you are logging in FROM
|
2001-08-07 15:48:51 +00:00
|
|
|
(typically your workstation),
|
1999-03-02 03:45:47 +00:00
|
|
|
but you can
|
2001-07-14 19:41:16 +00:00
|
|
|
also add an additional layer of protection to the key pair by password
|
1999-03-02 03:45:47 +00:00
|
|
|
protecting the keypair when you create it with
|
|
|
|
.Xr ssh-keygen 1 .
|
|
|
|
Being able
|
1998-12-25 23:39:01 +00:00
|
|
|
to *-out the passwords for staff accounts also guarantees that staff members
|
1998-12-20 20:12:17 +00:00
|
|
|
can only login through secure access methods that you have setup. You can
|
|
|
|
thus force all staff members to use secure, encrypted connections for
|
1998-12-25 23:39:01 +00:00
|
|
|
all their sessions which closes an important hole used by many intruders: That
|
1998-12-20 20:12:17 +00:00
|
|
|
of sniffing the network from an unrelated, less secure machine.
|
|
|
|
.Pp
|
|
|
|
The more indirect security mechanisms also assume that you are logging in
|
1999-03-02 03:45:47 +00:00
|
|
|
from a more restrictive server to a less restrictive server. For example,
|
1998-12-20 20:12:17 +00:00
|
|
|
if your main box is running all sorts of servers, your workstation shouldn't
|
2001-07-14 19:41:16 +00:00
|
|
|
be running any. In order for your workstation to be reasonably secure
|
|
|
|
you should run as few servers as possible, up to and including no servers
|
1999-03-02 03:45:47 +00:00
|
|
|
at all, and you should run a password-protected screen blanker.
|
|
|
|
Of course, given physical access to
|
1998-12-20 20:12:17 +00:00
|
|
|
a workstation an attacker can break any sort of security you put on it.
|
|
|
|
This is definitely a problem that you should consider but you should also
|
1998-12-25 23:39:01 +00:00
|
|
|
consider the fact that the vast majority of break-ins occur remotely, over
|
1998-12-22 19:02:51 +00:00
|
|
|
a network, from people who do not have physical access to your workstation or
|
1998-12-20 20:12:17 +00:00
|
|
|
servers.
|
|
|
|
.Pp
|
|
|
|
Using something like kerberos also gives you the ability to disable or
|
|
|
|
change the password for a staff account in one place and have it immediately
|
|
|
|
effect all the machine the staff member may have an account on. If a staff
|
2001-07-14 19:41:16 +00:00
|
|
|
member's account gets compromised, the ability to instantly change his
|
1998-12-20 20:12:17 +00:00
|
|
|
password on all machines should not be underrated. With discrete passwords,
|
2001-07-14 19:41:16 +00:00
|
|
|
changing a password on N machines can be a mess. You can also impose
|
1998-12-20 20:12:17 +00:00
|
|
|
re-passwording restrictions with kerberos: not only can a kerberos ticket
|
|
|
|
be made to timeout after a while, but the kerberos system can require that
|
1999-03-02 03:45:47 +00:00
|
|
|
the user choose a new password after a certain period of time
|
2001-08-07 15:48:51 +00:00
|
|
|
(say, once a month).
|
1998-12-20 20:12:17 +00:00
|
|
|
.Sh SECURING ROOT - ROOT-RUN SERVERS AND SUID/SGID BINARIES
|
1998-12-22 19:02:51 +00:00
|
|
|
The prudent sysadmin only runs the servers he needs to, no more, no less. Be
|
1998-12-20 20:12:17 +00:00
|
|
|
aware that third party servers are often the most bug-prone. For example,
|
|
|
|
running an old version of imapd or popper is like giving a universal root
|
|
|
|
ticket out to the entire world. Never run a server that you have not checked
|
|
|
|
out carefully. Many servers do not need to be run as root. For example,
|
1999-03-02 03:45:47 +00:00
|
|
|
the ntalk, comsat, and finger daemons can be run in special user
|
|
|
|
.Sq sandboxes .
|
1998-12-25 23:39:01 +00:00
|
|
|
A sandbox isn't perfect unless you go to a large amount of trouble, but the
|
1998-12-20 20:12:17 +00:00
|
|
|
onion approach to security still stands: If someone is able to break in
|
|
|
|
through a server running in a sandbox, they still have to break out of the
|
|
|
|
sandbox. The more layers the attacker must break through, the lower the
|
|
|
|
likelihood of his success. Root holes have historically been found in
|
|
|
|
virtually every server ever run as root, including basic system servers.
|
|
|
|
If you are running a machine through which people only login via sshd and
|
|
|
|
never login via telnetd or rshd or rlogind, then turn off those services!
|
|
|
|
.Pp
|
1999-09-04 14:55:22 +00:00
|
|
|
.Fx
|
1999-03-02 03:45:47 +00:00
|
|
|
now defaults to running ntalkd, comsat, and finger in a sandbox.
|
1998-12-20 20:12:17 +00:00
|
|
|
Another program which may be a candidate for running in a sandbox is
|
1999-03-02 03:45:47 +00:00
|
|
|
.Xr named 8 .
|
|
|
|
The default rc.conf includes the arguments necessary to run
|
1998-12-20 20:12:17 +00:00
|
|
|
named in a sandbox in a commented-out form. Depending on whether you
|
|
|
|
are installing a new system or upgrading an existing system, the special
|
|
|
|
user accounts used by these sandboxes may not be installed. The prudent
|
1998-12-22 19:02:51 +00:00
|
|
|
sysadmin would research and implement sandboxes for servers whenever possible.
|
1998-12-20 20:12:17 +00:00
|
|
|
.Pp
|
|
|
|
There are a number of other servers that typically do not run in sandboxes:
|
|
|
|
sendmail, popper, imapd, ftpd, and others. There are alternatives to
|
|
|
|
some of these, but installing them may require more work then you are willing
|
1999-03-02 03:45:47 +00:00
|
|
|
to put
|
2001-08-07 15:48:51 +00:00
|
|
|
(the convenience factor strikes again).
|
1999-03-02 03:45:47 +00:00
|
|
|
You may have to run these
|
1998-12-25 23:39:01 +00:00
|
|
|
servers as root and rely on other mechanisms to detect break-ins that might
|
1998-12-20 20:12:17 +00:00
|
|
|
occur through them.
|
|
|
|
.Pp
|
|
|
|
The other big potential root hole in a system are the suid-root and sgid
|
|
|
|
binaries installed on the system. Most of these binaries, such as rlogin,
|
1999-03-02 03:45:47 +00:00
|
|
|
reside in
|
|
|
|
.Pa /bin ,
|
|
|
|
.Pa /sbin ,
|
|
|
|
.Pa /usr/bin ,
|
|
|
|
or
|
|
|
|
.Pa /usr/sbin .
|
|
|
|
While nothing is 100% safe,
|
1998-12-20 20:12:17 +00:00
|
|
|
the system-default suid and sgid binaries can be considered reasonably safe.
|
1998-12-25 23:39:01 +00:00
|
|
|
Still, root holes are occasionally found in these binaries. A root hole
|
1999-03-02 03:45:47 +00:00
|
|
|
was found in Xlib in 1998 that made xterm
|
2001-08-07 15:48:51 +00:00
|
|
|
(which is typically suid)
|
1999-03-02 03:45:47 +00:00
|
|
|
vulnerable.
|
1998-12-22 19:02:51 +00:00
|
|
|
It is better to be safe then sorry and the prudent sysadmin will restrict suid
|
1998-12-20 20:12:17 +00:00
|
|
|
binaries that only staff should run to a special group that only staff can
|
1999-03-02 03:45:47 +00:00
|
|
|
access, and get rid of
|
2001-08-07 15:48:51 +00:00
|
|
|
.Pq Li "chmod 000"
|
2001-07-14 19:41:16 +00:00
|
|
|
any suid binaries that nobody uses. A
|
1998-12-20 20:12:17 +00:00
|
|
|
server with no display generally does not need an xterm binary. Sgid binaries
|
1998-12-25 23:39:01 +00:00
|
|
|
can be almost as dangerous. If an intruder can break an sgid-kmem binary the
|
1999-03-02 03:45:47 +00:00
|
|
|
intruder might be able to read
|
|
|
|
.Pa /dev/kmem
|
|
|
|
and thus read the crypted password
|
1999-09-18 18:21:38 +00:00
|
|
|
file, potentially compromising any passworded account. Alternatively an
|
|
|
|
intruder who breaks group kmem can monitor keystrokes sent through pty's,
|
|
|
|
including pty's used by users who login through secure methods. An intruder
|
2001-07-14 19:41:16 +00:00
|
|
|
that breaks the tty group can write to almost any user's tty. If a user
|
1999-09-18 18:21:38 +00:00
|
|
|
is running a terminal
|
2001-07-14 19:41:16 +00:00
|
|
|
program or emulator with a keyboard-simulation feature, the intruder can
|
|
|
|
potentially
|
1998-12-20 20:12:17 +00:00
|
|
|
generate a data stream that causes the user's terminal to echo a command, which
|
|
|
|
is then run as that user.
|
|
|
|
.Sh SECURING USER ACCOUNTS
|
|
|
|
User accounts are usually the most difficult to secure. While you can impose
|
1998-12-25 23:39:01 +00:00
|
|
|
Draconian access restrictions on your staff and *-out their passwords, you
|
1998-12-20 20:12:17 +00:00
|
|
|
may not be able to do so with any general user accounts you might have. If
|
|
|
|
you do have sufficient control then you may win out and be able to secure the
|
|
|
|
user accounts properly. If not, you simply have to be more vigilant in your
|
|
|
|
monitoring of those accounts. Use of ssh and kerberos for user accounts is
|
2001-07-14 19:41:16 +00:00
|
|
|
more problematic due to the extra administration and technical support
|
1999-09-18 18:21:38 +00:00
|
|
|
required, but still a very good solution compared to a crypted password
|
|
|
|
file.
|
1998-12-20 20:12:17 +00:00
|
|
|
.Sh SECURING THE PASSWORD FILE
|
2001-07-14 19:41:16 +00:00
|
|
|
The only sure fire way is to *-out as many passwords as you can and
|
|
|
|
use ssh or kerberos for access to those accounts. Even though the
|
1999-03-02 03:45:47 +00:00
|
|
|
crypted password file
|
|
|
|
.Pq Pa /etc/spwd.db
|
|
|
|
can only be read by root, it may
|
2001-07-14 19:41:16 +00:00
|
|
|
be possible for an intruder to obtain read access to that file even if the
|
1998-12-20 20:12:17 +00:00
|
|
|
attacker cannot obtain root-write access.
|
|
|
|
.Pp
|
2001-07-14 19:41:16 +00:00
|
|
|
Your security scripts should always check for and report changes to
|
1999-03-02 03:45:47 +00:00
|
|
|
the password file
|
2001-08-07 15:48:51 +00:00
|
|
|
(see
|
1999-03-02 03:45:47 +00:00
|
|
|
.Sq Checking file integrity
|
2001-08-07 15:48:51 +00:00
|
|
|
below).
|
1998-12-20 20:12:17 +00:00
|
|
|
.Sh SECURING THE KERNEL CORE, RAW DEVICES, AND FILESYSTEMS
|
|
|
|
If an attacker breaks root he can do just about anything, but there
|
|
|
|
are certain conveniences. For example, most modern kernels have a
|
1999-03-02 03:45:47 +00:00
|
|
|
packet sniffing device driver built in. Under
|
1999-09-04 14:55:22 +00:00
|
|
|
.Fx
|
1999-03-02 03:45:47 +00:00
|
|
|
it is called
|
|
|
|
the
|
|
|
|
.Sq bpf
|
|
|
|
device. An intruder will commonly attempt to run a packet sniffer
|
2001-07-14 19:41:16 +00:00
|
|
|
on a compromised machine. You do not need to give the intruder the
|
1998-12-20 20:12:17 +00:00
|
|
|
capability and most systems should not have the bpf device compiled in.
|
1999-03-02 03:45:47 +00:00
|
|
|
.Pp
|
|
|
|
But even if you turn off the bpf device,
|
|
|
|
you still have
|
|
|
|
.Pa /dev/mem
|
|
|
|
and
|
|
|
|
.Pa /dev/kmem
|
|
|
|
to worry about. For that matter,
|
1999-09-18 18:21:38 +00:00
|
|
|
the intruder can still write to raw disk devices.
|
|
|
|
Also, there is another kernel feature called the module loader,
|
1999-03-02 03:45:47 +00:00
|
|
|
.Xr kldload 8 .
|
2001-07-14 19:41:16 +00:00
|
|
|
An enterprising intruder can use a KLD module to install
|
1999-03-02 03:45:47 +00:00
|
|
|
his own bpf device or other sniffing device on a running kernel.
|
|
|
|
To avoid these problems you have to run
|
|
|
|
the kernel at a higher secure level, at least securelevel 1. The securelevel
|
1998-12-20 20:12:17 +00:00
|
|
|
can be set with a sysctl on the kern.securelevel variable. Once you have
|
|
|
|
set the securelevel to 1, write access to raw devices will be denied and
|
1999-03-02 03:45:47 +00:00
|
|
|
special chflags flags, such as
|
|
|
|
.Sq schg ,
|
|
|
|
will be enforced. You must also ensure
|
|
|
|
that the
|
|
|
|
.Sq schg
|
|
|
|
flag is set on critical startup binaries, directories, and
|
1998-12-20 20:12:17 +00:00
|
|
|
script files - everything that gets run up to the point where the securelevel
|
|
|
|
is set. This might be overdoing it, and upgrading the system is much more
|
|
|
|
difficult when you operate at a higher secure level. You may compromise and
|
|
|
|
run the system at a higher secure level but not set the schg flag for every
|
1999-09-18 18:21:38 +00:00
|
|
|
system file and directory under the sun. Another possibility is to simply
|
|
|
|
mount / and /usr read-only. It should be noted that being too draconian in
|
|
|
|
what you attempt to protect may prevent the all-important detection of an
|
|
|
|
intrusion.
|
1998-12-20 20:12:17 +00:00
|
|
|
.Sh CHECKING FILE INTEGRITY: BINARIES, CONFIG FILES, ETC
|
|
|
|
When it comes right down to it, you can only protect your core system
|
|
|
|
configuration and control files so much before the convenience factor
|
1999-09-18 18:21:38 +00:00
|
|
|
rears its ugly head. For example, using chflags to set the schg bit
|
|
|
|
on most of the files in / and /usr is probably counterproductive because
|
|
|
|
while it may protect the files, it also closes a detection window. The
|
|
|
|
last layer of your security onion is perhaps the most important - detection.
|
|
|
|
The rest of your security is pretty much useless (or, worse, presents you with
|
|
|
|
a false sense of safety) if you cannot detect potential incursions. Half
|
|
|
|
the job of the onion is to slow down the attacker rather then stop him
|
|
|
|
in order to give the detection side of the equation a chance to catch him in
|
|
|
|
the act.
|
|
|
|
.Pp
|
|
|
|
The best way to detect an incursion is to look for modified, missing, or
|
|
|
|
unexpected files. The best
|
|
|
|
way to look for modified files is from another (often centralized)
|
|
|
|
limited-access system.
|
2001-07-14 19:41:16 +00:00
|
|
|
Writing your security scripts on the extra-secure limited-access system
|
1999-09-18 18:21:38 +00:00
|
|
|
makes them mostly invisible to potential hackers, and this is important.
|
|
|
|
In order to take maximum advantage you generally have to give the
|
|
|
|
limited-access box significant access to the other machines in the business,
|
|
|
|
usually either by doing a read-only NFS export of the other machines to the
|
|
|
|
limited-access box, or by setting up ssh keypairs to allow the limit-access
|
|
|
|
box to ssh to the other machines. Except for its network traffic, NFS is
|
|
|
|
the least visible method - allowing you to monitor the filesystems on each
|
|
|
|
client box virtually undetected. If your
|
|
|
|
limited-access server is connected to the client boxes through a switch,
|
|
|
|
the NFS method is often the better choice. If your limited-access server
|
|
|
|
is connected to the client boxes through a hub or through several layers
|
|
|
|
of routing, the NFS method may be too insecure (network-wise) and using ssh
|
|
|
|
may be the better choice even with the audit-trail tracks that ssh lays.
|
|
|
|
.Pp
|
|
|
|
Once you give a limit-access box at least read access to the client systems
|
2001-07-14 19:41:16 +00:00
|
|
|
it is supposed to monitor, you must write scripts to do the actual
|
1999-09-18 18:21:38 +00:00
|
|
|
monitoring. Given an NFS mount, you can write scripts out of simple system
|
|
|
|
utilities such as
|
|
|
|
.Xr find 1
|
|
|
|
and
|
|
|
|
.Xr md5 1
|
2001-07-14 19:41:16 +00:00
|
|
|
It is best to physically md5 the client-box files boxes at least once a
|
1999-09-19 05:30:12 +00:00
|
|
|
day, and to test control files such as those found in
|
|
|
|
.Pa /etc
|
|
|
|
and
|
|
|
|
.Pa /usr/local/etc
|
1999-09-18 18:21:38 +00:00
|
|
|
even more often. When mismatches are found relative to the base md5
|
|
|
|
information the limited-access machine knows is valid, it should scream at
|
|
|
|
a sysadmin to go check it out. A good security script will also check for
|
|
|
|
inappropriate suid binaries and for new or deleted files on system partitions
|
|
|
|
such as
|
|
|
|
.Pa /
|
1999-03-02 03:45:47 +00:00
|
|
|
and
|
|
|
|
.Pa /usr
|
1998-12-20 20:12:17 +00:00
|
|
|
.Pp
|
1999-09-18 18:21:38 +00:00
|
|
|
When using ssh rather then NFS, writing the security script is much more
|
|
|
|
difficult. You essentially have to
|
|
|
|
.Pa scp
|
|
|
|
the scripts to the client box in order to run them, making them visible, and
|
|
|
|
for safety you also need to scp the binaries (such as find) that those scripts
|
|
|
|
use. The ssh daemon on the client box may already be compromised. All in all,
|
|
|
|
using ssh may be necessary when running over unsecure links, but it's also a
|
|
|
|
lot harder to deal with.
|
1998-12-20 20:12:17 +00:00
|
|
|
.Pp
|
|
|
|
A good security script will also check for changes to user and staff members
|
1999-09-19 05:30:12 +00:00
|
|
|
access configuration files:
|
|
|
|
.Pa .rhosts ,
|
|
|
|
.Pa .shosts ,
|
2001-07-14 19:41:16 +00:00
|
|
|
.Pa .ssh/authorized_keys
|
1999-09-19 05:30:12 +00:00
|
|
|
and so forth... files that might fall outside the purview of the MD5 check.
|
1998-12-20 20:12:17 +00:00
|
|
|
.Pp
|
1999-09-18 18:21:38 +00:00
|
|
|
If you have a huge amount of user disk space it may take too long to run
|
|
|
|
through every file on those partitions. In this case, setting mount
|
|
|
|
flags to disallow suid binaries and devices on those partitions is a good
|
|
|
|
idea. The
|
|
|
|
.Sq nodev
|
|
|
|
and
|
1999-03-02 03:45:47 +00:00
|
|
|
.Sq nosuid
|
1999-09-18 18:21:38 +00:00
|
|
|
options
|
2001-08-07 15:48:51 +00:00
|
|
|
(see
|
|
|
|
.Xr mount 8 )
|
2001-07-14 19:41:16 +00:00
|
|
|
are what you want to look into. I would scan them anyway at least once a
|
1999-09-18 18:21:38 +00:00
|
|
|
week, since the object of this layer is to detect a break-in whether or
|
|
|
|
not the breakin is effective.
|
1998-12-20 20:12:17 +00:00
|
|
|
.Pp
|
1999-03-02 03:45:47 +00:00
|
|
|
Process accounting
|
2001-08-07 15:48:51 +00:00
|
|
|
(see
|
|
|
|
.Xr accton 8 )
|
1999-03-02 03:45:47 +00:00
|
|
|
is a relatively low-overhead feature of
|
1998-12-25 23:39:01 +00:00
|
|
|
the operating system which I recommend using as a post-break-in evaluation
|
2001-07-14 19:41:16 +00:00
|
|
|
mechanism. It is especially useful in tracking down how an intruder has
|
1999-09-18 18:21:38 +00:00
|
|
|
actually broken into a system, assuming the file is still intact after
|
1998-12-25 23:39:01 +00:00
|
|
|
the break-in occurs.
|
1998-12-20 20:12:17 +00:00
|
|
|
.Pp
|
|
|
|
Finally, security scripts should process the log files and the logs themselves
|
1999-09-18 18:21:38 +00:00
|
|
|
should be generated in as secure a manner as possible - remote syslog can be
|
1998-12-25 23:39:01 +00:00
|
|
|
very useful. An intruder tries to cover his tracks, and log files are critical
|
2001-07-14 19:41:16 +00:00
|
|
|
to the sysadmin trying to track down the time and method of the initial
|
1999-09-18 18:21:38 +00:00
|
|
|
break-in. One way to keep a permanent record of the log files is to run
|
|
|
|
the system console to a serial port and collect the information on a
|
|
|
|
continuing basis through a secure machine monitoring the consoles.
|
1998-12-20 20:12:17 +00:00
|
|
|
.Sh PARANOIA
|
1998-12-22 19:02:51 +00:00
|
|
|
A little paranoia never hurts. As a rule, a sysadmin can add any number
|
2001-07-14 19:41:16 +00:00
|
|
|
of security features as long as they do not effect convenience, and
|
1998-12-20 20:12:17 +00:00
|
|
|
can add security features that do effect convenience with some added
|
1999-09-18 18:21:38 +00:00
|
|
|
thought. Even more importantly, a security administrator should mix it up
|
|
|
|
a bit - if you use recommendations such as those given by this manual
|
|
|
|
page verbatim, you give away your methodologies to the prospective
|
|
|
|
hacker who also has access to this manual page.
|
1998-12-20 20:12:17 +00:00
|
|
|
.Sh SPECIAL SECTION ON D.O.S. ATTACKS
|
1998-12-25 23:39:01 +00:00
|
|
|
This section covers Denial of Service attacks. A DOS attack is typically
|
1998-12-20 20:12:17 +00:00
|
|
|
a packet attack. While there isn't much you can do about modern spoofed
|
|
|
|
packet attacks that saturate your network, you can generally limit the damage
|
2001-07-14 19:41:16 +00:00
|
|
|
by ensuring that the attacks cannot take down your servers.
|
1998-12-20 20:12:17 +00:00
|
|
|
.Bl -enum -offset indent
|
|
|
|
.It
|
|
|
|
Limiting server forks
|
|
|
|
.It
|
|
|
|
Limiting springboard attacks (ICMP response attacks, ping broadcast, etc...)
|
|
|
|
.It
|
|
|
|
Kernel Route Cache
|
|
|
|
.El
|
|
|
|
.Pp
|
|
|
|
A common DOS attack is against a forking server that attempts to cause the
|
1998-12-25 23:39:01 +00:00
|
|
|
server to eat processes, file descriptors, and memory until the machine
|
1999-03-02 03:45:47 +00:00
|
|
|
dies. Inetd
|
2001-08-07 15:48:51 +00:00
|
|
|
(see
|
|
|
|
.Xr inetd 8 )
|
1999-03-02 03:45:47 +00:00
|
|
|
has several options to limit this sort of attack.
|
1998-12-20 20:12:17 +00:00
|
|
|
It should be noted that while it is possible to prevent a machine from going
|
2001-07-14 19:41:16 +00:00
|
|
|
down it is not generally possible to prevent a service from being disrupted
|
1998-12-20 20:12:17 +00:00
|
|
|
by the attack. Read the inetd manual page carefully and pay specific attention
|
1999-03-02 03:45:47 +00:00
|
|
|
to the
|
|
|
|
.Fl c ,
|
|
|
|
.Fl C ,
|
|
|
|
and
|
|
|
|
.Fl R
|
|
|
|
options. Note that spoofed-IP attacks will circumvent
|
|
|
|
the
|
|
|
|
.Fl C
|
|
|
|
option to inetd, so typically a combination of options must be used.
|
2001-07-14 19:41:16 +00:00
|
|
|
Some standalone servers have self-fork-limitation parameters.
|
1998-12-20 20:12:17 +00:00
|
|
|
.Pp
|
2001-07-14 19:41:16 +00:00
|
|
|
Sendmail has its
|
1999-03-02 03:45:47 +00:00
|
|
|
.Fl OMaxDaemonChildren
|
|
|
|
option which tends to work much
|
1999-03-02 03:55:34 +00:00
|
|
|
better than trying to use sendmail's load limiting options due to the
|
1999-03-02 03:45:47 +00:00
|
|
|
load lag. You should specify a
|
|
|
|
.Cm MaxDaemonChildren
|
|
|
|
parameter when you start
|
1998-12-20 20:12:17 +00:00
|
|
|
sendmail high enough to handle your expected load but no so high that the
|
2001-07-14 19:41:16 +00:00
|
|
|
computer cannot handle that number of sendmails without falling on its face.
|
|
|
|
It is also prudent to run sendmail in queued mode
|
1999-03-02 03:45:47 +00:00
|
|
|
.Pq Fl ODeliveryMode=queued
|
2001-07-14 19:41:16 +00:00
|
|
|
and to run the daemon
|
1999-03-02 03:45:47 +00:00
|
|
|
.Pq Cm sendmail -bd
|
|
|
|
separate from the queue-runs
|
|
|
|
.Pq Cm sendmail -q15m .
|
|
|
|
If you still want realtime delivery you can run the queue
|
|
|
|
at a much lower interval, such as
|
|
|
|
.Fl q1m ,
|
|
|
|
but be sure to specify a reasonable
|
|
|
|
.Cm MaxDaemonChildren
|
|
|
|
option for that sendmail to prevent cascade failures.
|
1998-12-20 20:12:17 +00:00
|
|
|
.Pp
|
|
|
|
Syslogd can be attacked directly and it is strongly recommended that you use
|
2001-07-14 19:41:16 +00:00
|
|
|
the
|
1999-03-02 03:45:47 +00:00
|
|
|
.Fl s
|
|
|
|
option whenever possible, and the
|
|
|
|
.Fl a
|
|
|
|
option otherwise.
|
1998-12-20 20:12:17 +00:00
|
|
|
.Pp
|
|
|
|
You should also be fairly careful
|
2001-07-14 19:41:16 +00:00
|
|
|
with connect-back services such as tcpwrapper's reverse-identd, which can
|
1998-12-20 20:12:17 +00:00
|
|
|
be attacked directly. You generally do not want to use the reverse-ident
|
|
|
|
feature of tcpwrappers for this reason.
|
|
|
|
.Pp
|
|
|
|
It is a very good idea to protect internal services from external access
|
|
|
|
by firewalling them off at your border routers. The idea here is to prevent
|
2001-07-14 19:41:16 +00:00
|
|
|
saturation attacks from outside your LAN, not so much to protect internal
|
1999-03-15 15:43:10 +00:00
|
|
|
services from network-based root compromise. Always configure an exclusive
|
2001-08-10 13:45:36 +00:00
|
|
|
firewall, i.e.\&
|
1999-03-02 03:45:47 +00:00
|
|
|
.So
|
|
|
|
firewall everything *except* ports A, B, C, D, and M-Z
|
|
|
|
.Sc .
|
|
|
|
This
|
1998-12-20 20:12:17 +00:00
|
|
|
way you can firewall off all of your low ports except for certain specific
|
2001-07-14 19:41:16 +00:00
|
|
|
services such as named
|
2001-08-07 15:48:51 +00:00
|
|
|
(if you are primary for a zone),
|
1999-03-02 03:45:47 +00:00
|
|
|
ntalkd, sendmail,
|
1998-12-20 20:12:17 +00:00
|
|
|
and other internet-accessible services.
|
|
|
|
If you try to configure the firewall the other
|
|
|
|
way - as an inclusive or permissive firewall, there is a good chance that you
|
2001-07-14 19:41:16 +00:00
|
|
|
will forget to
|
1999-03-02 03:45:47 +00:00
|
|
|
.Sq close
|
|
|
|
a couple of services or that you will add a new internal
|
2001-07-14 19:41:16 +00:00
|
|
|
service and forget to update the firewall. You can still open up the
|
1998-12-20 20:12:17 +00:00
|
|
|
high-numbered port range on the firewall to allow permissive-like operation
|
1999-03-02 03:45:47 +00:00
|
|
|
without compromising your low ports. Also take note that
|
1999-09-04 14:55:22 +00:00
|
|
|
.Fx
|
1999-03-02 03:45:47 +00:00
|
|
|
allows you to
|
1998-12-20 20:12:17 +00:00
|
|
|
control the range of port numbers used for dynamic binding via the various
|
1999-03-02 03:45:47 +00:00
|
|
|
net.inet.ip.portrange sysctl's
|
2001-08-07 15:48:51 +00:00
|
|
|
.Pq Li "sysctl -a | fgrep portrange" ,
|
1999-03-02 03:45:47 +00:00
|
|
|
which can also
|
1998-12-20 20:12:17 +00:00
|
|
|
ease the complexity of your firewall's configuration. I usually use a normal
|
|
|
|
first/last range of 4000 to 5000, and a hiport range of 49152 to 65535, then
|
1999-03-02 03:45:47 +00:00
|
|
|
block everything under 4000 off in my firewall
|
2001-08-07 15:48:51 +00:00
|
|
|
(except for certain specific
|
|
|
|
internet-accessible ports, of course).
|
1998-12-20 20:12:17 +00:00
|
|
|
.Pp
|
|
|
|
Another common DOS attack is called a springboard attack - to attack a server
|
|
|
|
in a manner that causes the server to generate responses which then overload
|
|
|
|
the server, the local network, or some other machine. The most common attack
|
1999-03-02 03:45:47 +00:00
|
|
|
of this nature is the ICMP PING BROADCAST attack. The attacker spoofs ping
|
1998-12-20 20:12:17 +00:00
|
|
|
packets sent to your LAN's broadcast address with the source IP address set
|
|
|
|
to the actual machine they wish to attack. If your border routers are not
|
|
|
|
configured to stomp on ping's to broadcast addresses, your LAN winds up
|
|
|
|
generating sufficient responses to the spoofed source address to saturate the
|
|
|
|
victim, especially when the attacker uses the same trick on several dozen
|
|
|
|
broadcast addresses over several dozen different networks at once. Broadcast
|
|
|
|
attacks of over a hundred and twenty megabits have been measured. A second
|
|
|
|
common springboard attack is against the ICMP error reporting system. By
|
2001-07-14 19:41:16 +00:00
|
|
|
constructing packets that generate ICMP error responses, an attacker can
|
|
|
|
saturate a server's incoming network and cause the server to saturate its
|
1998-12-20 20:12:17 +00:00
|
|
|
outgoing network with ICMP responses. This type of attack can also crash the
|
|
|
|
server by running it out of mbuf's, especially if the server cannot drain the
|
1999-03-02 03:45:47 +00:00
|
|
|
ICMP responses it generates fast enough. The
|
1999-09-04 14:55:22 +00:00
|
|
|
.Fx
|
1999-03-02 03:45:47 +00:00
|
|
|
kernel has a new kernel
|
2001-07-14 19:41:16 +00:00
|
|
|
compile option called ICMP_BANDLIM which limits the effectiveness of these
|
1998-12-20 20:12:17 +00:00
|
|
|
sorts of attacks. The last major class of springboard attacks is related to
|
2001-07-14 19:41:16 +00:00
|
|
|
certain internal inetd services such as the udp echo service. An attacker
|
1998-12-20 20:12:17 +00:00
|
|
|
simply spoofs a UDP packet with the source address being server A's echo port,
|
|
|
|
and the destination address being server B's echo port, where server A and B
|
|
|
|
are both on your LAN. The two servers then bounce this one packet back and
|
|
|
|
forth between each other. The attacker can overload both servers and their
|
|
|
|
LANs simply by injecting a few packets in this manner. Similar problems
|
1998-12-22 19:02:51 +00:00
|
|
|
exist with the internal chargen port. A competent sysadmin will turn off all
|
1998-12-20 20:12:17 +00:00
|
|
|
of these inetd-internal test services.
|
|
|
|
.Pp
|
|
|
|
Spoofed packet attacks may also be used to overload the kernel route cache.
|
2001-07-14 19:41:16 +00:00
|
|
|
Refer to the net.inet.ip.rtexpire, rtminexpire, and rtmaxcache sysctl
|
1998-12-20 20:12:17 +00:00
|
|
|
parameters. A spoofed packet attack that uses a random source IP will cause
|
|
|
|
the kernel to generate a temporary cached route in the route table, viewable
|
1999-03-02 03:45:47 +00:00
|
|
|
with
|
|
|
|
.Sq netstat -rna \&| fgrep W3 .
|
|
|
|
These routes typically timeout in 1600
|
1998-12-20 20:12:17 +00:00
|
|
|
seconds or so. If the kernel detects that the cached route table has gotten
|
|
|
|
too big it will dynamically reduce the rtexpire but will never decrease it to
|
|
|
|
less then rtminexpire. There are two problems: (1) The kernel does not react
|
|
|
|
quickly enough when a lightly loaded server is suddenly attacked, and (2) The
|
|
|
|
rtminexpire is not low enough for the kernel to survive a sustained attack.
|
2001-07-14 19:41:16 +00:00
|
|
|
If your servers are connected to the internet via a T3 or better it may be
|
1999-03-15 15:43:10 +00:00
|
|
|
prudent to manually override both rtexpire and rtminexpire via
|
|
|
|
.Xr sysctl 8 .
|
1999-03-02 03:45:47 +00:00
|
|
|
Never set either parameter to zero
|
2001-08-07 15:48:51 +00:00
|
|
|
(unless you want to crash the machine :-)).
|
1998-12-20 20:12:17 +00:00
|
|
|
Setting both parameters to 2 seconds should be sufficient to protect the route
|
|
|
|
table from attack.
|
1999-09-18 18:21:38 +00:00
|
|
|
.Sh ACCESS ISSUES WITH KERBEROS AND SSH
|
|
|
|
There are a few issues with both kerberos and ssh that need to be addressed
|
|
|
|
if you intend to use them. Kerberos V is an excellent authentication
|
|
|
|
protocol but the kerberized telnet and rlogin suck rocks. There are bugs that
|
2001-07-14 19:41:16 +00:00
|
|
|
make them unsuitable for dealing with binary streams. Also, by default
|
|
|
|
kerberos does not encrypt a session unless you use the
|
1999-09-18 18:21:38 +00:00
|
|
|
.Fl x
|
|
|
|
option. Ssh encrypts everything by default.
|
|
|
|
.Pp
|
2001-06-16 00:32:19 +00:00
|
|
|
Ssh works quite well in every respect except when it is set up to
|
|
|
|
forward encryption keys.
|
2001-07-14 19:41:16 +00:00
|
|
|
What this means is that if you have a secure workstation holding
|
1999-09-18 18:21:38 +00:00
|
|
|
keys that give you access to the rest of the system, and you ssh to an
|
|
|
|
unsecure machine, your keys becomes exposed. The actual keys themselves are
|
2001-07-14 19:41:16 +00:00
|
|
|
not exposed, but ssh installs a forwarding port for the duration of your
|
1999-09-18 18:21:38 +00:00
|
|
|
login and if a hacker has broken root on the unsecure machine he can utilize
|
|
|
|
that port to use your keys to gain access to any other machine that your
|
|
|
|
keys unlock.
|
|
|
|
.Pp
|
|
|
|
We recommend that you use ssh in combination with kerberos whenever possible
|
2001-07-14 19:41:16 +00:00
|
|
|
for staff logins. Ssh can be compiled with kerberos support. This reduces
|
1999-09-18 18:21:38 +00:00
|
|
|
your reliance on potentially exposable ssh keys while at the same time
|
2001-07-14 19:41:16 +00:00
|
|
|
protecting passwords via kerberos. Ssh keys
|
|
|
|
should only be used for automated tasks from secure machines (something
|
1999-09-18 18:21:38 +00:00
|
|
|
that kerberos is unsuited to). We also recommend that you either turn off
|
|
|
|
key-forwarding in the ssh configuration, or that you make use of the
|
|
|
|
.Pa "from=IP/DOMAIN"
|
|
|
|
option that ssh allows in its
|
|
|
|
.Pa authorized_keys
|
2002-01-09 12:34:01 +00:00
|
|
|
file to make the key only usable to entities logging in from specific
|
1999-09-18 18:21:38 +00:00
|
|
|
machines.
|
1998-12-20 20:12:17 +00:00
|
|
|
.Sh SEE ALSO
|
|
|
|
.Xr chflags 1 ,
|
|
|
|
.Xr find 1 ,
|
1998-12-25 23:39:01 +00:00
|
|
|
.Xr kerberos 1 ,
|
1998-12-20 20:12:17 +00:00
|
|
|
.Xr md5 1 ,
|
1999-09-04 14:55:22 +00:00
|
|
|
.Xr netstat 1 ,
|
2001-02-01 16:38:02 +00:00
|
|
|
.Xr openssl 1 ,
|
2001-07-06 16:46:48 +00:00
|
|
|
.Xr ssh 1 ,
|
1998-12-25 23:39:01 +00:00
|
|
|
.Xr xdm 1 ,
|
1999-09-18 18:21:38 +00:00
|
|
|
.Xr group 5 ,
|
1999-09-19 05:30:12 +00:00
|
|
|
.Xr ttys 5 ,
|
2000-03-07 13:59:26 +00:00
|
|
|
.Xr accton 8 ,
|
1999-09-18 18:21:38 +00:00
|
|
|
.Xr init 8 ,
|
2000-03-07 13:59:26 +00:00
|
|
|
.Xr sshd 8 ,
|
1999-09-19 05:30:12 +00:00
|
|
|
.Xr sysctl 8 ,
|
2000-03-07 13:59:26 +00:00
|
|
|
.Xr syslogd 8 ,
|
1999-09-19 05:30:12 +00:00
|
|
|
.Xr vipw 8
|
1998-12-20 20:12:17 +00:00
|
|
|
.Sh HISTORY
|
|
|
|
The
|
|
|
|
.Nm
|
1999-03-02 03:45:47 +00:00
|
|
|
manual page was originally written by
|
|
|
|
.An Matthew Dillon
|
2001-07-14 19:41:16 +00:00
|
|
|
and first appeared
|
1999-03-02 03:45:47 +00:00
|
|
|
in
|
1999-03-15 15:43:10 +00:00
|
|
|
.Fx 3.1 ,
|
1999-03-02 03:45:47 +00:00
|
|
|
December 1998.
|