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

U

U.S. Secret Service (USSS), U.S. Secret Service (USSS)
UDP (User Datagram Protocol), Packets and Protocols, UDPUDP, The inetd Program, The TCP Wrappers configuration language, Domain Name System (DNS) (TCP and UDP Port 53), The NFS Protocol
(see also network services)
DNS and, Domain Name System (DNS) (TCP and UDP Port 53)
NFS protocol built on, The NFS Protocol
TCP Wrappers support for, The TCP Wrappers configuration language
UDP socket, Unix syslog
UFS (Unix File System), UFS and the Fast File SystemDirectories and links, The Virtual Filesystem Interface
ufsdump, Encrypting Your Backups (see dump program)
UIDs (user identifiers), Add-on Functionality Breeds Problems, Logging in with Usernames and Passwords, Users, Groups, and the Superuser, Users and Groups, User Identifiers (UIDs), User Identifiers (UIDs), The su Command: Changing Who You Claim to Besudo: A More Restrictive su, Real and Effective UIDs with the su Command, Inodes, SUID and SGID, The inetd Program, AUTH_UNIX, The su command and the utmp and wtmp files, Process real and effective UIDs
(see also SUID programs)
for superuser, User Identifiers (UIDs)
real versus effective, Real and Effective UIDs with the su Command, Process real and effective UIDs
and RPC requests, AUTH_UNIX
for server process, The inetd Program
stored in inodes, Inodes
su command and, The su command and the utmp and wtmp files
switching temporarily, The su Command: Changing Who You Claim to Besudo: A More Restrictive su
zero, Users, Groups, and the Superuser (see root account superuser)
ulimit command, Soft Process Limits: Preventing Accidental Denial of Service
Ultrix, The Unix Wars: Why Berkeley 4.2 over System V, Trusted path
umask, The umaskCommon umask Values, Finding Dormant Accounts
UMNT request, The MOUNT Protocol
UMNTALL request, The MOUNT Protocol
unattended terminals, Unattended Terminals
Underground (Dreyfus, Suelette), Understanding the Computer Security “Culture”
underscore (_), in hostnames, Format of the hostname
Unicode, Directory Permissions
unintended disclosure and, Unintended Disclosure of Site Information with NIS
uninterruptable power supply, Fire (see UPS)
unison program, Network Backup Systems
United States, Federal jurisdiction, Federal Computer Crime Laws
federal computer crime laws, Federal Computer Crime Laws
federal jurisdiction, Federal jurisdiction
Universal Coordinated Time (UTC), NTP: Network Time Protocol (UDP Port 123)
Unix, PrefaceUnix “Security”?, PrefaceUnix “Security”?, Which Unix System?, Which Unix System?“Secure” Versions of Unix, Which Unix System?, Versions Covered in This Book, Versions Covered in This Book, “Secure” Versions of Unix, Introduction: Some Fundamental Questions, What Is an Operating System?, What Is an Operating System?, What Is an Operating System?, What Is an Operating System?, What Is an Operating System?, What Is a Deployment Environment?What Is a Deployment Environment?, What Is a Deployment Environment?, What Is a Deployment Environment?, What Is a Deployment Environment?, History of UnixWhat the Future Holds, Free UnixBusinesses adopt Unix, What the Future Holds, Security and UnixThe Failed P1003.1e/2c Unix Security Standard, Add-on Functionality Breeds ProblemsAdd-on Functionality Breeds Problems, An Empirical Study of the Reliability of Unix UtilitiesWhere’s the beef?, Updating System SoftwareSensitive Upgrades, Updating System Software, Starting Up Unix and Logging InRunning the User’s Shell, Unix Security References
(see also specific operating systems)
add-on functionality of, Add-on Functionality Breeds ProblemsAdd-on Functionality Breeds Problems
current trends, What the Future Holds
deployment environments using, What Is a Deployment Environment?What Is a Deployment Environment?
free versions of, Free UnixBusinesses adopt Unix
history of, PrefaceUnix “Security”?, Which Unix System?, Introduction: Some Fundamental Questions, History of UnixWhat the Future Holds
installing new system, Updating System Software
kernel, What Is an Operating System? (see kernel)
mobile versions of, What Is a Deployment Environment?
open source, Versions Covered in This Book
parts of, What Is an Operating System?
published resources for, Unix Security References
secure versions of, “Secure” Versions of Unix
security and, PrefaceUnix “Security”?, Security and UnixThe Failed P1003.1e/2c Unix Security Standard
security policy, What Is an Operating System? (see policy, security)
servers, What Is a Deployment Environment?
starting up, Starting Up Unix and Logging InRunning the User’s Shell
system database files, What Is an Operating System?
system software, updating, Updating System SoftwareSensitive Upgrades
thin-client systems, What Is a Deployment Environment?
utilities, What Is an Operating System?, An Empirical Study of the Reliability of Unix UtilitiesWhere’s the beef?
versions covered in this book, Versions Covered in This Book
versions of, Which Unix System?“Secure” Versions of Unix
Unix domain socket, Unix syslog
Unix File System, UFS and the Fast File System (see UFS)
The UNIX Programming Environment (Kernighan, Brian; Ritchie, Dennis; Pike, Rob), Unix Programming and System Administration
Unix Support Group (USG), Unix goes commercial
UNIX System Administration Handbook (Nemeth, Evi; Snyder, Garth; Seebass, Scott; Hein, Trent R.), Unix Programming and System Administration
UNIX System Security (Wood, Patrick H. and Kochan, Stephen G.), Unix Security References
Unix-to-Unix Copy System (UUCP), Modems and Unix
unowned files, Unowned files
unsecure, Trust
unshare command, Exporting NFS directories under System V: share and dfstab
upgrades, Upgrading Distributed ApplicationsSensitive Upgrades, Upgrading Distributed Applications, Sensitive Upgrades, Exception and activity reports
backing out of, Upgrading Distributed Applications
logging, Exception and activity reports
sensitive, Sensitive Upgrades
UPS (uninterruptable power supply), Risk Assessment, Fire
uptime account, Accounts That Run a Single Command
urandom device, Picking a Random Seed
Usenet, Responsible Disclosure, Users and Groups, NNTP: Network News Transport Protocol (TCP Port 119), Usenet Groups
(see also NNTP)
groups, security-related, Usenet Groups
news user, Users and Groups
reporting security holes on, Responsible Disclosure
USENIX/SAGE Association, USENIX/SAGE
User Datagram Protocol, UDP (see UDP)
user IDs, Add-on Functionality Breeds Problems (see UIDs)
usermod command, Restricting Logins, Finding Dormant Accounts, Finding Dormant Accounts
-e option, Finding Dormant Accounts
-f option, Finding Dormant Accounts
-s option, Restricting Logins
usernames, Logging in with Usernames and PasswordsUnix Usernames, Smoking Joes, Any Username Can Be a Superuser, The su Command: Changing Who You Claim to Besudo: A More Restrictive su, Joetest: a simple password cracker, Account Names Revisited: Using Aliases for Increased Security
aliases for, Account Names Revisited: Using Aliases for Increased Security
doubling as passwords (Joes), Smoking Joes, Joetest: a simple password cracker
for superuser, Any Username Can Be a Superuser
switching temporarily, The su Command: Changing Who You Claim to Besudo: A More Restrictive su
users, Add-on Functionality Breeds Problems, Policies and Guidelines, Types of Security, Steps in Risk Assessment, Identifying threats, Identifying threats, Convincing Management, Concentrate on education, Defend in depth, The Problem with Security Through Obscurity, Authenticating UsersEntering your password, Users and GroupsUser Identifiers (UIDs), Users and Groups, Users and Groups, The su Command: Changing Who You Claim to Besudo: A More Restrictive su, Personnel SecuritySummary, Ongoing Training and Awareness, Auditing Access, Trusted hosts and users, Creating passwords for users, Creating passwords for users, Including or excluding specific accounts, Using netgroups to limit the importing of accounts, The Role of Backups, Replace tapes as needed, Assigning Passwords to UsersAssigning Passwords to Users, The syslog.conf configuration file, Unix ForensicsNetwork Setup, Discovering an IntruderGetting Rid of the Intruder, Monitoring commands, Authors, quot command, Chapter 4: Users, Passwords, and Authentication, Chapter 5: Users, Groups, and the Superuser
(see also employees; groups; superuser)
accidentally deleting files, The Role of Backups
assigning passwords to, Assigning Passwords to UsersAssigning Passwords to Users
auditing equipment access of, Auditing Access
auditing system activity of, Types of Security
authenticating, Authenticating UsersEntering your password
backup errors of, Replace tapes as needed
effects of obscurity on, The Problem with Security Through Obscurity
identifiers for, Add-on Functionality Breeds Problems (see UIDs)
importing to NIS server, Including or excluding specific accounts, Using netgroups to limit the importing of accounts
as intruders, Discovering an IntruderGetting Rid of the Intruder
logging, Unix ForensicsNetwork Setup
monitoring, Monitoring commands
NIS passwords for, Creating passwords for users
nobody, Users and Groups, Creating passwords for users
participation in security policy, Steps in Risk Assessment
power users, Convincing Management
security awareness of, Policies and Guidelines, Concentrate on education, Defend in depth, Ongoing Training and Awareness
security checklist for, Chapter 4: Users, Passwords, and Authentication, Chapter 5: Users, Groups, and the Superuser
security regarding, Personnel SecuritySummary
security threats caused by, Identifying threats, Authors
sending messages to, The syslog.conf configuration file
summarizing filesystem usage by, quot command
switching temporarily, The su Command: Changing Who You Claim to Besudo: A More Restrictive su
system, Users and Groups
trusted, Trusted hosts and users
users command, Examining the utmp and wtmp files, Monitoring commands
USG (Unix Support Group), Unix goes commercial
/usr directory, The su Log, An example of a SUID attack: IFS and the /usr/lib/preserve hole, Connecting a Modem to Your Computer, Connecting a Modem to Your Computer, SMTP: Simple Mail Transfer Protocol (TCP Port 25), Delivery to programs, rexec (TCP Port 512), Setting up netgroups, Viruses, Viruses, Other files, Other files, Other files
(see also /var directory)
/usr/adm directory, Other files
/usr/bin directory, Viruses
/usr/bin/uudecode, Delivery to programs (see uudecode program)
/usr/etc/yp/makedbm program, Setting up netgroups
/usr/lib directory, Other files
/usr/lib/preserve program, An example of a SUID attack: IFS and the /usr/lib/preserve hole
/usr/lib/sendmail, SMTP: Simple Mail Transfer Protocol (TCP Port 25) (see sendmail program)
/usr/lib/uucp/Devices file, Connecting a Modem to Your Computer
/usr/lib/uucp/L-devices file, Connecting a Modem to Your Computer
/usr/local/lib directory, Other files
/usr/sbin/rexecd, rexec (TCP Port 512) (see rexec service)
/usr/ucb directory, Viruses
USSS (U.S. Secret Service), U.S. Secret Service (USSS)
UTC (Universal Coordinated Time), NTP: Network Time Protocol (UDP Port 123)
utilities, Unix, What Is an Operating System?, An Empirical Study of the Reliability of Unix UtilitiesWhere’s the beef?
security vulnerabilities with, An Empirical Study of the Reliability of Unix UtilitiesWhere’s the beef?
standard, What Is an Operating System?
utimes() system call, Never Trust Anything Except Hardcopy
utmp file, Essential Log Files, utmp and wtmp FilesPruning the wtmp file, Monitoring commands, Tracing a Connection
utmpx file, Essential Log Files
UUCP (Unix-to-Unix Copy System), Modems and Unix
uucp user, Users and Groups
uudecode program, Delivery to programs