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

F

failures, computer, Tips on Avoiding Security-Related Bugs, Tips on Avoiding Security-Related Bugs
(see also bugs)
Òfair useÓ provisions, copyright law, Copyrighted Works
Farmer, Dan, Network Scanning, Electronic Resources, COPS (Computer Oracle and Password System), SATAN
Fast File System, The Virtual Filesystem Interface (see FFS)
FAT filesystem, The Virtual Filesystem Interface
FAT32 filesystem, The Virtual Filesystem Interface
FBI (Federal Bureau of Investigation), Federal jurisdiction, Federal Bureau of Investigation (FBI)
fchmod() system call, chmod: Changing a File’s Permissions, Design Principles
fchow() system call, Design Principles
Federal Bureau of Investigation (FBI), Federal jurisdiction, Federal Bureau of Investigation (FBI)
federal jurisdiction, Federal jurisdiction
federal laws, Federal Computer Crime Laws
Ferbrache, David (The Pathology of Computer Viruses), Computer Viruses and Programmed Threats
FFS (Fast File System), UFS and the Fast File SystemDirectories and links, The Virtual Filesystem Interface, Reserved space
FG (Frame Ground), The RS-232 Serial Protocol
fget() system call, Things to Avoid
fgets() system call, The Lesson of the Internet Worm
fiber optic cables, Fiber optic cable
FIFO file type, File Permissions
file command, File Times
file descriptors, Things to Avoid
file handles, File Handles, File Handles
File Transfer Protocol, FTP: File Transfer Protocol (TCP Ports 20 and 21) (see FTP)
filenames, attacks through, Filename attacks
files, What Is an Operating System?, What Is an Operating System?, What Is an Operating System?, Understanding Filesystems, Understanding Filesystems, File contents, Inodes, Inodes, Inodes, Exploring with the ls Command, File Times, File Times, File Times, File Permissions, File Permissions, File Permissions, File Permissions, File Permissions, Directory Permissions, chmod: Changing a File’s Permissions, SGID Bit on Files (System V-Derived Unix Only): Mandatory Record Locking, Finding All of the SUID and SGID FilesThe Solaris ncheck command, Device FilesUnauthorized Device Files, chown: Changing a File’s OwnerUse chown with caution, Design Principles, The Role of Backups, What Should You Back Up?, Large Service-Based Networks with Large Budget, Backing Up System FilesBuilding an Automatic Backup System, Software for Backups, Monitoring File Format, Trusted computing base, Integrity Management, Immutable and Append-Only FilesKernel security level, Immutable and Append-Only FilesKernel security level, Detecting Changes After the FactChecksums and Signatures, Comparison Copiesrdist, Checklists and Metadata, Checklists and Metadata, Checklists and Metadata, Checksums and Signatures, Checksums and Signatures, Auditing, Logging, and Forensics, Shell History, Changes in file contents, Changes to startup files, Hidden files and directoriesHidden files and directories, Hidden files and directories, Unowned files, Never Trust Anything Except Hardcopy, Trojan horses in mobile code, Startup File Attacks, World-writable user files and directories, Group-writable files, Destructive Attacks, Destructive Attacks, Swapping to files, Disk-full attacks, Hidden space, Chapter 6: Filesystems and Security, gcore: Dumping Core
access times of, File Times
append-only, Immutable and Append-Only FilesKernel security level
backing up, Inodes (see backups)
beginning with dash, deleting, Directory Permissions
byte-by-byte comparisons of, Comparison Copiesrdist
change time, File Times
changing owner of, chown: Changing a File’s OwnerUse chown with caution
checklists for comparing, Checklists and Metadata
checksums detecting changes in, Checksums and Signatures
context-dependent (CDFs), Hidden files and directories
core, gcore: Dumping Core
critical, backing up, Backing Up System FilesBuilding an Automatic Backup System
critical, deleting, Destructive Attacks
deleted accidentally, The Role of Backups
deleted as destructive attack, Destructive Attacks
detecting changes to, Detecting Changes After the FactChecksums and Signatures
device, Device FilesUnauthorized Device Files
format of, monitoring, Monitoring File Format
group for, File Permissions
group-writable, Group-writable files
hidden, Exploring with the ls Command, Hidden files and directoriesHidden files and directories
history, Shell History
immutable, Immutable and Append-Only FilesKernel security level
information about (metadata), Understanding Filesystems
inodes storing information about, Inodes
integrity of, Integrity Management (see integrity)
locating largest, Disk-full attacks
locking, chmod: Changing a File’s Permissions, Design Principles
mandatory, chmod: Changing a File’s Permissions
log, Auditing, Logging, and Forensics (see log files)
magic number in, File Permissions
metadata, comparing, Checklists and Metadata
modification times of, File Times, Large Service-Based Networks with Large Budget, Checklists and Metadata, Never Trust Anything Except Hardcopy
modified by intruders, Changes in file contents, Changes to startup files
owner of, File Permissions
permissions for, Inodes (see permissions)
security checklist for, Chapter 6: Filesystems and Security
SGID bit on, SGID Bit on Files (System V-Derived Unix Only): Mandatory Record Locking
signatures detecting changes in, Checksums and Signatures
startup, Startup File Attacks (see startup files)
SUID/SGID, finding, Finding All of the SUID and SGID FilesThe Solaris ncheck command
swapping to, Swapping to files
system configuration, What Is an Operating System?
system database, What Is an Operating System?
system startup, What Is an Operating System?
Trojan horses in, Trojan horses in mobile code
trusted computing base (TCB) of, Trusted computing base
types of, File Permissions, File Permissions
unlinked, hidden space used by, Hidden space
unowned, Unowned files
which to back up, What Should You Back Up?
world-writable, World-writable user files and directories
zero-filled bytes (holes) in, Software for Backups
filesystems, What the Superuser Can Do, Filesystems and SecurityCurrent Directory and Paths, Understanding Filesystems, Understanding Filesystems, Understanding Filesystems, Understanding Filesystems, UFS and the Fast File SystemDirectories and links, UFS and the Fast File SystemDirectories and links, The Virtual Filesystem Interface, The Virtual Filesystem Interface, The Virtual Filesystem Interface, The Virtual Filesystem Interface, The Virtual Filesystem Interface, Turning Off SUID and SGID in Mounted Filesystems, Turning Off SUID and SGID in Mounted Filesystems, Summary, Network Filesystems, Restricted Filesystem with the chroot( ) JailChecking new software, quot command, Reserved space, Chapter 6: Filesystems and Security, Chapter 15: Network Filesystems
(see also directories)
Cryptfs, The Virtual Filesystem Interface
cryptographic, Understanding Filesystems, The Virtual Filesystem Interface
encrypted, The Virtual Filesystem Interface
Fast File System, UFS and the Fast File SystemDirectories and links
journaling, Understanding Filesystems
list of, available on Unix, The Virtual Filesystem Interface
mounted, Turning Off SUID and SGID in Mounted Filesystems
network, Understanding Filesystems, Network Filesystems
(see also NFS; SMB)
remote network, Turning Off SUID and SGID in Mounted Filesystems
replicated (RAID), Understanding Filesystems
reserved space on, Reserved space
restricted, Restricted Filesystem with the chroot( ) JailChecking new software
security checklist for, Chapter 6: Filesystems and Security, Chapter 15: Network Filesystems
summarizing usage per user, quot command
superuser control of, What the Superuser Can Do
UFS, UFS and the Fast File SystemDirectories and links
virtual filesystem interface, The Virtual Filesystem Interface
filter files (mail), .forward, .procmailrc
filtering software, Mandatory blocking, Mandatory blocking
filtering, on-demand, The ipfw host-based firewall
find command, Finding All of the SUID and SGID Files, Finding All of the SUID and SGID Files, Finding All of the SUID and SGID Files, Simple listing, Hidden files and directories, Filename attacks, Filename attacks, Disk-full attacks
-0 option, Filename attacks
-ls option, Simple listing
-size option, Disk-full attacks
attacks on, Filename attacks
-H option, Hidden files and directories
-print option, Finding All of the SUID and SGID Files
type -f option, Finding All of the SUID and SGID Files
-xdev option, Finding All of the SUID and SGID Files
finger account, Accounts That Run a Single Command
finger command, Networking and Unix, finger (TCP Port 79)Disabling finger, Disabling finger, Accounts That Run a Single Command, lastlog File, Examining the utmp and wtmp files, Monitoring commands, Alternative contact strategies
disabling, Disabling finger
finding contact information with, Alternative contact strategies
login times displayed by, lastlog File
running when not logged in, Accounts That Run a Single Command
finger service, TCP
fingerd program, The Lesson of the Internet WormThe Lesson of the Internet Worm, The Lesson of the Internet Worm
(see also Internet worm program)
fingerprint of files or keys, Cryptographic Algorithms and Functions (see message digest functions)
Fingerprints Database, Tripwire
fire, The Disaster Recovery Plan, FireSmoke, Fire hazards
firewalls, Telephone firewalls, Firewalls and Physical Isolation, Controlling Access to Servers, Controlling Access to Servers, Using a Host-Based Packet Firewall, Using a Host-Based Packet Firewall, Using a Host-Based Packet Firewall, Using a Host-Based Packet Firewall, DNS nameserver attacks, Monitoring Your Host with netstat, Sun’s portmap/rpcbind, Unintended Disclosure of Site Information with NIS, Account Names Revisited: Using Aliases for Increased Security, Firewalls
account aliases and, Account Names Revisited: Using Aliases for Increased Security
host-based program, Controlling Access to Servers, Using a Host-Based Packet Firewall
IP networks, Firewalls and Physical Isolation
kernel-level, Using a Host-Based Packet Firewall
mailing list for, Firewalls
nameservers and, DNS nameserver attacks
for NIS sites, Unintended Disclosure of Site Information with NIS
packet-level, Using a Host-Based Packet Firewall
portmapper program and, Sun’s portmap/rpcbind
standalone appliance for, Controlling Access to Servers
stateful inspection of, Using a Host-Based Packet Firewall
telephone, Telephone firewalls
verifying proper operation of, Monitoring Your Host with netstat
Firewalls and Internet Security (Bellovin, Steve and Cheswick, Bill), Network Technology and Security
Firewire-based disk drive, Local copies
FIRST (Forum of Incident Response and Security Teams), Resuming Operation, FIRST, Forum of Incident and Response Security Teams (FIRST)
flooding, client, Authentication and DNS
floors, raised, access through, Raised floors and dropped ceilings
folders, Directories and links (see directories links)
fonts used in this book, Conventions Used in This Book
food, effects on hardware, Food and drink
forensics, Unix ForensicsNetwork Setup, Unix Forensics, Chapter 21: Auditing, Logging, and Forensics
(see also logging)
security checklist for, Chapter 21: Auditing, Logging, and Forensics
fork bombs, Too many processes
fork() system call, Design Principles, Creating Processes
Forrester, Justin, What he found
Forum of Incident Response and Security Teams, Forum of Incident and Response Security Teams (FIRST) (see FIRST)
.forward file, Changes to startup files, .forward, .procmailrc
Frame Ground (FG), The RS-232 Serial Protocol
fraud, One-Way Phone Lines
Fredricksen, Lars (“An Empirical Study of the Reliability of UNIX Utilities”), Miscellaneous References
Free Software Foundation (FSF), FSF and GNU
FreeBSD, What This Book Is Not, What This Book Is Not, Versions Covered in This Book, Versions Covered in This Book, Versions Covered in This Book, NetBSD, FreeBSD, and OpenBSD, NetBSD, FreeBSD, and OpenBSD, Second-Generation Commercial Unix Systems, The shadow password and master password files, Pluggable Authentication Modules (PAM), The su Log, The sulog under Berkeley Unix, BSD Kernel Security Levels, The Virtual Filesystem Interface, Access Control Lists, The ipfw host-based firewall, Source code and patches, CVS, Accounts Without Passwords, Codebooks
(see also BSD Unix)
ACL support for, Access Control Lists
bug fixes, responsibility for, What This Book Is Not, What This Book Is Not
Cryptfs support for, The Virtual Filesystem Interface
CVS used by, CVS
history of, NetBSD, FreeBSD, and OpenBSD, Second-Generation Commercial Unix Systems
host-based firewall for, The ipfw host-based firewall
kernel security levels on, BSD Kernel Security Levels
master password file, The shadow password and master password files
PAM support for, Pluggable Authentication Modules (PAM)
password file, printing, Accounts Without Passwords
S/Key support, Codebooks
source-based management systems, Source code and patches
su log, The su Log
sulog, scanning, The sulog under Berkeley Unix
Freedman, David H. (@ Large), Computer Crime and Law
fscanf() system call, Things to Avoid
fsck program, Hidden files and directories, Tree structure attacks
FSF (Free Software Foundation), FSF and GNU
FSINFO function (RPC), The NFS Protocol
fsirand program, Limit Exported and Mounted Filesystems, Use fsirand
FSSTAT function (RPC), The NFS Protocol
fstab file, Which Files to Back Up?, Back Doors and Trap Doors
fstat() system call, Design Principles
FSUID (filesystem UID), Process real and effective UIDs
FTP (File Transfer Protocol), Users and Groups, Networking and Unix, TCP, FTP: File Transfer Protocol (TCP Ports 20 and 21), Anonymous FTP, FTP active mode, FTP active modeFTP passive mode, FTP active mode, Setting up an FTP serverSetting up anonymous FTP with the standard Unix FTP server, Restricting FTP with the standard Berkeley FTP server, Setting up anonymous FTP with the standard Unix FTP serverSetting up anonymous FTP with the standard Unix FTP server, Setting up anonymous FTP with the standard Unix FTP server, Setting up anonymous FTP with the standard Unix FTP server, Setting up anonymous FTP with the standard Unix FTP server, Allowing only FTP access, Setting up the chroot( ) environment, Limiting users
active mode, FTP active mode
allowing without logging in, Allowing only FTP access
anonymous, Users and Groups, Anonymous FTP, Setting up anonymous FTP with the standard Unix FTP serverSetting up anonymous FTP with the standard Unix FTP server
bounce attack, FTP active mode
chroot() system call and, Setting up the chroot( ) environment
~ftp/bin directory, Setting up anonymous FTP with the standard Unix FTP server
~ftp/etc directory, Setting up anonymous FTP with the standard Unix FTP server
~ftp/pub directory, Setting up anonymous FTP with the standard Unix FTP server
passive mode, FTP active modeFTP passive mode
restricted filesystems and, Limiting users
restricting accounts with, Restricting FTP with the standard Berkeley FTP server
setting up server, Setting up an FTP serverSetting up anonymous FTP with the standard Unix FTP server
ftp user, Users and Groups
ftpd server, FTP: File Transfer Protocol (TCP Ports 20 and 21), Setting up an FTP server, Changing the Account’s Login Shell, Back Doors and Trap Doors
ftpusers file, Restricting FTP with the standard Berkeley FTP server
ftruncate() system call, File Permissions
The Fugitive Game: Online with Kevin Mitnick (Littman, Jonathan), Understanding the Computer Security “Culture”
full backup, Types of Backups
function keys, passwords programmed to, Function keys
functionality, add-on, Add-on Functionality Breeds ProblemsAdd-on Functionality Breeds Problems
Fundamentals of Computer Security Technology (Amoroso, Edward), General Computer Security
Fuzz program tests, What he found