xref: /freebsd/share/man/man7/security.7 (revision 762caeb47508118dbdb1cf45617067e1decbcfe6)
15ecb12e3SWarner Losh.\" Copyright (C) 1998 Matthew Dillon. All rights reserved.
2*762caeb4SKonstantin Belousov.\" Copyright (c) 2019 The FreeBSD Foundation, Inc.
3*762caeb4SKonstantin Belousov.\"
4*762caeb4SKonstantin Belousov.\" Parts of this documentation were written by
5*762caeb4SKonstantin Belousov.\" Konstantin Belousov <kib@FreeBSD.org> under sponsorship
6*762caeb4SKonstantin Belousov.\" from the FreeBSD Foundation.
75ecb12e3SWarner Losh.\"
85ecb12e3SWarner Losh.\" Redistribution and use in source and binary forms, with or without
95ecb12e3SWarner Losh.\" modification, are permitted provided that the following conditions
105ecb12e3SWarner Losh.\" are met:
115ecb12e3SWarner Losh.\" 1. Redistributions of source code must retain the above copyright
125ecb12e3SWarner Losh.\"    notice, this list of conditions and the following disclaimer.
135ecb12e3SWarner Losh.\" 2. Redistributions in binary form must reproduce the above copyright
145ecb12e3SWarner Losh.\"    notice, this list of conditions and the following disclaimer in the
155ecb12e3SWarner Losh.\"    documentation and/or other materials provided with the distribution.
165ecb12e3SWarner Losh.\"
175ecb12e3SWarner Losh.\" THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND
185ecb12e3SWarner Losh.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
195ecb12e3SWarner Losh.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
205ecb12e3SWarner Losh.\" ARE DISCLAIMED.  IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
215ecb12e3SWarner Losh.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
225ecb12e3SWarner Losh.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
235ecb12e3SWarner Losh.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
245ecb12e3SWarner Losh.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
255ecb12e3SWarner Losh.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
265ecb12e3SWarner Losh.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
275ecb12e3SWarner Losh.\" SUCH DAMAGE.
28f063d76aSMatthew Dillon.\"
297f3dea24SPeter Wemm.\" $FreeBSD$
30f063d76aSMatthew Dillon.\"
31*762caeb4SKonstantin Belousov.Dd July 27, 2019
32f063d76aSMatthew Dillon.Dt SECURITY 7
333d45e180SRuslan Ermilov.Os
34f063d76aSMatthew Dillon.Sh NAME
35f063d76aSMatthew Dillon.Nm security
3652fc88b5SGiorgos Keramidas.Nd introduction to security under FreeBSD
37f063d76aSMatthew Dillon.Sh DESCRIPTION
38f063d76aSMatthew DillonSecurity is a function that begins and ends with the system administrator.
39f063d76aSMatthew DillonWhile all
40f063d76aSMatthew Dillon.Bx
41d93b26d6SMatthew Dillonmulti-user systems have some inherent security, the job of building and
42992e4638SRobert Watsonmaintaining additional security mechanisms to keep users
43454ba768SRuslan Ermilov.Dq honest
44568e4cbbSGuy Helmeris probably
45454ba768SRuslan Ermilovone of the single largest undertakings of the sysadmin.
46454ba768SRuslan ErmilovMachines are
47f063d76aSMatthew Dillononly as secure as you make them, and security concerns are ever competing
48568e4cbbSGuy Helmerwith the human necessity for convenience.
49568e4cbbSGuy Helmer.Ux
50568e4cbbSGuy Helmersystems,
516ac7e896SDavid E. O'Brienin general, are capable of running a huge number of simultaneous processes
52454ba768SRuslan Ermilovand many of these processes operate as servers \(em meaning that external
53454ba768SRuslan Ermiloventities can connect and talk to them.
54454ba768SRuslan ErmilovAs yesterday's mini-computers and mainframes
55f063d76aSMatthew Dillonbecome today's desktops, and as computers become networked and internetworked,
56f063d76aSMatthew Dillonsecurity becomes an ever bigger issue.
57f063d76aSMatthew Dillon.Pp
58454ba768SRuslan ErmilovSecurity is best implemented through a layered onion approach.
59454ba768SRuslan ErmilovIn a nutshell,
60d93b26d6SMatthew Dillonwhat you want to do is to create as many layers of security as are convenient
61454ba768SRuslan Ermilovand then carefully monitor the system for intrusions.
62d93b26d6SMatthew Dillon.Pp
63454ba768SRuslan ErmilovSystem security also pertains to dealing with various forms of attacks,
64d93b26d6SMatthew Dillonincluding attacks that attempt to crash or otherwise make a system unusable
65454ba768SRuslan Ermilovbut do not attempt to break root.
66454ba768SRuslan ErmilovSecurity concerns can be split up into
67d93b26d6SMatthew Dillonseveral categories:
68f063d76aSMatthew Dillon.Bl -enum -offset indent
69f063d76aSMatthew Dillon.It
70454ba768SRuslan ErmilovDenial of Service attacks (DoS)
71f063d76aSMatthew Dillon.It
72f063d76aSMatthew DillonUser account compromises
73f063d76aSMatthew Dillon.It
746ac7e896SDavid E. O'BrienRoot compromise through accessible servers
75f063d76aSMatthew Dillon.It
766ac7e896SDavid E. O'BrienRoot compromise via user accounts
77d93b26d6SMatthew Dillon.It
78d93b26d6SMatthew DillonBackdoor creation
79f063d76aSMatthew Dillon.El
80f063d76aSMatthew Dillon.Pp
81f063d76aSMatthew DillonA denial of service attack is an action that deprives the machine of needed
82454ba768SRuslan Ermilovresources.
83454ba768SRuslan ErmilovTypically, DoS attacks are brute-force mechanisms that attempt
84f063d76aSMatthew Dillonto crash or otherwise make a machine unusable by overwhelming its servers or
85454ba768SRuslan Ermilovnetwork stack.
86454ba768SRuslan ErmilovSome DoS attacks try to take advantages of bugs in the
87454ba768SRuslan Ermilovnetworking stack to crash a machine with a single packet.
88454ba768SRuslan ErmilovThe latter can
89454ba768SRuslan Ermilovonly be fixed by applying a bug fix to the kernel.
90454ba768SRuslan ErmilovAttacks on servers can
91d93b26d6SMatthew Dillonoften be fixed by properly specifying options to limit the load the servers
92454ba768SRuslan Ermilovincur on the system under adverse conditions.
93454ba768SRuslan ErmilovBrute-force network attacks are harder to deal with.
94454ba768SRuslan ErmilovA spoofed-packet attack, for example, is
957c86a74bSMike Pritchardnearly impossible to stop short of cutting your system off from the Internet.
966b05959aSChristian BruefferIt may not be able to take your machine down, but it can fill up your Internet
97d93b26d6SMatthew Dillonpipe.
98f063d76aSMatthew Dillon.Pp
99454ba768SRuslan ErmilovA user account compromise is even more common than a DoS attack.
100454ba768SRuslan ErmilovMany
101454ba768SRuslan Ermilovsysadmins still run standard
102454ba768SRuslan Ermilov.Xr telnetd 8 ,
103454ba768SRuslan Ermilov.Xr rlogind 8 ,
104454ba768SRuslan Ermilov.Xr rshd 8 ,
105454ba768SRuslan Ermilovand
106454ba768SRuslan Ermilov.Xr ftpd 8
107454ba768SRuslan Ermilovservers on their machines.
108454ba768SRuslan ErmilovThese servers, by default, do not operate over encrypted
109454ba768SRuslan Ermilovconnections.
110454ba768SRuslan ErmilovThe result is that if you have any moderate-sized user base,
111f063d76aSMatthew Dillonone or more of your users logging into your system from a remote location
112c4d9468eSRuslan Ermilov(which is the most common and convenient way to log in to a system)
113454ba768SRuslan Ermilovwill have his or her password sniffed.
114454ba768SRuslan ErmilovThe attentive system administrator will analyze
115d93b26d6SMatthew Dillonhis remote access logs looking for suspicious source addresses
116f063d76aSMatthew Dilloneven for successful logins.
117f063d76aSMatthew Dillon.Pp
118f063d76aSMatthew DillonOne must always assume that once an attacker has access to a user account,
119454ba768SRuslan Ermilovthe attacker can break root.
120454ba768SRuslan ErmilovHowever, the reality is that in a well secured
121f063d76aSMatthew Dillonand maintained system, access to a user account does not necessarily give the
122454ba768SRuslan Ermilovattacker access to root.
123454ba768SRuslan ErmilovThe distinction is important because without access
124f063d76aSMatthew Dillonto root the attacker cannot generally hide his tracks and may, at best, be
125b94231daSDima Dorfmanable to do nothing more than mess with the user's files or crash the machine.
126d93b26d6SMatthew DillonUser account compromises are very common because users tend not to take the
1277c86a74bSMike Pritchardprecautions that sysadmins take.
128f063d76aSMatthew Dillon.Pp
129d93b26d6SMatthew DillonSystem administrators must keep in mind that there are potentially many ways
130454ba768SRuslan Ermilovto break root on a machine.
131454ba768SRuslan ErmilovThe attacker may know the root password,
132d93b26d6SMatthew Dillonthe attacker
133f063d76aSMatthew Dillonmay find a bug in a root-run server and be able to break root over a network
134454ba768SRuslan Ermilovconnection to that server, or the attacker may know of a bug in an SUID-root
135f063d76aSMatthew Dillonprogram that allows the attacker to break root once he has broken into a
136454ba768SRuslan Ermilovuser's account.
137454ba768SRuslan ErmilovIf an attacker has found a way to break root on a machine,
138f167d7fbSSheldon Hearnthe attacker may not have a need to install a backdoor.
139d93b26d6SMatthew DillonMany of the root holes found and closed to date involve a considerable amount
14047afd1f8SDaniel Harrisof work by the attacker to clean up after himself, so most attackers do install
141454ba768SRuslan Ermilovbackdoors.
142454ba768SRuslan ErmilovThis gives you a convenient way to detect the attacker.
143454ba768SRuslan ErmilovMaking
14447afd1f8SDaniel Harrisit impossible for an attacker to install a backdoor may actually be detrimental
1454c0d8029SDaniel Harristo your security because it will not close off the hole the attacker used to
146ac095af5SRebecca Cranbreak in originally.
147f063d76aSMatthew Dillon.Pp
148d93b26d6SMatthew DillonSecurity remedies should always be implemented with a multi-layered
149454ba768SRuslan Ermilov.Dq onion peel
150f063d76aSMatthew Dillonapproach and can be categorized as follows:
151f063d76aSMatthew Dillon.Bl -enum -offset indent
152f063d76aSMatthew Dillon.It
153f063d76aSMatthew DillonSecuring root and staff accounts
154f063d76aSMatthew Dillon.It
155454ba768SRuslan ErmilovSecuring root \(em root-run servers and SUID/SGID binaries
156f063d76aSMatthew Dillon.It
157f063d76aSMatthew DillonSecuring user accounts
158f063d76aSMatthew Dillon.It
159f063d76aSMatthew DillonSecuring the password file
160f063d76aSMatthew Dillon.It
161f063d76aSMatthew DillonSecuring the kernel core, raw devices, and file systems
162f063d76aSMatthew Dillon.It
163d93b26d6SMatthew DillonQuick detection of inappropriate changes made to the system
164f063d76aSMatthew Dillon.It
165f063d76aSMatthew DillonParanoia
166f063d76aSMatthew Dillon.El
167f063d76aSMatthew Dillon.Sh SECURING THE ROOT ACCOUNT AND SECURING STAFF ACCOUNTS
168454ba768SRuslan ErmilovDo not bother securing staff accounts if you have not secured the root
169454ba768SRuslan Ermilovaccount.
170454ba768SRuslan ErmilovMost systems have a password assigned to the root account.
171454ba768SRuslan ErmilovThe
172568e4cbbSGuy Helmerfirst thing you do is assume that the password is
173454ba768SRuslan Ermilov.Em always
174454ba768SRuslan Ermilovcompromised.
175454ba768SRuslan ErmilovThis does not mean that you should remove the password.
176454ba768SRuslan ErmilovThe
177d93b26d6SMatthew Dillonpassword is almost always necessary for console access to the machine.
178d93b26d6SMatthew DillonWhat it does mean is that you should not make it possible to use the password
179d93b26d6SMatthew Dillonoutside of the console or possibly even with a
180d93b26d6SMatthew Dillon.Xr su 1
181454ba768SRuslan Ermilovutility.
182454ba768SRuslan ErmilovFor example, make sure that your PTYs are specified as being
183b4b13ebaSDaniel Gerzo.Dq Li insecure
184d93b26d6SMatthew Dillonin the
185454ba768SRuslan Ermilov.Pa /etc/ttys
186d93b26d6SMatthew Dillonfile
187454ba768SRuslan Ermilovso that direct root logins via
188454ba768SRuslan Ermilov.Xr telnet 1
189454ba768SRuslan Ermilovor
190454ba768SRuslan Ermilov.Xr rlogin 1
191454ba768SRuslan Ermilovare disallowed.
192454ba768SRuslan ErmilovIf using
193454ba768SRuslan Ermilovother login services such as
194454ba768SRuslan Ermilov.Xr sshd 8 ,
195454ba768SRuslan Ermilovmake sure that direct root logins are
196454ba768SRuslan Ermilovdisabled there as well.
197454ba768SRuslan ErmilovConsider every access method \(em services such as
198454ba768SRuslan Ermilov.Xr ftp 1
199454ba768SRuslan Ermilovoften fall through the cracks.
200454ba768SRuslan ErmilovDirect root logins should only be allowed
201d93b26d6SMatthew Dillonvia the system console.
202f063d76aSMatthew Dillon.Pp
2037626ae52SMatthew DillonOf course, as a sysadmin you have to be able to get to root, so we open up
204454ba768SRuslan Ermilova few holes.
205454ba768SRuslan ErmilovBut we make sure these holes require additional password
206454ba768SRuslan Ermilovverification to operate.
207454ba768SRuslan ErmilovOne way to make root accessible is to add appropriate
208454ba768SRuslan Ermilovstaff accounts to the
209454ba768SRuslan Ermilov.Dq Li wheel
210454ba768SRuslan Ermilovgroup (in
211c4d9468eSRuslan Ermilov.Pa /etc/group ) .
212454ba768SRuslan ErmilovThe staff members placed in the
213454ba768SRuslan Ermilov.Li wheel
214454ba768SRuslan Ermilovgroup are allowed to
215454ba768SRuslan Ermilov.Xr su 1
216454ba768SRuslan Ermilovto root.
217454ba768SRuslan ErmilovYou should never give staff
218454ba768SRuslan Ermilovmembers native
219454ba768SRuslan Ermilov.Li wheel
220454ba768SRuslan Ermilovaccess by putting them in the
221454ba768SRuslan Ermilov.Li wheel
222454ba768SRuslan Ermilovgroup in their password entry.
223454ba768SRuslan ErmilovStaff accounts should be placed in a
224454ba768SRuslan Ermilov.Dq Li staff
225454ba768SRuslan Ermilovgroup, and then added to the
226454ba768SRuslan Ermilov.Li wheel
227454ba768SRuslan Ermilovgroup via the
228454ba768SRuslan Ermilov.Pa /etc/group
229454ba768SRuslan Ermilovfile.
230454ba768SRuslan ErmilovOnly those staff members who actually need to have root access
231454ba768SRuslan Ermilovshould be placed in the
232454ba768SRuslan Ermilov.Li wheel
233454ba768SRuslan Ermilovgroup.
234454ba768SRuslan ErmilovIt is also possible, when using an
235454ba768SRuslan Ermilovauthentication method such as Kerberos, to use Kerberos's
236454ba768SRuslan Ermilov.Pa .k5login
237d93b26d6SMatthew Dillonfile in the root account to allow a
238d93b26d6SMatthew Dillon.Xr ksu 1
239454ba768SRuslan Ermilovto root without having to place anyone at all in the
240454ba768SRuslan Ermilov.Li wheel
241454ba768SRuslan Ermilovgroup.
242454ba768SRuslan ErmilovThis
243454ba768SRuslan Ermilovmay be the better solution since the
244454ba768SRuslan Ermilov.Li wheel
245454ba768SRuslan Ermilovmechanism still allows an
246d93b26d6SMatthew Dillonintruder to break root if the intruder has gotten hold of your password
247454ba768SRuslan Ermilovfile and can break into a staff account.
248454ba768SRuslan ErmilovWhile having the
249454ba768SRuslan Ermilov.Li wheel
250454ba768SRuslan Ermilovmechanism
251454ba768SRuslan Ermilovis better than having nothing at all, it is not necessarily the safest
252d93b26d6SMatthew Dillonoption.
253f063d76aSMatthew Dillon.Pp
254f063d76aSMatthew DillonAn indirect way to secure the root account is to secure your staff accounts
255f063d76aSMatthew Dillonby using an alternative login access method and *'ing out the crypted password
256454ba768SRuslan Ermilovfor the staff accounts.
257454ba768SRuslan ErmilovThis way an intruder may be able to steal the password
25847afd1f8SDaniel Harrisfile but will not be able to break into any staff accounts or root, even if
25947afd1f8SDaniel Harrisroot has a crypted password associated with it (assuming, of course, that
260454ba768SRuslan Ermilovyou have limited root access to the console).
261454ba768SRuslan ErmilovStaff members
262f063d76aSMatthew Dillonget into their staff accounts through a secure login mechanism such as
263a3f9c9fcSRuslan Ermilov.Xr kerberos 8
264568e4cbbSGuy Helmeror
265568e4cbbSGuy Helmer.Xr ssh 1
266568e4cbbSGuy Helmerusing a private/public
267454ba768SRuslan Ermilovkey pair.
268454ba768SRuslan ErmilovWhen you use something like Kerberos you generally must secure
269454ba768SRuslan Ermilovthe machines which run the Kerberos servers and your desktop workstation.
270454ba768SRuslan ErmilovWhen you use a public/private key pair with SSH, you must generally secure
271454ba768SRuslan Ermilovthe machine you are logging in
272454ba768SRuslan Ermilov.Em from
273c4d9468eSRuslan Ermilov(typically your workstation),
274568e4cbbSGuy Helmerbut you can
275f063d76aSMatthew Dillonalso add an additional layer of protection to the key pair by password
276568e4cbbSGuy Helmerprotecting the keypair when you create it with
277568e4cbbSGuy Helmer.Xr ssh-keygen 1 .
278568e4cbbSGuy HelmerBeing able
2796ac7e896SDavid E. O'Briento *-out the passwords for staff accounts also guarantees that staff members
280454ba768SRuslan Ermilovcan only log in through secure access methods that you have set up.
281454ba768SRuslan ErmilovYou can
282f063d76aSMatthew Dillonthus force all staff members to use secure, encrypted connections for
283454ba768SRuslan Ermilovall their sessions which closes an important hole used by many intruders: that
284f063d76aSMatthew Dillonof sniffing the network from an unrelated, less secure machine.
285f063d76aSMatthew Dillon.Pp
286f063d76aSMatthew DillonThe more indirect security mechanisms also assume that you are logging in
287454ba768SRuslan Ermilovfrom a more restrictive server to a less restrictive server.
288454ba768SRuslan ErmilovFor example,
289454ba768SRuslan Ermilovif your main box is running all sorts of servers, your workstation should not
290454ba768SRuslan Ermilovbe running any.
291454ba768SRuslan ErmilovIn order for your workstation to be reasonably secure
292f063d76aSMatthew Dillonyou should run as few servers as possible, up to and including no servers
293f063d76aSMatthew Dillonat all, and you should run a password-protected screen blanker.
294f063d76aSMatthew DillonOf course, given physical access to
295454ba768SRuslan Ermilova workstation, an attacker can break any sort of security you put on it.
296f063d76aSMatthew DillonThis is definitely a problem that you should consider but you should also
2976ac7e896SDavid E. O'Brienconsider the fact that the vast majority of break-ins occur remotely, over
2987626ae52SMatthew Dillona network, from people who do not have physical access to your workstation or
299f063d76aSMatthew Dillonservers.
300f063d76aSMatthew Dillon.Pp
301454ba768SRuslan ErmilovUsing something like Kerberos also gives you the ability to disable or
302f063d76aSMatthew Dillonchange the password for a staff account in one place and have it immediately
303454ba768SRuslan Ermilovaffect all the machines the staff member may have an account on.
304454ba768SRuslan ErmilovIf a staff
305f063d76aSMatthew Dillonmember's account gets compromised, the ability to instantly change his
306454ba768SRuslan Ermilovpassword on all machines should not be underrated.
307454ba768SRuslan ErmilovWith discrete passwords, changing a password on N machines can be a mess.
308454ba768SRuslan ErmilovYou can also impose
309454ba768SRuslan Ermilovre-passwording restrictions with Kerberos: not only can a Kerberos ticket
310454ba768SRuslan Ermilovbe made to timeout after a while, but the Kerberos system can require that
311568e4cbbSGuy Helmerthe user choose a new password after a certain period of time
312c4d9468eSRuslan Ermilov(say, once a month).
31347afd1f8SDaniel Harris.Sh SECURING ROOT \(em ROOT-RUN SERVERS AND SUID/SGID BINARIES
314454ba768SRuslan ErmilovThe prudent sysadmin only runs the servers he needs to, no more, no less.
315454ba768SRuslan ErmilovBe aware that third party servers are often the most bug-prone.
316454ba768SRuslan ErmilovFor example,
317454ba768SRuslan Ermilovrunning an old version of
318454ba768SRuslan Ermilov.Xr imapd 8
319454ba768SRuslan Ermilovor
320f0ea72a0SChristian Brueffer.Xr popper 8 Pq Pa ports/mail/popper
321454ba768SRuslan Ermilovis like giving a universal root
322454ba768SRuslan Ermilovticket out to the entire world.
323454ba768SRuslan ErmilovNever run a server that you have not checked
324454ba768SRuslan Ermilovout carefully.
325454ba768SRuslan ErmilovMany servers do not need to be run as root.
326454ba768SRuslan ErmilovFor example,
327454ba768SRuslan Ermilovthe
328454ba768SRuslan Ermilov.Xr talkd 8 ,
329454ba768SRuslan Ermilov.Xr comsat 8 ,
330454ba768SRuslan Ermilovand
331454ba768SRuslan Ermilov.Xr fingerd 8
332454ba768SRuslan Ermilovdaemons can be run in special user
333454ba768SRuslan Ermilov.Dq sandboxes .
334454ba768SRuslan ErmilovA sandbox is not perfect unless you go to a large amount of trouble, but the
335454ba768SRuslan Ermilovonion approach to security still stands: if someone is able to break in
336f063d76aSMatthew Dillonthrough a server running in a sandbox, they still have to break out of the
337454ba768SRuslan Ermilovsandbox.
338454ba768SRuslan ErmilovThe more layers the attacker must break through, the lower the
339454ba768SRuslan Ermilovlikelihood of his success.
340454ba768SRuslan ErmilovRoot holes have historically been found in
341f063d76aSMatthew Dillonvirtually every server ever run as root, including basic system servers.
342454ba768SRuslan ErmilovIf you are running a machine through which people only log in via
343454ba768SRuslan Ermilov.Xr sshd 8
344454ba768SRuslan Ermilovand never log in via
345454ba768SRuslan Ermilov.Xr telnetd 8 ,
346454ba768SRuslan Ermilov.Xr rshd 8 ,
347454ba768SRuslan Ermilovor
348454ba768SRuslan Ermilov.Xr rlogind 8 ,
349454ba768SRuslan Ermilovthen turn off those services!
350f063d76aSMatthew Dillon.Pp
351f6f8f44dSAlexey Zelkin.Fx
352454ba768SRuslan Ermilovnow defaults to running
353454ba768SRuslan Ermilov.Xr talkd 8 ,
354454ba768SRuslan Ermilov.Xr comsat 8 ,
355454ba768SRuslan Ermilovand
356454ba768SRuslan Ermilov.Xr fingerd 8
357454ba768SRuslan Ermilovin a sandbox.
358454ba768SRuslan ErmilovDepending on whether you
359f063d76aSMatthew Dillonare installing a new system or upgrading an existing system, the special
360454ba768SRuslan Ermilovuser accounts used by these sandboxes may not be installed.
361454ba768SRuslan ErmilovThe prudent
3627626ae52SMatthew Dillonsysadmin would research and implement sandboxes for servers whenever possible.
363f063d76aSMatthew Dillon.Pp
364f063d76aSMatthew DillonThere are a number of other servers that typically do not run in sandboxes:
365454ba768SRuslan Ermilov.Xr sendmail 8 ,
366454ba768SRuslan Ermilov.Xr popper 8 ,
367454ba768SRuslan Ermilov.Xr imapd 8 ,
368454ba768SRuslan Ermilov.Xr ftpd 8 ,
369454ba768SRuslan Ermilovand others.
370454ba768SRuslan ErmilovThere are alternatives to
3719518a247SJens Schweikhardtsome of these, but installing them may require more work than you are willing
372568e4cbbSGuy Helmerto put
373c4d9468eSRuslan Ermilov(the convenience factor strikes again).
374568e4cbbSGuy HelmerYou may have to run these
3756ac7e896SDavid E. O'Brienservers as root and rely on other mechanisms to detect break-ins that might
376f063d76aSMatthew Dillonoccur through them.
377f063d76aSMatthew Dillon.Pp
378454ba768SRuslan ErmilovThe other big potential root hole in a system are the SUID-root and SGID
379454ba768SRuslan Ermilovbinaries installed on the system.
380454ba768SRuslan ErmilovMost of these binaries, such as
381454ba768SRuslan Ermilov.Xr rlogin 1 ,
382568e4cbbSGuy Helmerreside in
383454ba768SRuslan Ermilov.Pa /bin , /sbin , /usr/bin ,
384568e4cbbSGuy Helmeror
385568e4cbbSGuy Helmer.Pa /usr/sbin .
386568e4cbbSGuy HelmerWhile nothing is 100% safe,
387454ba768SRuslan Ermilovthe system-default SUID and SGID binaries can be considered reasonably safe.
388454ba768SRuslan ErmilovStill, root holes are occasionally found in these binaries.
389454ba768SRuslan ErmilovA root hole
390454ba768SRuslan Ermilovwas found in Xlib in 1998 that made
391f0ea72a0SChristian Brueffer.Xr xterm 1 Pq Pa ports/x11/xterm
392454ba768SRuslan Ermilov(which is typically SUID)
393568e4cbbSGuy Helmervulnerable.
394454ba768SRuslan ErmilovIt is better to be safe than sorry and the prudent sysadmin will restrict SUID
395f063d76aSMatthew Dillonbinaries that only staff should run to a special group that only staff can
396568e4cbbSGuy Helmeraccess, and get rid of
397454ba768SRuslan Ermilov.Pq Dq Li "chmod 000"
398454ba768SRuslan Ermilovany SUID binaries that nobody uses.
399454ba768SRuslan ErmilovA server with no display generally does not need an
400454ba768SRuslan Ermilov.Xr xterm 1
401454ba768SRuslan Ermilovbinary.
402454ba768SRuslan ErmilovSGID binaries can be almost as dangerous.
403454ba768SRuslan ErmilovIf an intruder can break an SGID-kmem binary the
404568e4cbbSGuy Helmerintruder might be able to read
405568e4cbbSGuy Helmer.Pa /dev/kmem
406568e4cbbSGuy Helmerand thus read the crypted password
407454ba768SRuslan Ermilovfile, potentially compromising any passworded account.
408454ba768SRuslan ErmilovAlternatively an
409454ba768SRuslan Ermilovintruder who breaks group
410454ba768SRuslan Ermilov.Dq Li kmem
411454ba768SRuslan Ermilovcan monitor keystrokes sent through PTYs,
412454ba768SRuslan Ermilovincluding PTYs used by users who log in through secure methods.
413454ba768SRuslan ErmilovAn intruder
414454ba768SRuslan Ermilovthat breaks the
415454ba768SRuslan Ermilov.Dq Li tty
416454ba768SRuslan Ermilovgroup can write to almost any user's TTY.
417454ba768SRuslan ErmilovIf a user
418d93b26d6SMatthew Dillonis running a terminal
419d93b26d6SMatthew Dillonprogram or emulator with a keyboard-simulation feature, the intruder can
420d93b26d6SMatthew Dillonpotentially
421f063d76aSMatthew Dillongenerate a data stream that causes the user's terminal to echo a command, which
422f063d76aSMatthew Dillonis then run as that user.
423f063d76aSMatthew Dillon.Sh SECURING USER ACCOUNTS
424454ba768SRuslan ErmilovUser accounts are usually the most difficult to secure.
425454ba768SRuslan ErmilovWhile you can impose
426454ba768SRuslan Ermilovdraconian access restrictions on your staff and *-out their passwords, you
427454ba768SRuslan Ermilovmay not be able to do so with any general user accounts you might have.
428454ba768SRuslan ErmilovIf
429f063d76aSMatthew Dillonyou do have sufficient control then you may win out and be able to secure the
430454ba768SRuslan Ermilovuser accounts properly.
431454ba768SRuslan ErmilovIf not, you simply have to be more vigilant in your
432454ba768SRuslan Ermilovmonitoring of those accounts.
433454ba768SRuslan ErmilovUse of SSH and Kerberos for user accounts is
434d93b26d6SMatthew Dillonmore problematic due to the extra administration and technical support
435d93b26d6SMatthew Dillonrequired, but still a very good solution compared to a crypted password
436d93b26d6SMatthew Dillonfile.
437f063d76aSMatthew Dillon.Sh SECURING THE PASSWORD FILE
438f063d76aSMatthew DillonThe only sure fire way is to *-out as many passwords as you can and
439454ba768SRuslan Ermilovuse SSH or Kerberos for access to those accounts.
440454ba768SRuslan ErmilovEven though the
441568e4cbbSGuy Helmercrypted password file
442568e4cbbSGuy Helmer.Pq Pa /etc/spwd.db
443568e4cbbSGuy Helmercan only be read by root, it may
444568e4cbbSGuy Helmerbe possible for an intruder to obtain read access to that file even if the
445f063d76aSMatthew Dillonattacker cannot obtain root-write access.
446f063d76aSMatthew Dillon.Pp
447f063d76aSMatthew DillonYour security scripts should always check for and report changes to
448568e4cbbSGuy Helmerthe password file
449c4d9468eSRuslan Ermilov(see
450454ba768SRuslan Ermilov.Sx CHECKING FILE INTEGRITY
451c4d9468eSRuslan Ermilovbelow).
452f063d76aSMatthew Dillon.Sh SECURING THE KERNEL CORE, RAW DEVICES, AND FILE SYSTEMS
453f063d76aSMatthew DillonIf an attacker breaks root he can do just about anything, but there
454454ba768SRuslan Ermilovare certain conveniences.
455454ba768SRuslan ErmilovFor example, most modern kernels have a packet sniffing device driver built in.
456454ba768SRuslan ErmilovUnder
457f6f8f44dSAlexey Zelkin.Fx
458568e4cbbSGuy Helmerit is called
459568e4cbbSGuy Helmerthe
460454ba768SRuslan Ermilov.Xr bpf 4
461454ba768SRuslan Ermilovdevice.
462454ba768SRuslan ErmilovAn intruder will commonly attempt to run a packet sniffer
463454ba768SRuslan Ermilovon a compromised machine.
464454ba768SRuslan ErmilovYou do not need to give the intruder the
465454ba768SRuslan Ermilovcapability and most systems should not have the
466454ba768SRuslan Ermilov.Xr bpf 4
467454ba768SRuslan Ermilovdevice compiled in.
468f063d76aSMatthew Dillon.Pp
469454ba768SRuslan ErmilovBut even if you turn off the
470454ba768SRuslan Ermilov.Xr bpf 4
471454ba768SRuslan Ermilovdevice, you still have
472568e4cbbSGuy Helmer.Pa /dev/mem
473568e4cbbSGuy Helmerand
474568e4cbbSGuy Helmer.Pa /dev/kmem
475454ba768SRuslan Ermilovto worry about.
476454ba768SRuslan ErmilovFor that matter,
477d93b26d6SMatthew Dillonthe intruder can still write to raw disk devices.
478d93b26d6SMatthew DillonAlso, there is another kernel feature called the module loader,
479568e4cbbSGuy Helmer.Xr kldload 8 .
480568e4cbbSGuy HelmerAn enterprising intruder can use a KLD module to install
481454ba768SRuslan Ermilovhis own
482454ba768SRuslan Ermilov.Xr bpf 4
483454ba768SRuslan Ermilovdevice or other sniffing device on a running kernel.
484568e4cbbSGuy HelmerTo avoid these problems you have to run
485e17c0e32SGary W. Swearingenthe kernel at a higher security level, at least level 1.
486e17c0e32SGary W. SwearingenThe security level can be set with a
487454ba768SRuslan Ermilov.Xr sysctl 8
488454ba768SRuslan Ermilovon the
489454ba768SRuslan Ermilov.Va kern.securelevel
490454ba768SRuslan Ermilovvariable.
491454ba768SRuslan ErmilovOnce you have
492e17c0e32SGary W. Swearingenset the security level to 1, write access to raw devices will be denied and
493454ba768SRuslan Ermilovspecial
494454ba768SRuslan Ermilov.Xr chflags 1
495454ba768SRuslan Ermilovflags, such as
496454ba768SRuslan Ermilov.Cm schg ,
497454ba768SRuslan Ermilovwill be enforced.
498454ba768SRuslan ErmilovYou must also ensure
499568e4cbbSGuy Helmerthat the
500454ba768SRuslan Ermilov.Cm schg
501568e4cbbSGuy Helmerflag is set on critical startup binaries, directories, and
502e17c0e32SGary W. Swearingenscript files \(em everything that gets run
503e17c0e32SGary W. Swearingenup to the point where the security level is set.
504454ba768SRuslan ErmilovThis might be overdoing it, and upgrading the system is much more
505e17c0e32SGary W. Swearingendifficult when you operate at a higher security level.
506454ba768SRuslan ErmilovYou may compromise and
507e17c0e32SGary W. Swearingenrun the system at a higher security level but not set the
508454ba768SRuslan Ermilov.Cm schg
509454ba768SRuslan Ermilovflag for every
510454ba768SRuslan Ermilovsystem file and directory under the sun.
511454ba768SRuslan ErmilovAnother possibility is to simply
512454ba768SRuslan Ermilovmount
513454ba768SRuslan Ermilov.Pa /
514454ba768SRuslan Ermilovand
515454ba768SRuslan Ermilov.Pa /usr
516454ba768SRuslan Ermilovread-only.
517454ba768SRuslan ErmilovIt should be noted that being too draconian in
518d93b26d6SMatthew Dillonwhat you attempt to protect may prevent the all-important detection of an
519d93b26d6SMatthew Dillonintrusion.
520e17c0e32SGary W. Swearingen.Pp
521e17c0e32SGary W. SwearingenThe kernel runs with five different security levels.
522e17c0e32SGary W. SwearingenAny super-user process can raise the level, but no process
523e17c0e32SGary W. Swearingencan lower it.
524e17c0e32SGary W. SwearingenThe security levels are:
525e17c0e32SGary W. Swearingen.Bl -tag -width flag
526e17c0e32SGary W. Swearingen.It Ic -1
527e17c0e32SGary W. SwearingenPermanently insecure mode \- always run the system in insecure mode.
528e17c0e32SGary W. SwearingenThis is the default initial value.
529e17c0e32SGary W. Swearingen.It Ic 0
530e17c0e32SGary W. SwearingenInsecure mode \- immutable and append-only flags may be turned off.
531e17c0e32SGary W. SwearingenAll devices may be read or written subject to their permissions.
532e17c0e32SGary W. Swearingen.It Ic 1
533e17c0e32SGary W. SwearingenSecure mode \- the system immutable and system append-only flags may not
534e17c0e32SGary W. Swearingenbe turned off;
535e17c0e32SGary W. Swearingendisks for mounted file systems,
536ff8a6926SGiorgos Keramidas.Pa /dev/mem
537e17c0e32SGary W. Swearingenand
538ff8a6926SGiorgos Keramidas.Pa /dev/kmem
539ff8a6926SGiorgos Keramidasmay not be opened for writing;
540e17c0e32SGary W. Swearingen.Pa /dev/io
541ff8a6926SGiorgos Keramidas(if your platform has it) may not be opened at all;
542e17c0e32SGary W. Swearingenkernel modules (see
543e17c0e32SGary W. Swearingen.Xr kld 4 )
544e17c0e32SGary W. Swearingenmay not be loaded or unloaded.
545ef522f95SDavid E. O'BrienThe kernel debugger may not be entered using the
546ef522f95SDavid E. O'Brien.Va debug.kdb.enter
547ef522f95SDavid E. O'Briensysctl.
548ef522f95SDavid E. O'BrienA panic or trap cannot be forced using the
549ef522f95SDavid E. O'Brien.Va debug.kdb.panic
550ef522f95SDavid E. O'Brienand other sysctl's.
551e17c0e32SGary W. Swearingen.It Ic 2
552e17c0e32SGary W. SwearingenHighly secure mode \- same as secure mode, plus disks may not be
553e17c0e32SGary W. Swearingenopened for writing (except by
554e17c0e32SGary W. Swearingen.Xr mount 2 )
555e17c0e32SGary W. Swearingenwhether mounted or not.
556e17c0e32SGary W. SwearingenThis level precludes tampering with file systems by unmounting them,
557e17c0e32SGary W. Swearingenbut also inhibits running
558e17c0e32SGary W. Swearingen.Xr newfs 8
559e17c0e32SGary W. Swearingenwhile the system is multi-user.
560e17c0e32SGary W. Swearingen.Pp
561e17c0e32SGary W. SwearingenIn addition, kernel time changes are restricted to less than or equal to one
562e17c0e32SGary W. Swearingensecond.
563e17c0e32SGary W. SwearingenAttempts to change the time by more than this will log the message
564e17c0e32SGary W. Swearingen.Dq Time adjustment clamped to +1 second .
565e17c0e32SGary W. Swearingen.It Ic 3
566e17c0e32SGary W. SwearingenNetwork secure mode \- same as highly secure mode, plus
567e17c0e32SGary W. SwearingenIP packet filter rules (see
568e17c0e32SGary W. Swearingen.Xr ipfw 8 ,
569e17c0e32SGary W. Swearingen.Xr ipfirewall 4
570e17c0e32SGary W. Swearingenand
571e17c0e32SGary W. Swearingen.Xr pfctl 8 )
572e17c0e32SGary W. Swearingencannot be changed and
573e17c0e32SGary W. Swearingen.Xr dummynet 4
574e17c0e32SGary W. Swearingenor
575e17c0e32SGary W. Swearingen.Xr pf 4
576e17c0e32SGary W. Swearingenconfiguration cannot be adjusted.
577e17c0e32SGary W. Swearingen.El
578e17c0e32SGary W. Swearingen.Pp
5790ebb41beSCeri DaviesThe security level can be configured with variables documented in
580814b16baSGlen Barber.Xr rc.conf 5 .
581f063d76aSMatthew Dillon.Sh CHECKING FILE INTEGRITY: BINARIES, CONFIG FILES, ETC
582f063d76aSMatthew DillonWhen it comes right down to it, you can only protect your core system
583f063d76aSMatthew Dillonconfiguration and control files so much before the convenience factor
584454ba768SRuslan Ermilovrears its ugly head.
585454ba768SRuslan ErmilovFor example, using
586454ba768SRuslan Ermilov.Xr chflags 1
587454ba768SRuslan Ermilovto set the
588454ba768SRuslan Ermilov.Cm schg
589454ba768SRuslan Ermilovbit on most of the files in
590454ba768SRuslan Ermilov.Pa /
591454ba768SRuslan Ermilovand
592454ba768SRuslan Ermilov.Pa /usr
593454ba768SRuslan Ermilovis probably counterproductive because
594454ba768SRuslan Ermilovwhile it may protect the files, it also closes a detection window.
595454ba768SRuslan ErmilovThe
59647afd1f8SDaniel Harrislast layer of your security onion is perhaps the most important \(em detection.
597d93b26d6SMatthew DillonThe rest of your security is pretty much useless (or, worse, presents you with
598454ba768SRuslan Ermilova false sense of safety) if you cannot detect potential incursions.
599454ba768SRuslan ErmilovHalf
600074ad115SRuslan Ermilovthe job of the onion is to slow down the attacker rather than stop him
6014c0d8029SDaniel Harrisin order to give the detection layer a chance to catch him in
602d93b26d6SMatthew Dillonthe act.
603f063d76aSMatthew Dillon.Pp
604d93b26d6SMatthew DillonThe best way to detect an incursion is to look for modified, missing, or
605454ba768SRuslan Ermilovunexpected files.
606454ba768SRuslan ErmilovThe best
607d93b26d6SMatthew Dillonway to look for modified files is from another (often centralized)
608d93b26d6SMatthew Dillonlimited-access system.
609d93b26d6SMatthew DillonWriting your security scripts on the extra-secure limited-access system
61047afd1f8SDaniel Harrismakes them mostly invisible to potential attackers, and this is important.
611d93b26d6SMatthew DillonIn order to take maximum advantage you generally have to give the
612d93b26d6SMatthew Dillonlimited-access box significant access to the other machines in the business,
613d93b26d6SMatthew Dillonusually either by doing a read-only NFS export of the other machines to the
614454ba768SRuslan Ermilovlimited-access box, or by setting up SSH keypairs to allow the limit-access
615454ba768SRuslan Ermilovbox to SSH to the other machines.
616454ba768SRuslan ErmilovExcept for its network traffic, NFS is
61747afd1f8SDaniel Harristhe least visible method \(em allowing you to monitor the file systems on each
618454ba768SRuslan Ermilovclient box virtually undetected.
619454ba768SRuslan ErmilovIf your
620d93b26d6SMatthew Dillonlimited-access server is connected to the client boxes through a switch,
621454ba768SRuslan Ermilovthe NFS method is often the better choice.
622454ba768SRuslan ErmilovIf your limited-access server
623d93b26d6SMatthew Dillonis connected to the client boxes through a hub or through several layers
624454ba768SRuslan Ermilovof routing, the NFS method may be too insecure (network-wise) and using SSH
625454ba768SRuslan Ermilovmay be the better choice even with the audit-trail tracks that SSH lays.
626d93b26d6SMatthew Dillon.Pp
627d93b26d6SMatthew DillonOnce you give a limit-access box at least read access to the client systems
628d93b26d6SMatthew Dillonit is supposed to monitor, you must write scripts to do the actual
629454ba768SRuslan Ermilovmonitoring.
630454ba768SRuslan ErmilovGiven an NFS mount, you can write scripts out of simple system
631d93b26d6SMatthew Dillonutilities such as
632d93b26d6SMatthew Dillon.Xr find 1
633d93b26d6SMatthew Dillonand
634454ba768SRuslan Ermilov.Xr md5 1 .
635454ba768SRuslan ErmilovIt is best to physically
636d93b26d6SMatthew Dillon.Xr md5 1
637454ba768SRuslan Ermilovthe client-box files boxes at least once a
638ad27d066SMatthew Dillonday, and to test control files such as those found in
639ad27d066SMatthew Dillon.Pa /etc
640ad27d066SMatthew Dillonand
641ad27d066SMatthew Dillon.Pa /usr/local/etc
642454ba768SRuslan Ermiloveven more often.
643454ba768SRuslan ErmilovWhen mismatches are found relative to the base MD5
644d93b26d6SMatthew Dilloninformation the limited-access machine knows is valid, it should scream at
645454ba768SRuslan Ermilova sysadmin to go check it out.
646454ba768SRuslan ErmilovA good security script will also check for
647454ba768SRuslan Ermilovinappropriate SUID binaries and for new or deleted files on system partitions
648d93b26d6SMatthew Dillonsuch as
649d93b26d6SMatthew Dillon.Pa /
650568e4cbbSGuy Helmerand
651454ba768SRuslan Ermilov.Pa /usr .
652f063d76aSMatthew Dillon.Pp
653454ba768SRuslan ErmilovWhen using SSH rather than NFS, writing the security script is much more
654454ba768SRuslan Ermilovdifficult.
655454ba768SRuslan ErmilovYou essentially have to
656454ba768SRuslan Ermilov.Xr scp 1
657d93b26d6SMatthew Dillonthe scripts to the client box in order to run them, making them visible, and
658454ba768SRuslan Ermilovfor safety you also need to
659454ba768SRuslan Ermilov.Xr scp 1
660454ba768SRuslan Ermilovthe binaries (such as
661454ba768SRuslan Ermilov.Xr find 1 )
662454ba768SRuslan Ermilovthat those scripts use.
663454ba768SRuslan ErmilovThe
664454ba768SRuslan Ermilov.Xr sshd 8
665454ba768SRuslan Ermilovdaemon on the client box may already be compromised.
666454ba768SRuslan ErmilovAll in all,
667454ba768SRuslan Ermilovusing SSH may be necessary when running over unsecure links, but it is also a
668d93b26d6SMatthew Dillonlot harder to deal with.
669f063d76aSMatthew Dillon.Pp
670f063d76aSMatthew DillonA good security script will also check for changes to user and staff members
671ad27d066SMatthew Dillonaccess configuration files:
672454ba768SRuslan Ermilov.Pa .rhosts , .shosts , .ssh/authorized_keys
6735203edcdSRuslan Ermilovand so forth, files that might fall outside the purview of the MD5 check.
674f063d76aSMatthew Dillon.Pp
675d93b26d6SMatthew DillonIf you have a huge amount of user disk space it may take too long to run
676454ba768SRuslan Ermilovthrough every file on those partitions.
677454ba768SRuslan ErmilovIn this case, setting mount
678e354922cSRuslan Ermilovflags to disallow SUID binaries on those partitions is a good
679454ba768SRuslan Ermilovidea.
680454ba768SRuslan ErmilovThe
681454ba768SRuslan Ermilov.Cm nosuid
682e354922cSRuslan Ermilovoption
683c4d9468eSRuslan Ermilov(see
684c4d9468eSRuslan Ermilov.Xr mount 8 )
685e354922cSRuslan Ermilovis what you want to look into.
686454ba768SRuslan ErmilovI would scan them anyway at least once a
687d93b26d6SMatthew Dillonweek, since the object of this layer is to detect a break-in whether or
688a30de06bSCeri Daviesnot the break-in is effective.
689f063d76aSMatthew Dillon.Pp
690568e4cbbSGuy HelmerProcess accounting
691c4d9468eSRuslan Ermilov(see
692c4d9468eSRuslan Ermilov.Xr accton 8 )
693568e4cbbSGuy Helmeris a relatively low-overhead feature of
6946ac7e896SDavid E. O'Brienthe operating system which I recommend using as a post-break-in evaluation
695454ba768SRuslan Ermilovmechanism.
696454ba768SRuslan ErmilovIt is especially useful in tracking down how an intruder has
697d93b26d6SMatthew Dillonactually broken into a system, assuming the file is still intact after
6986ac7e896SDavid E. O'Brienthe break-in occurs.
699f063d76aSMatthew Dillon.Pp
700f063d76aSMatthew DillonFinally, security scripts should process the log files and the logs themselves
70147afd1f8SDaniel Harrisshould be generated in as secure a manner as possible \(em remote syslog can be
702454ba768SRuslan Ermilovvery useful.
703454ba768SRuslan ErmilovAn intruder tries to cover his tracks, and log files are critical
704d93b26d6SMatthew Dillonto the sysadmin trying to track down the time and method of the initial
705454ba768SRuslan Ermilovbreak-in.
706454ba768SRuslan ErmilovOne way to keep a permanent record of the log files is to run
707d93b26d6SMatthew Dillonthe system console to a serial port and collect the information on a
708d93b26d6SMatthew Dilloncontinuing basis through a secure machine monitoring the consoles.
709f063d76aSMatthew Dillon.Sh PARANOIA
710454ba768SRuslan ErmilovA little paranoia never hurts.
711454ba768SRuslan ErmilovAs a rule, a sysadmin can add any number
71247afd1f8SDaniel Harrisof security features as long as they do not affect convenience, and
71347afd1f8SDaniel Harriscan add security features that do affect convenience with some added
714454ba768SRuslan Ermilovthought.
715454ba768SRuslan ErmilovEven more importantly, a security administrator should mix it up
71647afd1f8SDaniel Harrisa bit \(em if you use recommendations such as those given by this manual
717d93b26d6SMatthew Dillonpage verbatim, you give away your methodologies to the prospective
71847afd1f8SDaniel Harrisattacker who also has access to this manual page.
719454ba768SRuslan Ermilov.Sh SPECIAL SECTION ON DoS ATTACKS
720454ba768SRuslan ErmilovThis section covers Denial of Service attacks.
721454ba768SRuslan ErmilovA DoS attack is typically a packet attack.
722454ba768SRuslan ErmilovWhile there is not much you can do about modern spoofed
723f063d76aSMatthew Dillonpacket attacks that saturate your network, you can generally limit the damage
724f063d76aSMatthew Dillonby ensuring that the attacks cannot take down your servers.
725f063d76aSMatthew Dillon.Bl -enum -offset indent
726f063d76aSMatthew Dillon.It
727f063d76aSMatthew DillonLimiting server forks
728f063d76aSMatthew Dillon.It
729454ba768SRuslan ErmilovLimiting springboard attacks (ICMP response attacks, ping broadcast, etc.)
730f063d76aSMatthew Dillon.It
731f063d76aSMatthew DillonKernel Route Cache
732f063d76aSMatthew Dillon.El
733f063d76aSMatthew Dillon.Pp
734454ba768SRuslan ErmilovA common DoS attack is against a forking server that attempts to cause the
7356ac7e896SDavid E. O'Brienserver to eat processes, file descriptors, and memory until the machine
736454ba768SRuslan Ermilovdies.
737454ba768SRuslan ErmilovThe
738454ba768SRuslan Ermilov.Xr inetd 8
739454ba768SRuslan Ermilovserver
740568e4cbbSGuy Helmerhas several options to limit this sort of attack.
741f063d76aSMatthew DillonIt should be noted that while it is possible to prevent a machine from going
742f063d76aSMatthew Dillondown it is not generally possible to prevent a service from being disrupted
743454ba768SRuslan Ermilovby the attack.
744454ba768SRuslan ErmilovRead the
745454ba768SRuslan Ermilov.Xr inetd 8
746454ba768SRuslan Ermilovmanual page carefully and pay specific attention
747568e4cbbSGuy Helmerto the
748454ba768SRuslan Ermilov.Fl c , C ,
749568e4cbbSGuy Helmerand
750568e4cbbSGuy Helmer.Fl R
751454ba768SRuslan Ermilovoptions.
752454ba768SRuslan ErmilovNote that spoofed-IP attacks will circumvent
753568e4cbbSGuy Helmerthe
754568e4cbbSGuy Helmer.Fl C
755454ba768SRuslan Ermilovoption to
756454ba768SRuslan Ermilov.Xr inetd 8 ,
757454ba768SRuslan Ermilovso typically a combination of options must be used.
758f063d76aSMatthew DillonSome standalone servers have self-fork-limitation parameters.
759f063d76aSMatthew Dillon.Pp
760454ba768SRuslan ErmilovThe
761454ba768SRuslan Ermilov.Xr sendmail 8
762454ba768SRuslan Ermilovdaemon has its
763568e4cbbSGuy Helmer.Fl OMaxDaemonChildren
764568e4cbbSGuy Helmeroption which tends to work much
765454ba768SRuslan Ermilovbetter than trying to use
766454ba768SRuslan Ermilov.Xr sendmail 8 Ns 's
767454ba768SRuslan Ermilovload limiting options due to the
768454ba768SRuslan Ermilovload lag.
769454ba768SRuslan ErmilovYou should specify a
770454ba768SRuslan Ermilov.Va MaxDaemonChildren
771568e4cbbSGuy Helmerparameter when you start
772454ba768SRuslan Ermilov.Xr sendmail 8
773454ba768SRuslan Ermilovhigh enough to handle your expected load but not so high that the
774454ba768SRuslan Ermilovcomputer cannot handle that number of
775454ba768SRuslan Ermilov.Nm sendmail Ns 's
776454ba768SRuslan Ermilovwithout falling on its face.
777454ba768SRuslan ErmilovIt is also prudent to run
778454ba768SRuslan Ermilov.Xr sendmail 8
779454ba768SRuslan Ermilovin
780454ba768SRuslan Ermilov.Dq queued
781454ba768SRuslan Ermilovmode
782568e4cbbSGuy Helmer.Pq Fl ODeliveryMode=queued
783568e4cbbSGuy Helmerand to run the daemon
784454ba768SRuslan Ermilov.Pq Dq Nm sendmail Fl bd
785568e4cbbSGuy Helmerseparate from the queue-runs
786454ba768SRuslan Ermilov.Pq Dq Nm sendmail Fl q15m .
787454ba768SRuslan ErmilovIf you still want real-time delivery you can run the queue
788568e4cbbSGuy Helmerat a much lower interval, such as
789568e4cbbSGuy Helmer.Fl q1m ,
790568e4cbbSGuy Helmerbut be sure to specify a reasonable
791454ba768SRuslan Ermilov.Va MaxDaemonChildren
792454ba768SRuslan Ermilovoption for that
793454ba768SRuslan Ermilov.Xr sendmail 8
794454ba768SRuslan Ermilovto prevent cascade failures.
795f063d76aSMatthew Dillon.Pp
796454ba768SRuslan ErmilovThe
797454ba768SRuslan Ermilov.Xr syslogd 8
798454ba768SRuslan Ermilovdaemon can be attacked directly and it is strongly recommended that you use
799568e4cbbSGuy Helmerthe
800568e4cbbSGuy Helmer.Fl s
801568e4cbbSGuy Helmeroption whenever possible, and the
802568e4cbbSGuy Helmer.Fl a
803568e4cbbSGuy Helmeroption otherwise.
804f063d76aSMatthew Dillon.Pp
805f063d76aSMatthew DillonYou should also be fairly careful
806f063d76aSMatthew Dillonwith connect-back services such as tcpwrapper's reverse-identd, which can
807454ba768SRuslan Ermilovbe attacked directly.
808454ba768SRuslan ErmilovYou generally do not want to use the reverse-ident
809f063d76aSMatthew Dillonfeature of tcpwrappers for this reason.
810f063d76aSMatthew Dillon.Pp
811f063d76aSMatthew DillonIt is a very good idea to protect internal services from external access
812454ba768SRuslan Ermilovby firewalling them off at your border routers.
813454ba768SRuslan ErmilovThe idea here is to prevent
814f063d76aSMatthew Dillonsaturation attacks from outside your LAN, not so much to protect internal
815454ba768SRuslan Ermilovservices from network-based root compromise.
816454ba768SRuslan ErmilovAlways configure an exclusive
817454ba768SRuslan Ermilovfirewall, i.e.,
818568e4cbbSGuy Helmer.So
81947afd1f8SDaniel Harrisfirewall everything
82047afd1f8SDaniel Harris.Em except
82147afd1f8SDaniel Harrisports A, B, C, D, and M-Z
822568e4cbbSGuy Helmer.Sc .
823568e4cbbSGuy HelmerThis
824f063d76aSMatthew Dillonway you can firewall off all of your low ports except for certain specific
825454ba768SRuslan Ermilovservices such as
826454ba768SRuslan Ermilov.Xr talkd 8 ,
827454ba768SRuslan Ermilov.Xr sendmail 8 ,
828f063d76aSMatthew Dillonand other internet-accessible services.
829f063d76aSMatthew DillonIf you try to configure the firewall the other
83047afd1f8SDaniel Harrisway \(em as an inclusive or permissive firewall, there is a good chance that you
831568e4cbbSGuy Helmerwill forget to
832454ba768SRuslan Ermilov.Dq close
833568e4cbbSGuy Helmera couple of services or that you will add a new internal
834454ba768SRuslan Ermilovservice and forget to update the firewall.
835454ba768SRuslan ErmilovYou can still open up the
836f063d76aSMatthew Dillonhigh-numbered port range on the firewall to allow permissive-like operation
837454ba768SRuslan Ermilovwithout compromising your low ports.
838454ba768SRuslan ErmilovAlso take note that
839f6f8f44dSAlexey Zelkin.Fx
840568e4cbbSGuy Helmerallows you to
841f063d76aSMatthew Dilloncontrol the range of port numbers used for dynamic binding via the various
842454ba768SRuslan Ermilov.Va net.inet.ip.portrange
843454ba768SRuslan Ermilovsysctl's
844454ba768SRuslan Ermilov.Pq Dq Li "sysctl net.inet.ip.portrange" ,
845568e4cbbSGuy Helmerwhich can also
846454ba768SRuslan Ermilovease the complexity of your firewall's configuration.
847454ba768SRuslan ErmilovI usually use a normal
848f063d76aSMatthew Dillonfirst/last range of 4000 to 5000, and a hiport range of 49152 to 65535, then
849568e4cbbSGuy Helmerblock everything under 4000 off in my firewall
850c4d9468eSRuslan Ermilov(except for certain specific
851c4d9468eSRuslan Ermilovinternet-accessible ports, of course).
852f063d76aSMatthew Dillon.Pp
853454ba768SRuslan ErmilovAnother common DoS attack is called a springboard attack \(em to attack a server
854f063d76aSMatthew Dillonin a manner that causes the server to generate responses which then overload
855454ba768SRuslan Ermilovthe server, the local network, or some other machine.
856454ba768SRuslan ErmilovThe most common attack
857454ba768SRuslan Ermilovof this nature is the ICMP PING BROADCAST attack.
858454ba768SRuslan ErmilovThe attacker spoofs ping
859f063d76aSMatthew Dillonpackets sent to your LAN's broadcast address with the source IP address set
860454ba768SRuslan Ermilovto the actual machine they wish to attack.
861454ba768SRuslan ErmilovIf your border routers are not
862f063d76aSMatthew Dillonconfigured to stomp on ping's to broadcast addresses, your LAN winds up
863f063d76aSMatthew Dillongenerating sufficient responses to the spoofed source address to saturate the
864f063d76aSMatthew Dillonvictim, especially when the attacker uses the same trick on several dozen
865454ba768SRuslan Ermilovbroadcast addresses over several dozen different networks at once.
866454ba768SRuslan ErmilovBroadcast attacks of over a hundred and twenty megabits have been measured.
867454ba768SRuslan ErmilovA second common springboard attack is against the ICMP error reporting system.
868454ba768SRuslan ErmilovBy
869f063d76aSMatthew Dillonconstructing packets that generate ICMP error responses, an attacker can
870f063d76aSMatthew Dillonsaturate a server's incoming network and cause the server to saturate its
871454ba768SRuslan Ermilovoutgoing network with ICMP responses.
872454ba768SRuslan ErmilovThis type of attack can also crash the
873454ba768SRuslan Ermilovserver by running it out of
874454ba768SRuslan Ermilov.Vt mbuf Ns 's ,
875454ba768SRuslan Ermilovespecially if the server cannot drain the
876454ba768SRuslan ErmilovICMP responses it generates fast enough.
877454ba768SRuslan ErmilovThe
878f6f8f44dSAlexey Zelkin.Fx
879568e4cbbSGuy Helmerkernel has a new kernel
880454ba768SRuslan Ermilovcompile option called
881454ba768SRuslan Ermilov.Dv ICMP_BANDLIM
882454ba768SRuslan Ermilovwhich limits the effectiveness of these
883454ba768SRuslan Ermilovsorts of attacks.
884454ba768SRuslan ErmilovThe last major class of springboard attacks is related to
885454ba768SRuslan Ermilovcertain internal
886454ba768SRuslan Ermilov.Xr inetd 8
887454ba768SRuslan Ermilovservices such as the UDP echo service.
888454ba768SRuslan ErmilovAn attacker
889f063d76aSMatthew Dillonsimply spoofs a UDP packet with the source address being server A's echo port,
890f063d76aSMatthew Dillonand the destination address being server B's echo port, where server A and B
891454ba768SRuslan Ermilovare both on your LAN.
892454ba768SRuslan ErmilovThe two servers then bounce this one packet back and
893454ba768SRuslan Ermilovforth between each other.
894454ba768SRuslan ErmilovThe attacker can overload both servers and their
895454ba768SRuslan ErmilovLANs simply by injecting a few packets in this manner.
896454ba768SRuslan ErmilovSimilar problems
897454ba768SRuslan Ermilovexist with the internal chargen port.
898454ba768SRuslan ErmilovA competent sysadmin will turn off all
899454ba768SRuslan Ermilovof these
900454ba768SRuslan Ermilov.Xr inetd 8 Ns -internal
901454ba768SRuslan Ermilovtest services.
902d93b26d6SMatthew Dillon.Sh ACCESS ISSUES WITH KERBEROS AND SSH
903454ba768SRuslan ErmilovThere are a few issues with both Kerberos and SSH that need to be addressed
904454ba768SRuslan Ermilovif you intend to use them.
905454ba768SRuslan ErmilovKerberos5 is an excellent authentication
906454ba768SRuslan Ermilovprotocol but the kerberized
907454ba768SRuslan Ermilov.Xr telnet 1
908454ba768SRuslan Ermilovand
909454ba768SRuslan Ermilov.Xr rlogin 1
910454ba768SRuslan Ermilovsuck rocks.
911454ba768SRuslan ErmilovThere are bugs that make them unsuitable for dealing with binary streams.
912454ba768SRuslan ErmilovAlso, by default
913454ba768SRuslan ErmilovKerberos does not encrypt a session unless you use the
914d93b26d6SMatthew Dillon.Fl x
915454ba768SRuslan Ermilovoption.
916454ba768SRuslan ErmilovSSH encrypts everything by default.
917d93b26d6SMatthew Dillon.Pp
918454ba768SRuslan ErmilovSSH works quite well in every respect except when it is set up to
9199baaab27SDima Dorfmanforward encryption keys.
9209baaab27SDima DorfmanWhat this means is that if you have a secure workstation holding
921454ba768SRuslan Ermilovkeys that give you access to the rest of the system, and you
922454ba768SRuslan Ermilov.Xr ssh 1
923454ba768SRuslan Ermilovto an
924454ba768SRuslan Ermilovunsecure machine, your keys become exposed.
925454ba768SRuslan ErmilovThe actual keys themselves are
926454ba768SRuslan Ermilovnot exposed, but
927454ba768SRuslan Ermilov.Xr ssh 1
928454ba768SRuslan Ermilovinstalls a forwarding port for the duration of your
92947afd1f8SDaniel Harrislogin and if an attacker has broken root on the unsecure machine he can utilize
930d93b26d6SMatthew Dillonthat port to use your keys to gain access to any other machine that your
931d93b26d6SMatthew Dillonkeys unlock.
932d93b26d6SMatthew Dillon.Pp
933454ba768SRuslan ErmilovWe recommend that you use SSH in combination with Kerberos whenever possible
934454ba768SRuslan Ermilovfor staff logins.
935454ba768SRuslan ErmilovSSH can be compiled with Kerberos support.
936454ba768SRuslan ErmilovThis reduces
937454ba768SRuslan Ermilovyour reliance on potentially exposable SSH keys while at the same time
938454ba768SRuslan Ermilovprotecting passwords via Kerberos.
939454ba768SRuslan ErmilovSSH keys
940d93b26d6SMatthew Dillonshould only be used for automated tasks from secure machines (something
941454ba768SRuslan Ermilovthat Kerberos is unsuited to).
942454ba768SRuslan ErmilovWe also recommend that you either turn off
943454ba768SRuslan Ermilovkey-forwarding in the SSH configuration, or that you make use of the
944454ba768SRuslan Ermilov.Va from Ns = Ns Ar IP/DOMAIN
945454ba768SRuslan Ermilovoption that SSH allows in its
946d93b26d6SMatthew Dillon.Pa authorized_keys
9477c86a74bSMike Pritchardfile to make the key only usable to entities logging in from specific
948d93b26d6SMatthew Dillonmachines.
949*762caeb4SKonstantin Belousov.Sh KNOBS AND TWEAKS
950*762caeb4SKonstantin Belousov.Fx
951*762caeb4SKonstantin Belousovprovides several knobs and tweak handles that make some introspection
952*762caeb4SKonstantin Belousovinformation access more restricted.
953*762caeb4SKonstantin BelousovSome people consider this as improving system security, so the knobs are
954*762caeb4SKonstantin Belousovbriefly listed there, together with controls which enable some mitigations
955*762caeb4SKonstantin Belousovof the hardware state leaks.
956*762caeb4SKonstantin Belousov.Bl -tag -width security.bsd.unprivileged_proc_debug
957*762caeb4SKonstantin Belousov.It Dv security.bsd.see_other_uids
958*762caeb4SKonstantin BelousovControls visibility of processes owned by different uid.
959*762caeb4SKonstantin BelousovThe knob directly affects the
960*762caeb4SKonstantin Belousov.Dv kern.proc
961*762caeb4SKonstantin Belousovsysctls filtering of data, which results in restricted output from
962*762caeb4SKonstantin Belousovutilities like
963*762caeb4SKonstantin Belousov.Xr ps 1 .
964*762caeb4SKonstantin Belousov.It Dv security.bsd.see_other_gids
965*762caeb4SKonstantin BelousovSame, for processes owned by different gid.
966*762caeb4SKonstantin Belousov.It Dv security.bsd.see_jail_proc
967*762caeb4SKonstantin BelousovSame, for processes belonging to a jail.
968*762caeb4SKonstantin Belousov.It Dv security.bsd.conservative_signals
969*762caeb4SKonstantin BelousovWhen enabled, unprivileged users are only allowed to send job control
970*762caeb4SKonstantin Belousovand usual termination signals like
971*762caeb4SKonstantin Belousov.Dv SIGKILL ,
972*762caeb4SKonstantin Belousov.Dv SIGINT ,
973*762caeb4SKonstantin Belousovand
974*762caeb4SKonstantin Belousov.Dv SIGTERM ,
975*762caeb4SKonstantin Belousovto the processes executing programs with changed uids.
976*762caeb4SKonstantin Belousov.It Dv security.bsd.unprivileged_proc_debug
977*762caeb4SKonstantin BelousovControls availability of the process debugging facilities to non-root users.
978*762caeb4SKonstantin BelousovSee also
979*762caeb4SKonstantin Belousov.Xr proccontrol 1
980*762caeb4SKonstantin Belousovmode
981*762caeb4SKonstantin Belousov.Dv trace .
982*762caeb4SKonstantin Belousov.It Dv vm.pmap.pti
983*762caeb4SKonstantin BelousovTunable, amd64-only.
984*762caeb4SKonstantin BelousovEnables mode of operation of virtual memory system where usermode page
985*762caeb4SKonstantin Belousovtables are sanitized to prevent so-called Meltdown information leak on
986*762caeb4SKonstantin Belousovsome Intel CPUs.
987*762caeb4SKonstantin BelousovBy default, the system detects whether the CPU needs the workaround,
988*762caeb4SKonstantin Belousovand enables it automatically.
989*762caeb4SKonstantin BelousovSee also
990*762caeb4SKonstantin Belousov.Xr proccontrol 1
991*762caeb4SKonstantin Belousovmode
992*762caeb4SKonstantin Belousov.Dv kpti .
993*762caeb4SKonstantin Belousov.It Dv hw.mds_disable
994*762caeb4SKonstantin Belousovamd64 and i386.
995*762caeb4SKonstantin BelousovControls Microarchitectural Data Sampling hardware information leak
996*762caeb4SKonstantin Belousovmitigation.
997*762caeb4SKonstantin Belousov.It Dv hw.spec_store_bypass_disable
998*762caeb4SKonstantin Belousovamd64 and i386.
999*762caeb4SKonstantin BelousovControls Speculative Store Bypass hardware information leak mitigation.
1000*762caeb4SKonstantin Belousov.It Dv hw.ibrs_disable
1001*762caeb4SKonstantin Belousovamd64 and i386.
1002*762caeb4SKonstantin BelousovControls Indirect Branch Restricted Speculation hardware information leak
1003*762caeb4SKonstantin Belousovmitigation.
1004*762caeb4SKonstantin Belousov.It Dv machdep.syscall_ret_l1d_flush
1005*762caeb4SKonstantin Belousovamd64.
1006*762caeb4SKonstantin BelousovControls force-flush of L1D cache on return from syscalls which report
1007*762caeb4SKonstantin Belousoverrors other than
1008*762caeb4SKonstantin Belousov.Ev EEXIST ,
1009*762caeb4SKonstantin Belousov.Ev EAGAIN ,
1010*762caeb4SKonstantin Belousov.Ev EXDEV ,
1011*762caeb4SKonstantin Belousov.Ev ENOENT ,
1012*762caeb4SKonstantin Belousov.Ev ENOTCONN ,
1013*762caeb4SKonstantin Belousovand
1014*762caeb4SKonstantin Belousov.Ev EINPROGRESS .
1015*762caeb4SKonstantin BelousovThis is mostly a paranoid setting added to prevent hypothetical exploitation
1016*762caeb4SKonstantin Belousovof unknown gadgets for unknown hardware issues.
1017*762caeb4SKonstantin BelousovThe error codes exclusion list is composed of the most common errors which
1018*762caeb4SKonstantin Belousovtypically occurs on normal system operation.
1019*762caeb4SKonstantin Belousov.It Dv machdep.nmi_flush_l1d_sw
1020*762caeb4SKonstantin Belousovamd64.
1021*762caeb4SKonstantin BelousovControls force-flush of L1D cache on NMI;
1022*762caeb4SKonstantin Belousovthis provides software assist for bhyve mitigation of L1 terminal fault
1023*762caeb4SKonstantin Belousovhardware information leak.
1024*762caeb4SKonstantin Belousov.It Dv hw.vmm.vmx.l1d_flush
1025*762caeb4SKonstantin Belousovamd64.
1026*762caeb4SKonstantin BelousovControls the mitigation of L1 Terminal Fault in bhyve hypervisor.
1027*762caeb4SKonstantin Belousov.It Dv kern.elf32.aslr.enable
1028*762caeb4SKonstantin BelousovControls system-global Address Space Layour Randomization (ASLR) for
1029*762caeb4SKonstantin Belousovnormal non-PIE (Position Independent Executable) 32bit binaries.
1030*762caeb4SKonstantin BelousovSee also
1031*762caeb4SKonstantin Belousov.Xr proccontrol 1
1032*762caeb4SKonstantin Belousovmode
1033*762caeb4SKonstantin Belousov.Dv aslr ,
1034*762caeb4SKonstantin Belousovalso affected by the per-image control note flag.
1035*762caeb4SKonstantin Belousov.It Dv kern.elf32.aslr.pie_enable
1036*762caeb4SKonstantin BelousovControls system-global Address Space Layout Randomization for
1037*762caeb4SKonstantin Belousovposition-independent (PIE) 32bit binaries.
1038*762caeb4SKonstantin Belousov.It Dv kern.elf32.aslr.honor_sbrk
1039*762caeb4SKonstantin BelousovMakes ASLR less aggressive and more compatible with old binaries
1040*762caeb4SKonstantin Belousovrelying on the sbrk area.
1041*762caeb4SKonstantin Belousov.It Dv kern.elf32.aslr.aslr_stack_gap
1042*762caeb4SKonstantin BelousovIf ASLR is enabled for a binary, a non-zero value creates a randomized
1043*762caeb4SKonstantin Belousovstack gap between strings and the end of the aux vector.
1044*762caeb4SKonstantin BelousovThe value is the maximum percentage of main stack to waste on the gap.
1045*762caeb4SKonstantin BelousovCannot be greater than 50, i.e., at most half of the stack.
1046*762caeb4SKonstantin Belousov.It Dv kern.elf64.aslr.enable
1047*762caeb4SKonstantin Belousov64bit binaries ASLR control.
1048*762caeb4SKonstantin Belousov.It Dv kern.elf64.aslr.pie_enable
1049*762caeb4SKonstantin Belousov64bit PIE binaries ASLR control.
1050*762caeb4SKonstantin Belousov.It Dv kern.elf64.aslr.honor_sbrk
1051*762caeb4SKonstantin Belousov64bit binaries ASLR sbrk compatibility control.
1052*762caeb4SKonstantin Belousov.It Dv kern.elf32.aslr.aslr_stack_gap
1053*762caeb4SKonstantin BelousovControls stack gap for 64bit binaries.
1054*762caeb4SKonstantin Belousov.It Dv kern.elf32.nxstack
1055*762caeb4SKonstantin BelousovEnables non-executable stack for 32bit processes.
1056*762caeb4SKonstantin BelousovEnabled by default if supported by hardware and corresponding binary.
1057*762caeb4SKonstantin Belousov.It Dv kern.elf64.nxstack
1058*762caeb4SKonstantin BelousovEnables non-executable stack for 64bit processes.
1059*762caeb4SKonstantin Belousov.El
1060f063d76aSMatthew Dillon.Sh SEE ALSO
1061f063d76aSMatthew Dillon.Xr chflags 1 ,
1062f063d76aSMatthew Dillon.Xr find 1 ,
1063f063d76aSMatthew Dillon.Xr md5 1 ,
1064f6f8f44dSAlexey Zelkin.Xr netstat 1 ,
10658596de53SNik Clayton.Xr openssl 1 ,
1066*762caeb4SKonstantin Belousov.Xr proccontrol 1 ,
1067*762caeb4SKonstantin Belousov.Xr ps 1 ,
10685521ff5aSRuslan Ermilov.Xr ssh 1 ,
1069f0ea72a0SChristian Brueffer.Xr xdm 1 Pq Pa ports/x11/xorg-clients ,
1070d93b26d6SMatthew Dillon.Xr group 5 ,
1071ad27d066SMatthew Dillon.Xr ttys 5 ,
10728596de53SNik Clayton.Xr accton 8 ,
1073d93b26d6SMatthew Dillon.Xr init 8 ,
10748596de53SNik Clayton.Xr sshd 8 ,
1075ad27d066SMatthew Dillon.Xr sysctl 8 ,
10768596de53SNik Clayton.Xr syslogd 8 ,
1077ad27d066SMatthew Dillon.Xr vipw 8
1078f063d76aSMatthew Dillon.Sh HISTORY
1079f063d76aSMatthew DillonThe
1080f063d76aSMatthew Dillon.Nm
1081568e4cbbSGuy Helmermanual page was originally written by
1082568e4cbbSGuy Helmer.An Matthew Dillon
1083568e4cbbSGuy Helmerand first appeared
1084568e4cbbSGuy Helmerin
108585752545SGuy Helmer.Fx 3.1 ,
1086568e4cbbSGuy HelmerDecember 1998.
1087