Computer Security: Principles and Practice First Edition by William Stallings and Lawrie Brown Chapter 4 – Access Control.

Slides:



Advertisements
Similar presentations
Access Control CS461/ECE422 Fall Reading Material Chapter 4 through section 4.5 Chapters 23 and 24 – For the access control aspects of Unix and.
Advertisements

Access Control Intro, DAC and MAC System Security.
第四章 犯罪概念与犯罪构成. 第一节 犯罪概念 一、犯罪概念的类型  (一)犯罪的形式概念  (二)犯罪的实质概念  (三)犯罪的混合概念.
Secure Systems Research Group - FAU Patterns for access control E.B. Fernandez.
Silberschatz, Galvin and Gagne ©2009 Operating System Concepts – 8 th Edition, Chapter 14: Protection.
Security Fall 2006McFadyen ACS How do we protect the database from unauthorized access? Who can see employee salaries, student grades, … ? Who can.
Computer Security: Principles and Practice EECS710: Information Security Professor Hossein Saiedian Fall 2014 Chapter 4: Access Control.
1.2 地理信息技术在区域 地理环境研究中的应用. 地理信息技术: 指获取、管理、分析和 应用地理空间信息的现 代技术的总称。 应用:资源调查、环境监测、自然灾害防御监测、国 土资源管理、国土开规划等。 地理信息 : 遥感 (RS) 、全球定位系统 (GPS) 和地理信息系统 (GIS)
Chapter 14: Protection.
Role Based Access Control Models Presented By Ankit Shah 2 nd Year Master’s Student.
Lecture 7 Access Control
Lecture slides prepared for “Computer Security: Principles and Practice”, 2/e, by William Stallings and Lawrie Brown, Chapter 4 “Overview”.
Access Control: Part I Chao-Hsien Chu, Ph.D.
Authentication and authorization Access control consists of two steps, authentication and authorization. Subject Do operation Reference monitor Object.
Protection.
ECE509 Cyber Security : Concept, Theory, and Practice Access Control Matrix Spring 2014.
Lecture slides prepared for “Computer Security: Principles and Practice”, 3/e, by William Stallings and Lawrie Brown, Chapter 4 “Access Control”.
14.1 Silberschatz, Galvin and Gagne ©2005 Operating System Concepts Chapter 14: Protection Goals of Protection Principles of Protection Domain of Protection.
CSCE 201 Introduction to Information Security Fall 2010 Access Control.
Silberschatz, Galvin and Gagne ©2009 Operating System Concepts – 8 th Edition, Chapter 14: Protection.
法律加油站 —— 养老金余额能否继承? 2015 年 02 月 13 日 合规宣 [2015]02 号.
Computer Security: Principles and Practice First Edition by William Stallings and Lawrie Brown Lecture slides by Lawrie Brown Chapter 4 – Access Control.
G53SEC 1 Access Control principals, objects and their operations.
Access Control. What is Access Control? The ability to allow only authorized users, programs or processes system or resource access The ability to disallow.
Silberschatz, Galvin and Gagne  Operating System Concepts Chapter 18: Protection Goals of Protection Objects and Domains Access Matrix Implementation.
14.1 Silberschatz, Galvin and Gagne ©2009 Operating System Concepts with Java – 8 th Edition Chapter 14: Protection.
Silberschatz, Galvin and Gagne ©2009 Operating System Concepts – 8 th Edition, Protection (Chapter 14)
CE Operating Systems Lecture 21 Operating Systems Protection with examples from Linux & Windows.
14.1/21 Part 5: protection and security Protection mechanisms control access to a system by limiting the types of file access permitted to users. In addition,
Access Control: Policies and Mechanisms Vinod Ganapathy.
Chapter 14: Protection Silberschatz, Galvin and Gagne ©2005 Operating System Concepts – 7 th Edition, Apr 11, 2005 Goals of Protection Operating.
Privilege Management Chapter 22.
Computer Security: Principles and Practice
Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9 th Edition Chapter 14: Protection.
院长助理 教务处长 李学锋 教授 2008 年 9 月 9 日 基于工作过程的系统化高职课程建设.
File Systems.  Issues for OS  Organize files  Directories structure  File types based on different accesses  Sequential, indexed sequential, indexed.
Chapter 4 Access Control. Access Control Principles RFC 4949 defines computer security as: “Measures that implement and assure security services in a.
CSEN 1001 Computer and Network Security Amr El Mougy Mouaz ElAbsawi.
Saurav Karmakar. Chapter 14: Protection  Goals of Protection  Principles of Protection  Domain of Protection  Access Matrix  Implementation of Access.
Access Control Model SAM-5.
Access Control CSE 465 – Information Assurance Fall 2017 Adam Doupé
Lecture 7 Access Control
PROTECTION.
Protection and Security
Chapter 14: Protection Modified by Dr. Neerja Mhaskar for CS 3SH3.
Chapter 14: System Protection
Chapter 14: Protection.
Chapter 14: Protection Source & Copyright: Operating System Concepts, Silberschatz, Galvin and Gagne.
Chapter 14: Protection.
Chapter 14: Protection.
Chapter 4 Access Control
Chapter 14: Protection.
CE Operating Systems Lecture 21
Chapter 14: Protection.
Chapter 14: Protection.
Chapter 14: Protection.
Chapter 14: Protection.
OS Access Control Mauricio Sifontes.
Chapter 14: Protection.
Chapter 14: Protection.
Chapter 14: Protection.
Operating System Concepts
Access Control.
Principles and Practice
Chapter 14: Protection.
Chapter 14: Protection.
Chapter 14: Protection.
Chapter 14: Protection.
Chapter 14: Protection.
Presentation transcript:

