ACLbased
ACLbased refers to an access control approach that enforces permissions through Access Control Lists (ACLs) attached to resources. An ACL is a list of entries, known as access control entries (ACEs), each specifying a principal (such as a user, group, or process) and the operations that principal is allowed or denied to perform on the resource. When a subject requests an action, the system consults the resource’s ACL to determine whether the requested operation should be permitted. Some systems evaluate ACEs in a defined order, applying explicit denials before permissions or stopping at the first match.
ACLbased implementations appear in multiple domains. In file systems, ACLs provide fine-grained permissions beyond traditional owner/group/other
Key characteristics include granularity and explicit accountability, since each resource carries its own permission list. Inheritance