Table of Contents for
Practical UNIX and Internet Security, 3rd Edition

Version ebook / Retour

Cover image for bash Cookbook, 2nd Edition Practical UNIX and Internet Security, 3rd Edition by Alan Schwartz Published by O'Reilly Media, Inc., 2003
  1. Cover
  2. Practical Unix & Internet Security, 3rd Edition
  3. A Note Regarding Supplemental Files
  4. Preface
  5. Unix “Security”?
  6. Scope of This Book
  7. Which Unix System?
  8. Conventions Used in This Book
  9. Comments and Questions
  10. Acknowledgments
  11. A Note to Would-Be Attackers
  12. I. Computer Security Basics
  13. 1. Introduction: Some Fundamental Questions
  14. What Is Computer Security?
  15. What Is an Operating System?
  16. What Is a Deployment Environment?
  17. Summary
  18. 2. Unix History and Lineage
  19. History of Unix
  20. Security and Unix
  21. Role of This Book
  22. Summary
  23. 3. Policies and Guidelines
  24. Planning Your Security Needs
  25. Risk Assessment
  26. Cost-Benefit Analysis and Best Practices
  27. Policy
  28. Compliance Audits
  29. Outsourcing Options
  30. The Problem with Security Through Obscurity
  31. Summary
  32. II. Security Building Blocks
  33. 4. Users, Passwords, and Authentication
  34. Logging in with Usernames and Passwords
  35. The Care and Feeding of Passwords
  36. How Unix Implements Passwords
  37. Network Account and Authorization Systems
  38. Pluggable Authentication Modules (PAM)
  39. Summary
  40. 5. Users, Groups, and the Superuser
  41. Users and Groups
  42. The Superuser (root)
  43. The su Command: Changing Who You Claim to Be
  44. Restrictions on the Superuser
  45. Summary
  46. 6. Filesystems and Security
  47. Understanding Filesystems
  48. File Attributes and Permissions
  49. chmod: Changing a File’s Permissions
  50. The umask
  51. SUID and SGID
  52. Device Files
  53. Changing a File’s Owner or Group
  54. Summary
  55. 7. Cryptography Basics
  56. Understanding Cryptography
  57. Symmetric Key Algorithms
  58. Public Key Algorithms
  59. Message Digest Functions
  60. Summary
  61. 8. Physical Security for Servers
  62. Planning for the Forgotten Threats
  63. Protecting Computer Hardware
  64. Preventing Theft
  65. Protecting Your Data
  66. Story: A Failed Site Inspection
  67. Summary
  68. 9. Personnel Security
  69. Background Checks
  70. On the Job
  71. Departure
  72. Other People
  73. Summary
  74. III. Network and Internet Security
  75. 10. Modems and Dialup Security
  76. Modems: Theory of Operation
  77. Modems and Security
  78. Modems and Unix
  79. Additional Security for Modems
  80. Summary
  81. 11. TCP/IP Networks
  82. Networking
  83. IP: The Internet Protocol
  84. IP Security
  85. Summary
  86. 12. Securing TCP and UDP Services
  87. Understanding Unix Internet Servers and Services
  88. Controlling Access to Servers
  89. Primary Unix Network Services
  90. Managing Services Securely
  91. Putting It All Together: An Example
  92. Summary
  93. 13. Sun RPC
  94. Remote Procedure Call (RPC)
  95. Secure RPC (AUTH_DES)
  96. Summary
  97. 14. Network-Based Authentication Systems
  98. Sun’s Network Information Service (NIS)
  99. Sun’s NIS+
  100. Kerberos
  101. LDAP
  102. Other Network Authentication Systems
  103. Summary
  104. 15. Network Filesystems
  105. Understanding NFS
  106. Server-Side NFS Security
  107. Client-Side NFS Security
  108. Improving NFS Security
  109. Some Last Comments on NFS
  110. Understanding SMB
  111. Summary
  112. 16. Secure Programming Techniques
  113. One Bug Can Ruin Your Whole Day . . .
  114. Tips on Avoiding Security-Related Bugs
  115. Tips on Writing Network Programs
  116. Tips on Writing SUID/SGID Programs
  117. Using chroot( )
  118. Tips on Using Passwords
  119. Tips on Generating Random Numbers
  120. Summary
  121. IV. Secure Operations
  122. 17. Keeping Up to Date
  123. Software Management Systems
  124. Updating System Software
  125. Summary
  126. 18. Backups
  127. Why Make Backups?
  128. Backing Up System Files
  129. Software for Backups
  130. Summary
  131. 19. Defending Accounts
  132. Dangerous Accounts
  133. Monitoring File Format
  134. Restricting Logins
  135. Managing Dormant Accounts
  136. Protecting the root Account
  137. One-Time Passwords
  138. Administrative Techniques for Conventional Passwords
  139. Intrusion Detection Systems
  140. Summary
  141. 20. Integrity Management
  142. The Need for Integrity
  143. Protecting Integrity
  144. Detecting Changes After the Fact
  145. Integrity-Checking Tools
  146. Summary
  147. 21. Auditing, Logging, and Forensics
  148. Unix Log File Utilities
  149. Process Accounting: The acct/pacct File
  150. Program-Specific Log Files
  151. Designing a Site-Wide Log Policy
  152. Handwritten Logs
  153. Managing Log Files
  154. Unix Forensics
  155. Summary
  156. V. Handling Security Incidents
  157. 22. Discovering a Break-in
  158. Prelude
  159. Discovering an Intruder
  160. Cleaning Up After the Intruder
  161. Case Studies
  162. Summary
  163. 23. Protecting Against Programmed Threats
  164. Programmed Threats: Definitions
  165. Damage
  166. Authors
  167. Entry
  168. Protecting Yourself
  169. Preventing Attacks
  170. Summary
  171. 24. Denial of Service Attacks and Solutions
  172. Types of Attacks
  173. Destructive Attacks
  174. Overload Attacks
  175. Network Denial of Service Attacks
  176. Summary
  177. 25. Computer Crime
  178. Your Legal Options After a Break-in
  179. Criminal Hazards
  180. Criminal Subject Matter
  181. Summary
  182. 26. Who Do You Trust?
  183. Can You Trust Your Computer?
  184. Can You Trust Your Suppliers?
  185. Can You Trust People?
  186. Summary
  187. VI. Appendixes
  188. A. Unix Security Checklist
  189. Preface
  190. Chapter 1: Introduction: Some Fundamental Questions
  191. Chapter 2: Unix History and Lineage
  192. Chapter 3: Policies and Guidelines
  193. Chapter 4: Users, Passwords, and Authentication
  194. Chapter 5: Users, Groups, and the Superuser
  195. Chapter 6: Filesystems and Security
  196. Chapter 7: Cryptography Basics
  197. Chapter 8: Physical Security for Servers
  198. Chapter 9: Personnel Security
  199. Chapter 10: Modems and Dialup Security
  200. Chapter 11: TCP/IP Networks
  201. Chapter 12: Securing TCP and UDP Services
  202. Chapter 13: Sun RPC
  203. Chapter 14: Network-Based Authentication Systems
  204. Chapter 15: Network Filesystems
  205. Chapter 16: Secure Programming Techniques
  206. Chapter 17: Keeping Up to Date
  207. Chapter 18: Backups
  208. Chapter 19: Defending Accounts
  209. Chapter 20: Integrity Management
  210. Chapter 21: Auditing, Logging, and Forensics
  211. Chapter 22: Discovering a Break-In
  212. Chapter 23: Protecting Against Programmed Threats
  213. Chapter 24: Denial of Service Attacks and Solutions
  214. Chapter 25: Computer Crime
  215. Chapter 26: Who Do You Trust?
  216. Appendix A: Unix Security Checklist
  217. Appendix B: Unix Processes
  218. Appendixes C, D, and E: Paper Sources, Electronic Sources, and Organizations
  219. B. Unix Processes
  220. About Processes
  221. Signals
  222. Controlling and Examining Processes
  223. Starting Up Unix and Logging In
  224. C. Paper Sources
  225. Unix Security References
  226. Other Computer References
  227. D. Electronic Resources
  228. Mailing Lists
  229. Web Sites
  230. Usenet Groups
  231. Software Resources
  232. E. Organizations
  233. Professional Organizations
  234. U.S. Government Organizations
  235. Emergency Response Organizations
  236. Index
  237. Index
  238. Index
  239. Index
  240. Index
  241. Index
  242. Index
  243. Index
  244. Index
  245. Index
  246. Index
  247. Index
  248. Index
  249. Index
  250. Index
  251. Index
  252. Index
  253. Index
  254. Index
  255. Index
  256. Index
  257. Index
  258. Index
  259. Index
  260. Index
  261. Index
  262. Index
  263. About the Authors
  264. Colophon
  265. Copyright

