4.6a access control models

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/13

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 3:08 PM on 8/14/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

14 Terms

1
New cards

Access control

Enforcing policies that allow or disallow access to data, applied to individuals or groups, after authentication has already occurred.

2
New cards

Least privilege (reinforced)

Users get exactly the rights needed for their job, nothing more, limiting damage if malicious software runs under that user's context.

3
New cards

Mandatory Access Control (MAC)

Resources are labeled (confidential, secret, top secret); a central administrator defines what access level each user is granted.

4
New cards

Discretionary Access Control (DAC)

The creator or owner of the data decides who else can access it and at what permission level (read vs modify).

5
New cards

Role-Based Access Control (RBAC)

Access tied to job function or role; administrator creates groups, assigns permissions to the group, then adds users, who inherit permissions implicitly.

6
New cards

Rule-Based Access Control

Administrator creates system-enforced rules tied to specific objects (time-based access, browser requirements, etc.); the user has no control over the rules.

7
New cards

RBAC vs Rule-Based

RBAC bases access on who you are (role/group). Rule-Based bases access on conditions being met (time, location, device), independent of who the person is.

8
New cards

Attribute-Based Access Control (ABAC)

Access determined by combining multiple criteria at once: IP address, time of day, action type, relationship to the data. The most granular, "next generation" model.

9
New cards

ABAC as combination model

ABAC evaluates identity, time, location, action, and more simultaneously, effectively combining what RBAC and Rule-Based each check separately.

10
New cards

Time-of-day restriction

A specific access condition, usable across multiple models, limiting access to certain hours; not a model on its own.

11
New cards

Time zone consideration

For global organizations, time-of-day restrictions must account for the user's native time zone, not just server local time.

12
New cards

DAC tradeoff

High flexibility since the owner controls access, but lower security since consistency depends on individual user judgment rather than central policy.

13
New cards

MAC administrator control

Unlike DAC, the administrator, not the data owner, defines all access levels in a mandatory access control system.

14
New cards

Access control model summary

DAC: owner decides. MAC: labels, central admin. RBAC: role/group. Rule-Based: conditions. ABAC: multiple combined attributes.