Computer Security: Principles and Practice First Edition by William Stallings and Lawrie Brown Chapter 4 – Access Control

Access Control  “The prevention of unauthorized use of a resource, including the prevention of use of a resource in an unauthorized manner“  central element of computer security  assume have users and groups authenticate to system( 认证 ) authenticate to system( 认证 ) assigned access rights to certain resources on system (访问特定的资源) assigned access rights to certain resources on system (访问特定的资源)

Access Control Principles

Access Control Policies DAC 和 MAC 是基于能否再授权 的, DAC 起源于军事信息安全 需求的概念, RBAC 广泛流行。

Access Control Requirements  reliable input (依赖于位置信息,如 IP/MAC )  fine and coarse specifications (取决于资 源粒度)  least privilege (仅限完成任务的最小权限)  separation of duty (分工明确,控制灵活)  open and closed policies (只允许少数人访 问,开发访问但指定禁止的权限)  policy combinations, conflict resolution  administrative policies

Access Control Elements  subject - entity that can access objects a process representing user/application a process representing user/application often have 3 classes: owner, group, world (能 访问系统,但不能访问指定资源) often have 3 classes: owner, group, world (能 访问系统,但不能访问指定资源)  object - access controlled resource e.g. files, directories, records, programs etc e.g. files, directories, records, programs etc number/type depend on environment number/type depend on environment  access right - way in which subject accesses an object e.g. read, write, execute, delete, create, search e.g. read, write, execute, delete, create, search

Discretionary Access Control  often provided using an access matrix lists subjects in one dimension (rows) lists subjects in one dimension (rows) lists objects in the other dimension (columns) lists objects in the other dimension (columns) each entry specifies access rights of the specified subject to that object each entry specifies access rights of the specified subject to that object  access matrix is often sparse  can decompose by either row or column (按行和列分解访问矩阵,将产生访问控 制表和能力表)

Access Control Structures

Access Control Model

Access Control Function

Protection Domains  set of objects with associated access rights  in access matrix view, each row defines a protection domain but not necessarily just a user but not necessarily just a user may be a limited subset of user’s rights may be a limited subset of user’s rights applied to a more restricted process applied to a more restricted process  may be static or dynamic

UNIX File Concepts  UNIX files administered using inodes control structure with key info on file control structure with key info on file attributes, permissions of a single fileattributes, permissions of a single file may have several names for same inode may have several names for same inode have inode table / list for all files on a disk have inode table / list for all files on a disk copied to memory when disk mountedcopied to memory when disk mounted  directories form a hierarchical tree may contain files or other directories may contain files or other directories are a file of names and inode numbers are a file of names and inode numbers

UNIX File Access Control

 “set user ID”(SetUID) or “set group ID”(SetGID) system temporarily uses rights of the file owner / group in addition to the real user’s rights when making access control decisions system temporarily uses rights of the file owner / group in addition to the real user’s rights when making access control decisions enables privileged programs to access files / resources not generally accessible enables privileged programs to access files / resources not generally accessible  sticky bit on directory limits rename/move/delete to owner on directory limits rename/move/delete to owner  superuser is exempt from usual access control restrictions is exempt from usual access control restrictions

UNIX Access Control Lists  modern UNIX systems support ACLs  can specify any number of additional users / groups and associated rwx permissions  ACLs are optional extensions to std perms  group perms also set max ACL perms  when access is required select most appropriate ACL select most appropriate ACL owner, named users, owning / named groups, othersowner, named users, owning / named groups, others check if have sufficient permissions for access check if have sufficient permissions for access

Role- Based Access Control

NIST RBAC Model

RBAC For a Bank

Summary  introduced access control principles subjects, objects, access rights subjects, objects, access rights  discretionary access controls access matrix, access control lists (ACLs), capability tickets access matrix, access control lists (ACLs), capability tickets UNIX traditional and ACL mechanisms UNIX traditional and ACL mechanisms  role-based access control  case study