Tier list of Linux security mechanisms (2024)
blog.ce9e.org·1d·
Discuss: Lobsters
🛡️CLI Security
Preview
Report Post

— title: Tier list of Linux security mechanisms date: 2024-06-23 tags: [code, linux, security] description: Linux has quite some security mechanisms. So let’s look at some of them and rate them by usability and power. — Linux has quite some security mechanisms. So let’s look at some of them and rate them by usability and power. ## File permissions Every file has read/write/execute permissions for its owner, group, and others. This is usually expressed in octal: 755 means everyone can read and execute, but only the owner can write. 600 means everyone is blocked but the owner can read and write. This system is pretty old and has served us well. For example, home directories are typically 700 to block access from other users. And system services can run as separate users so t…

Similar Posts

Loading similar posts...