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

R

rabbit programs, Programmed Threats: Definitions, Bacteria and Rabbits
race conditions, Design Principles
radio transmissions, Electrical noise, Eavesdropping by radio and using TEMPEST, Kinds of eavesdropping
computer malfunctions caused by, Electrical noise
eavesdropping on, Eavesdropping by radio and using TEMPEST, Kinds of eavesdropping
RADIUS (Remote Authentication Dial-In User Service), Using Network Authorization Systems, RADIUS, Caller-ID and Automatic Number Identification
RAID filesystems, Understanding Filesystems
RAM theft, RAM Theft
rand() system call, rand( )
random device, Picking a Random Seed
random numbers, Tips on Generating Random NumbersA Good Random Seed Generator, Tips on Generating Random Numbers, Tips on Generating Random Numbers, Picking a Random SeedA Good Random Seed Generator, Picking a Random Seed
device file abstractions for, Picking a Random Seed
requirements for, Tips on Generating Random Numbers
seeds, Tips on Generating Random Numbers, Picking a Random SeedA Good Random Seed Generator
random() system call, random( )
raw devices, Device Files
rc script, Startup on different Unix systems, Process #1: /etc/init
RC2 algorithm, Common Symmetric Key Algorithms
RC4 algorithm, Common Symmetric Key Algorithms
RC5 algorithm, Common Symmetric Key Algorithms
rcp command, Add-on Functionality Breeds Problems, Network Backup Systems
RCS (Revision Control System), Primary Unix Network Services, Building an Automatic Backup System
RD (Receive Data), The RS-232 Serial Protocol
rdist program, rdist
rdump/rrestore program, Network Backup Systems
read command, File Permissions
READ function (RPC), The NFS Protocol
read permission, File Permissions, Directory Permissions, chmod: Changing a File’s Permissions
directories, Directory Permissions
files, File Permissions
read() system call, timeouts on, Things to Do
read-only filesystems, Read-Only FilesystemsRead-Only Filesystems, Writable system files and directories
READADDR function (RPC), The NFS Protocol
readdir() system call, Directory Permissions
READDIRPLUS function (RPC), The NFS Protocol
READLINK function (RPC), The NFS Protocol
real GIDs, Other IDs
real UIDs, Real and Effective UIDs with the su Command, Process real and effective UIDs
realpath() system call, Things to Avoid
reboots, Key Switches, last program
logged by wtmp file, last program
single-user, Key Switches
Receive Data (RD), The RS-232 Serial Protocol
record locking, mandatory, SGID Bit on Files (System V-Derived Unix Only): Mandatory Record Locking
Red Hat Linux, Businesses adopt Unix, The sulog under Red Hat Linux, /etc/logindevperm, Default Accounts
default accounts for, Default Accounts
sulog, scanning, The sulog under Red Hat Linux
X security, /etc/logindevperm
reiserfs filesystem, The Virtual Filesystem Interface
relative pathnames, Current Directory and Paths
Remote Authentication Dial-In User Service, Using Network Authorization Systems (see RADIUS)
remote command execution, rexec (TCP Port 512)
remote file, Connecting a Modem to Your Computer, aculog Log File
Remote Job Entry (RJE), The /etc/passwd File
remote log server, Unix Log File Utilities
Remote Method Invocation (RMI), Remote Procedure Call (RPC)
remote network filesystems, Turning Off SUID and SGID in Mounted Filesystems
Remote Procedure Call, Sun RPCAUTH_KERB (see RPC)
REMOVE function (RPC), The NFS Protocol
RENAME function (RPC), The NFS Protocol
renice command, CPU overload attacks, Process priority and niceness
replay attacks, Sudden changes in time, Using the ticket-granting ticket
replicated filesystems, Understanding Filesystems
Request to Send (RTS), The RS-232 Serial Protocol
resolution, time, Picking a Random Seed
resolv.conf file, DNS under Unix
resolver library (BIND), DNS under Unix
resolving (DNS), Domain Name System (DNS) (TCP and UDP Port 53)
response teams, Response Personnel?, Response Teams and Vendors, Emergency Response OrganizationsComputer Emergency Response Team Coordination Center (CERT/CC)
mailing lists for, Response Teams and Vendors
trusting, Response Personnel?
restore, Specialized Backup Programs (see dump program)
restore program, Specialized Backup Programs
restricted accounts, How to set up a restricted account with rsh
restricted filesystems, Restricted Filesystem with the chroot( ) JailChecking new software
restricted logins, Restricting Logins
restricted shells, Restricted shellsPotential problems with restricted shells
restricted terminals, Secure Terminals
restrictmailq option, sendmail, Security concerns with SMTP banners and commands
retention of backups, Retention schedule (see backups, retention of)
return codes, checking, Coding Standards
reverse lookup, Authentication and DNS, Things to Do
Revision Control System (RCS), Primary Unix Network Services, Building an Automatic Backup System
rexd service, AUTH_KERB
rexec service, rexec (TCP Port 512)
RFC (Request For Comments), web site for, The /etc/services File
.rhosts file, Trusted hosts and users, Specifying trusted hosts with /etc/hosts.equiv and ~/.rhostsSpecifying trusted hosts with /etc/hosts.equiv and ~/.rhosts, Specifying trusted hosts with /etc/hosts.equiv and ~/.rhosts, Network Setup, Back Doors and Trap Doors
back door in, Back Doors and Trap Doors
searching for, Specifying trusted hosts with /etc/hosts.equiv and ~/.rhosts
RI (Ring Indicator), The RS-232 Serial Protocol
Rijmen, Vincent, Common Symmetric Key Algorithms
Ring Indicator (RI), The RS-232 Serial Protocol
Rinjdael (AES) algorithm, Key Length with Symmetric Key Algorithms, Key Length with Symmetric Key Algorithms, Common Symmetric Key Algorithms
RIP (Routing Internet Protocol), RIP Routed: Routing Internet Protocol (UDP Port 520)
risks, Risk AssessmentReview Your Risks, Cost-Benefit Analysis and Best Practices, Adding Up the Numbers, Adding Up the Numbers, Best Practices, Risk Management Means Common Sense
(see also cost-benefit analysis)
assessment of, Risk AssessmentReview Your Risks, Risk Management Means Common Sense
difficulty in analyzing, Best Practices
inability to eliminate, Adding Up the Numbers
secondary, Adding Up the Numbers
RISKS mailing list, RISKS
Ritchie, Dennis, Multics: The Unix Prototype, Security and Unix, Unix Programming and System Administration
discussing Unix security, Security and Unix
The UNIX Programming Environment, Unix Programming and System Administration
Unix developed by, Multics: The Unix Prototype
Rivest, Ron, Common Symmetric Key Algorithms, Public Key Algorithms, Message Digest Functions, Cryptography Papers and Other Publications
“A Method for Obtaining Digital Signatures”, Cryptography Papers and Other Publications
RJE (Remote Job Entry), The /etc/passwd File
rlogin program, Add-on Functionality Breeds Problems, Verifying your new password, Authentication and DNS, rlogin and rsh (TCP Ports 513 and 514)/etc/hosts.lpd file, rlogin and rsh (TCP Ports 513 and 514), rlogin and rsh (TCP Ports 513 and 514)
compared to telnet, rlogin and rsh (TCP Ports 513 and 514)
security and, rlogin and rsh (TCP Ports 513 and 514)
verifying new password with, Verifying your new password
rm command, Understanding Filesystems, Directories and links, Directory Permissions, Tree structure attacks
RMDIR function (RPC), The NFS Protocol
RMI (Remote Method Invocation), Remote Procedure Call (RPC)
Rogue Programs: Viruses, Worms and Trojan Horses (Hoffman, Lance J.), Computer Viruses and Programmed Threats
ROM monitor passwords, Key Switches
root account, Conventions Used in This Book, Users, Groups, and the Superuser, Problems with SUID
(see also superuser)
prompt for, Conventions Used in This Book
root domain server (NIS+), What NIS+ Does
root user, Users and Groups (see superuser)
rootkits, Programmed Threats: Definitions, Controlling and Examining Processes
route service, UDP
routed daemon, RIP Routed: Routing Internet Protocol (UDP Port 520)
routers, IP: The Internet Protocol
routing, Routing
Routing Internet Protocol (RIP), RIP Routed: Routing Internet Protocol (UDP Port 520)
RPC (Remote Procedure Call), Networking and Unix, UDP, UDP, Sun RPC’s portmapper (UDP and TCP Ports 111), RPC rpc.rexd (TCP Port 512), Sun RPCAUTH_KERB, Sun’s portmap/rpcbind, RPC AuthenticationAUTH_KERB, AUTH_DES, Secure RPC (AUTH_DES)Limitations of Secure RPC, Spoofing RPC, NIS+ Tables and Other Objects, Understanding NFS, The MOUNT Protocol, The MOUNT Protocol, The NFS Protocol, The NFS Protocol, Chapter 13: Sun RPC
authentication of, RPC AuthenticationAUTH_KERB
functions used with NFS, The NFS Protocol
MOUNT based on, The MOUNT Protocol, The MOUNT Protocol
NFS built on, Understanding NFS
NFS protocol based on, The NFS Protocol
portmapper program and, UDP, UDP, Sun RPC’s portmapper (UDP and TCP Ports 111), Sun’s portmap/rpcbind
rpc.rexd, RPC rpc.rexd (TCP Port 512)
Secure, AUTH_DES, Secure RPC (AUTH_DES)Limitations of Secure RPC
security checklist for, Chapter 13: Sun RPC
spoofing, Spoofing RPC
table (NIS+), NIS+ Tables and Other Objects
rpc.mountd daemon, The MOUNT Protocol
rpc.rexd service, RPC rpc.rexd (TCP Port 512)
rpcbind, Sun’s portmap/rpcbind (see portmapper program)
rpm command, Upgrading Distributed Applications
rpm files, Software Management Systems
RPM Package Manager, Source code and patches, Integrity checking with RPM under Linux
RS-232 serial protocol, The RS-232 Serial ProtocolThe RS-232 Serial Protocol
RSA algorithm, Public Key Algorithms
RSA Data Security, Common Symmetric Key Algorithms, Key search attacks, SSH: The Secure Shell (TCP Port 22), Host authentication with SSH
factoring challenges, Key search attacks
SSH using, SSH: The Secure Shell (TCP Port 22), Host authentication with SSH
rsh (restricted shell), Restricted shellsPotential problems with restricted shells
rsh program, TCP, Authentication and DNS, rlogin and rsh (TCP Ports 513 and 514)/etc/hosts.lpd file
rshd program, back doors in, Back Doors and Trap Doors
rsync program, Backup plan, Network Backup Systems
RTS (Request to Send), The RS-232 Serial Protocol
rtty program, Monitoring the Intruder
RUID, Process real and effective UIDs (see real UIDs)
run levels, Startup on different Unix systems
runacct command, Process Accounting: The acct/pacct File
Running Linux (Welsh, Matt; Kaufman, Lar; Dalheimer, Matthias K.; Dawson, Terry), Unix Programming and System Administration
Russell, Deborah (Computer Security Basics), General Computer Security