AppArmor

A Practical Linux Security Module for Access Control

AppArmor (Application Armor) is a Linux Security Module (LSM) that provides a practical, easy-to-use Mandatory Access Control (MAC) framework for restricting the capabilities of applications. Unlike SELinux, which relies on complex policies, AppArmor simplifies security by using profile-based access control.

Key Features

  • Profile-Based Access Control: AppArmor restricts application behavior based on predefined profiles.
  • Path-Based Security Policies: Unlike SELinux, which uses labels, AppArmor policies are based on file paths.
  • Learning Mode: Allows administrators to create security profiles by observing application behavior.
  • Fine-Grained Access Control: Provides detailed permission controls over file access, network connections, and capabilities.
  • User-Friendly Management: Easier to configure and deploy compared to SELinux.

How AppArmor Works

AppArmor uses security profiles that define which files, capabilities, and network accesses an application is allowed. These profiles are enforced at the kernel level, restricting an application’s ability to perform unauthorized actions.

[Read More]

Linux Security Modules

An Overview of Common Security Frameworks in Linux

Linux Security Modules (LSM)

Linux Security Modules (LSM) is a framework that allows different security models to be implemented as kernel modules. It provides the necessary hooks within the Linux kernel for implementing access control mechanisms beyond the traditional Unix permissions model. Several LSMs are available, each with different use cases and security policies.

SELinux

Security-Enhanced Linux (SELinux) is one of the most well-known Linux Security Modules. Developed by the NSA, SELinux enforces Mandatory Access Control (MAC) policies, restricting processes and users based on predefined security policies.

[Read More]