Terminology Index

Glossary

1801 terms

Open concept maps

Showing 993-1024 of 1801 terms

L
30

Linux Capabilities

A Linux feature that breaks root's all-or-nothing power into discrete privileges (capabilities) that can be granted individually, so a process can be given just the specific elevated rights it needs instead of full root.

Linux capabilities divide the superuser's traditionally monolithic privileges into fine-grained units (such as binding low ports or overriding file permissions) that can be assigned to processes or binaries individually. This supports least privilege, a program can hold only the one capability it needs rather than full root, but it also matters for security because misassigned or excessive capabilities are a privilege-escalation path attackers hunt for. Defenders examine capabilities when assessing what a process can do and how it might be abused.

Introduced in: Operating Systems for Defenders

Examples

  • Granting a process only the capability to bind low ports instead of full root.
  • Spotting a binary with an excessive capability as an escalation risk.
  • Reducing a container's capabilities to enforce least privilege.

No related terms linked yet.

M
2