A

absolute pathnames, Current Directory and Paths
Absolute Software Corporation, Laptop Recovery Software and Services
abuse account, Alternative contact strategies
access, Expectations, Controlling Physical Access, Auditing Access
open, Expectations
physical, to hardware, Controlling Physical Access, Auditing Access
access control, Types of Security, Types of Security, Types of Security, Controlling Access to Servers, NNTP: Network News Transport Protocol (TCP Port 119), X securityThe xhost facility, Using NIS+, NIS+ Limitations, Restricted Filesystem with the chroot( ) JailChecking new software
access control lists, NNTP: Network News Transport Protocol (TCP Port 119) (see ACL)
file permissions, Types of Security (see permissions)
Internet servers, Controlling Access to Servers
NIS+ objects, Using NIS+, NIS+ Limitations
physical access to computers, Types of Security (see physical security)
restricted filesystems, Restricted Filesystem with the chroot( ) JailChecking new software
X Window System, X securityThe xhost facility
access devices, Access Devices and Copyrighted Software
ACCESS function (RPC), The NFS Protocol
access() system call, Design Principles
access_log file, access_log Log File
accidents, Food and drink (see environmental dangers)
accounting, process, Process Accounting: The acct/pacct Filemessages Log File
accounts, Logging in with Usernames and Passwords, Logging in with Usernames and Passwords, Entering your password, Smoking Joes, Password Synchronization: Using the Same Password on Many Machines, Viewing Accounts in the Network Database, Including or excluding specific accounts, Importing accounts without really importing accounts, Using netgroups to limit the importing of accounts, Accounts Without Passwords, Default AccountsOther accounts, Other accounts, Other accounts, Accounts That Run a Single Command, Open AccountsPotential problems with restricted shells, How to set up a restricted account with rsh, Group Accounts, Managing Dormant AccountsFinding Dormant Accounts, Disabling an Account by Changing the Account’s Password, Changing the Account’s Login Shell, Finding Dormant Accounts, Finding Dormant Accounts, Protecting the root AccountTrusted computing base, Integrating One-Time Passwords with Unix, Joetest: a simple password cracker, Algorithm and Library Changes, Account Names Revisited: Using Aliases for Increased Security, Exception and activity reports, New accounts, Chapter 19: Defending Accounts
aliases for, Account Names Revisited: Using Aliases for Increased Security
changing login shell, Changing the Account’s Login Shell, Integrating One-Time Passwords with Unix
changing password, Disabling an Account by Changing the Account’s Password
created by intruders, New accounts
default, Default AccountsOther accounts
demo, Other accounts
dormant, Managing Dormant AccountsFinding Dormant Accounts
expiring, Finding Dormant Accounts
group, Group Accounts
historical, Finding Dormant Accounts
importing to NIS server, Including or excluding specific accounts, Importing accounts without really importing accounts, Using netgroups to limit the importing of accounts
Joes, Smoking Joes, Joetest: a simple password cracker
locking automatically, Entering your password
logging changes to, Exception and activity reports
names commonly attacked, Other accounts
names for, Logging in with Usernames and Passwords (see usernames)
open, Open AccountsPotential problems with restricted shells, Algorithm and Library Changes
restricted, with rsh, How to set up a restricted account with rsh
root, protecting, Protecting the root AccountTrusted computing base
running single command, Accounts That Run a Single Command
security checklist for, Chapter 19: Defending Accounts
synchronized passwords on, Password Synchronization: Using the Same Password on Many Machines
viewing in network database, Viewing Accounts in the Network Database
without passwords, Accounts Without Passwords
acct file, Essential Log Files, Process Accounting: The acct/pacct File, Process Accounting: The acct/pacct File
acctcom program, Process Accounting: The acct/pacct File
accton command, Accounting with BSD and Linux
ACK bit, TCP
ACL (Access Control List), The Failed P1003.1e/2c Unix Security Standard, File Permissions, Access Control Lists, NNTP: Network News Transport Protocol (TCP Port 119)
indicated by + in file permission, File Permissions
NNTP with, NNTP: Network News Transport Protocol (TCP Port 119)
part of Unix security standard, The Failed P1003.1e/2c Unix Security Standard
ACM (Association for Computing Machinery), Cryptography Papers and Other Publications, Association for Computing Machinery (ACM)
active FTP, FTP active mode
activists, Authors, Authors
as authors of programmed threats, Authors
planting programmed threats, Authors
aculog file, Essential Log Files, aculog Log File
adb, gdb: Controlling a Process, gcore: Dumping Core
command, gdb: Controlling a Process
debugger, gcore: Dumping Core
add-on functionality, Add-on Functionality Breeds ProblemsAdd-on Functionality Breeds Problems
addresses, Internet Addresses, CIDR addresses
CIDR, CIDR addresses
Internet, Internet Addresses (see IP addresses)
Adleman, Leonard M., Public Key Algorithms, Cryptography Papers and Other Publications
“A Method for Obtaining Digital Signatures”, Cryptography Papers and Other Publications
admintool command, Package-Based Systems
Advanced Encryption Standard (AES), Key Length with Symmetric Key Algorithms
Advanced Research Projects Agency (ARPA), History of Unix
air ducts, access through, Entrance through air ducts
AIX, Unix Wars 2: SVR4 versus OSF/1, Allowing only FTP access, Trusted path, Assigning Passwords to Users, The syslog.conf configuration file
file for new shells, Allowing only FTP access
history of, Unix Wars 2: SVR4 versus OSF/1
preventing users from changing passwords, Assigning Passwords to Users
silent ignore.* in syslog.conf, The syslog.conf configuration file
trusted path, Trusted path
alarms, Fire (see detectors)
Albitz, Paul (DNS and BIND), Unix Programming and System Administration
algorithmic attacks on encryption, Analytic attacks
aliases, SMTP: Simple Mail Transfer Protocol (TCP Port 25), SMTP: Simple Mail Transfer Protocol (TCP Port 25), Configuration files, Overflowing system mailboxes, Delivery to programs, Which Files to Back Up?, Account Names Revisited: Using Aliases for Increased Security, Back Doors and Trap Doors, /etc/mail/aliases, aliases.dir, aliases.pag, and aliases.db, /etc/mail/aliases, aliases.dir, aliases.pag, and aliases.db
account, Account Names Revisited: Using Aliases for Increased Security
decode, Delivery to programs
email, SMTP: Simple Mail Transfer Protocol (TCP Port 25), Back Doors and Trap Doors, /etc/mail/aliases, aliases.dir, aliases.pag, and aliases.db
back door using, Back Doors and Trap Doors
file for, SMTP: Simple Mail Transfer Protocol (TCP Port 25), Configuration files, Which Files to Back Up?, /etc/mail/aliases, aliases.dir, aliases.pag, and aliases.db
phantom email, avoiding with, Overflowing system mailboxes
All Tomorrow’s Parties (Gibson, William), Understanding the Computer Security “Culture”
Allman, Eric, SMTP: Simple Mail Transfer Protocol (TCP Port 25)
allow-transfers directive, DNS zone transfers
Amanda backup system, Users and Groups, Types of Backups, Network Backup Systems
amanda user, Users and Groups
Amateur Action Bulletin Board System, Amateur Action
American Civil Liberties Union v. Reno, Communications Decency Act
American Society for Industrial Security (ASIS), American Society for Industrial Security (ASIS)
Amoroso, Edward (Fundamentals of Computer Security Technology), General Computer Security
analog program, access_log Log File
analytic attacks on encryption, Analytic attacks
ancestor directories, detecting changes to, Ancestor directories
Anderson, Ross (Security Engineering), General Computer Security
ANI (Automatic Number Identification), Caller-ID and Automatic Number Identification, Additional Security for Modems
anlpasswd package, Constraining Passwords
anonymous FTP, Users and Groups, Anonymous FTP, Setting up anonymous FTP with the standard Unix FTP serverSetting up anonymous FTP with the standard Unix FTP server
ANSI, Software Quality, Coding Standards
C compiler, Coding Standards
C standards, Software Quality
answer mode, Originate and Answer
answer testing, modems, Answer testing
answerback terminal mode, Trojan horses and, Terminal-based Trojan horses
Apache web servers, Software Quality, Starting the Servers, Overall security of Berkeley sendmail versus other MTAs, The Lesson of the Internet Worm, Algorithm and Library Changes, access_log Log File, Service Overloading, Tripwire
always running, Starting the Servers
buffer overflows in, Software Quality
crypt() needed to verify passwords, Algorithm and Library Changes
logging from, access_log Log File
requests increasing forked processes, Service Overloading
security problems with, Overall security of Berkeley sendmail versus other MTAs
SSL library for, The Lesson of the Internet Worm
Tripwire for, Tripwire
APOP option (POP), POP, POPS: Post Office Protocol, and IMAP, IMAPS: Internet Message Access Protocol (TCP Ports 109, 110, 143, 993, 995)
append-only files, Immutable and Append-Only FilesKernel security level
AppleTalk protocol, Adding authentication to TCP/IP with ident
application-level encryption, Using Encryption to Protect IP Networks from Eavesdropping
Applied Cryptography: Protocols, Algorithms, and Source Code in C (Schneier, Bruce), Cryptography Books
ar program, Simple Archives, Network Backup Systems
archiving information, The Role of Backups, The Role of Backups, Simple Archives
(see also backups)
arguments, checking, Coding Standards
arp command, Preserving the Evidence
ARP table, printing contents of, Preserving the Evidence
ARPA (Advanced Research Projects Agency), History of Unix
ARPANET network, The Internet
arpwatch program, Eavesdropping over local area networks (Ethernet and twisted pairs)
ASIS (American Society for Industrial Security), American Society for Industrial Security (ASIS)
assert macro, Coding Standards
assessing risks, Risk AssessmentReview Your Risks, Risk Management Means Common Sense
assets, Identifying assets, Identifying threatsReview Your Risks, The Physical Security Plan
identifying, Identifying assets
identifying threats to, Identifying threatsReview Your Risks
physical, The Physical Security Plan
Association for Computing Machinery, Cryptography Papers and Other Publications (see ACM)
asymmetric key algorithms, Cryptographic Algorithms and Functions, Cryptographic Algorithms and Functions
(see also public key algorithms)
Asynchronous Transfer Mode (ATM), IP: The Internet Protocol
@ Large (Freedman, David H. and Mann, Charles C.), Computer Crime and Law
at program, The at program, CPU overload attacks
at sign (@), in xhost list, The xhost facility
AT&T System V, Which Unix System? (see System V Unix)
Athena, Project, Kerberos, Kerberos
(see also Kerberos system)
atime, Inodes, File Times
Atkins, Derek, Key search attacks
Atkins, E. Todd, Swatch: A Log File Analysis Tool, Swatch
ATM (Asynchronous Transfer Mode), IP: The Internet Protocol
attackers, computer, Introduction: Some Fundamental Questions (see intruders)
audio device, Picking a Random Seed
audit IDs, Other IDs, Essential Log Files
audit trail, Auditing, Logging, and Forensics, Auditing, Logging, and Forensics
(see also log files)
auditing, Types of Security, Compliance Audits, Auditing Access, Network-Based Authentication Systems, Auditing, Logging, and Forensics, Auditing, Logging, and Forensics, Essential Log Files, Chapter 21: Auditing, Logging, and Forensics
(see also logging)
C2 audit, Essential Log Files
compliance audit, Compliance Audits
security checklist for, Chapter 21: Auditing, Logging, and Forensics
transaction audit, Network-Based Authentication Systems
user access to equipment, Auditing Access
auth service, TCP, Identification Protocol (TCP Port 113)
authd service, Things to Do
authdes_win variable, Setting the window
authentication, Standards, Authenticating UsersEntering your password, Public Key Authentication, Pluggable Authentication Modules (PAM)Pluggable Authentication Modules (PAM), Message Digest FunctionsAttacks on Message Digest Functions, Improving AuthenticationAdding authentication to TCP/IP with ident, Authentication and email, ¡April Fools! authentication and Netnews, Adding authentication to TCP/IP with identAdding authentication to TCP/IP with ident, Host authentication with SSHHost authentication with SSH, Client authentication with SSH, TACACS and TACACS+ (UDP Port 49), The xhost facility, RPC AuthenticationAUTH_KERB, Secure RPC AuthenticationSetting the window, Proving your identity, Limitations of Secure RPC, Network-Based Authentication Systems, Kerberos AuthenticationKerberos 4 versus Kerberos 5, Authentication with LDAP, Authentication, User authenticationUser authentication, AuthorizationAuthorization, Chapter 4: Users, Passwords, and Authentication, Chapter 14: Network-Based Authentication Systems
email and, Authentication and email
ident, for TCP/IP, Adding authentication to TCP/IP with identAdding authentication to TCP/IP with ident
IP services, Improving AuthenticationAdding authentication to TCP/IP with ident
Kerberos, Kerberos AuthenticationKerberos 4 versus Kerberos 5
LDAP, Authentication with LDAP
of logins, TACACS and TACACS+ (UDP Port 49)
message digests, Message Digest FunctionsAttacks on Message Digest Functions
Netnews messages, ¡April Fools! authentication and Netnews
for network systems, Network-Based Authentication Systems (see network authentication systems)
PAM, Pluggable Authentication Modules (PAM)Pluggable Authentication Modules (PAM)
public key, Public Key Authentication, Proving your identity, Limitations of Secure RPC
RPC, RPC AuthenticationAUTH_KERB
Samba, User authenticationUser authentication, AuthorizationAuthorization
Secure RPC, Secure RPC AuthenticationSetting the window
security checklist for, Chapter 4: Users, Passwords, and Authentication, Chapter 14: Network-Based Authentication Systems
SMB, Authentication
SSH client, Client authentication with SSH
SSH host, Host authentication with SSHHost authentication with SSH
standards for, Standards
xhost facility, The xhost facility
authenticators, Unix Usernames, Unix Usernames
(see also passwords)
Authenticode, Message Digest Functions
authorization, Authorization (see authentication)
authwarnings option, sendmail, Security concerns with SMTP banners and commands
AUTH_DES authentication, AUTH_DES, Secure RPC (AUTH_DES)Limitations of Secure RPC, Use Secure NFS
AUTH_KERB authentication, AUTH_KERB
AUTH_NONE authentication, AUTH_NONE
AUTH_UNIX authentication, AUTH_UNIX, Remove Group-Write Permission for Files and Directories, Use Secure NFS
autologout shell variable, Built-in shell autologout
Automatic Number Identification, Preface (see ANI)
automatic systems, Building an Automatic Backup System, Abusing Automatic MechanismsIssues with NFS
abuse of, Abusing Automatic MechanismsIssues with NFS
for backups, Building an Automatic Backup System
Auto_Mounter table (NIS+), NIS+ Tables and Other Objects
availability of services, Types of Security
awareness, security, Preface (see security, user awareness of)
awk scripts, Trojan horses in, Trojan horses in mobile code