A2oz

Which access control method is controlled by individual users?

Published in Security 1 min read

The access control method controlled by individual users is Discretionary Access Control (DAC).

DAC allows users to control access to resources they own. This means that a user can grant or deny access to their files, folders, or other resources to other users. For example, a user might allow a coworker to edit a document but not delete it.

DAC is commonly used in operating systems like Windows and Linux. It provides flexibility but can pose risks if users are not careful about managing permissions.

Here are some examples of DAC in action:

  • You share a folder with a coworker, granting them read-only access.
  • You deny access to a sensitive file to everyone except yourself.
  • You allow a specific group of users to modify a document but prevent them from deleting it.

While DAC offers flexibility, it's essential to implement best practices to ensure security.

Related Articles