Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 1.45 KB

File metadata and controls

25 lines (21 loc) · 1.45 KB

Event Driven Applications

Review, Research, and Discussion

  1. Why is access control important?
    • it creates a security layer that restricts user access to resources
  2. Describe an application that would need access control.
    • a forum - varying levels of access would allow different users access to different resources and perform different actions on the forum
  3. What is a role used for?
    • roles assigned to a user that define the capabilities given to the user
  4. Why is role based access control more scalable than discretionary or mandatory access control?
    • in RRBC, users are given access based on their role, the permissions remain the same for all users within that role
    • in mandatory access control there are more classification categories for resources and users, requiring more maintenance and overhead
    • source: techotopia.com

Vocab Terms

  • Authorization
    • the process of verifying what resources users have access to
  • Role Based Access Control
    • access-control that is defined based on user roles and privileges
    • roles assigned to a user that define the capabilities given to the user
  • Capabilities