Complete the code to identify the access control model where the system enforces policies without user discretion.
The access control model where the system strictly enforces policies is called [1].MAC stands for Mandatory Access Control, where the system enforces access policies strictly without user discretion.
Complete the sentence to describe the access control model where users control access to their own resources.
In the [1] model, users decide who can access their resources.DAC stands for Discretionary Access Control, where users have control over their own resources and can grant access.
Fix the error in the description of the ABAC model by selecting the correct missing word.
ABAC stands for Attribute-Based [1] Control, which grants access based on user and resource attributes.
ABAC stands for Attribute-Based Access Control, which uses attributes to decide access rights.
Fill all three blanks to complete the sentence describing the difference between MAC and DAC.
In [1], access is controlled by the system, while in [2], access is controlled by the [3].
Mandatory Access Control (MAC) is system-controlled, while Discretionary Access Control (DAC) is controlled by the user.
Fill all three blanks to complete the ABAC example code snippet.
access_granted = (user.[1] == 'manager') and (resource.[2] == 'confidential') and (environment.[3] == 'office')
In ABAC, access decisions are based on attributes like role of the user, classification of the resource, and location of the environment.