📖 What is Attribute-Based Access Control (ABAC)?
Attribute-Based Access Control (ABAC) is a flexible access control model that grants access based on a combination of attributes. These attributes can include user characteristics, resource properties, and environmental conditions like time of day or location. It provides more granular control than RBAC.
"Think of ABAC as the most 'intelligent' or 'context-aware' model. It is the logical evolution from RBAC for complex, dynamic environments."
📚 Certification: Certified Information Systems Security Professional (CISSP)
🔑 What are the Key Concepts of Attribute-Based Access Control (ABAC)?
- ▸ Subject attributes include user-specific characteristics such as job title, security clearance, department, and certification level used to determine access rights.
- ▸ Object attributes describe the resource being accessed, such as file classification, project ownership, or the sensitivity level of the data.
- ▸ Environmental attributes provide context-aware security by evaluating conditions like the user's current IP address, time of access, or geographic location.
- ▸ Policy-based logic uses Boolean expressions to combine these attributes, allowing for highly granular 'if-then' rules that govern access decisions dynamically.
- ▸ ABAC prevents 'role explosion' by eliminating the need to create countless unique roles for every possible combination of user permissions.
🎯 How does Attribute-Based Access Control (ABAC) appear on the CISSP Exam?
You may be asked to identify the best access control model for a global organization that needs to restrict access based on the user's current country and the time of day.
A scenario might describe a system where access is granted only if the user is a manager, the document is marked 'Internal', and the connection is via a secure VPN; identify this as ABAC.
❓ Frequently Asked Questions
How does ABAC specifically address the problem of role explosion in RBAC?
In RBAC, adding a new condition often requires a new role. ABAC uses attributes instead; a single policy can evaluate multiple attributes dynamically, removing the need to create thousands of static roles.
Can ABAC be used in conjunction with other access control models?
Yes, many organizations implement a hybrid approach. They may use RBAC for broad organizational roles and layer ABAC on top to provide fine-grained, context-aware restrictions for highly sensitive data.