Gail-Joon Ahn and Ravi Sandhu George Mason University Myong Kang and Joon Park Naval Research...

25
Gail-Joon Ahn and Ravi Sandhu George Mason University Myong Kang and Joon Park Naval Research Laboratory Injecting RBAC to Secure a Web-based Workflow System

Transcript of Gail-Joon Ahn and Ravi Sandhu George Mason University Myong Kang and Joon Park Naval Research...

Page 1: Gail-Joon Ahn and Ravi Sandhu George Mason University Myong Kang and Joon Park Naval Research Laboratory Injecting RBAC to Secure a Web-based Workflow.

Gail-Joon Ahn and Ravi Sandhu

George Mason University

Myong Kang and Joon Park

Naval Research Laboratory

Injecting RBAC to Secure a Web-based Workflow System

Page 2: Gail-Joon Ahn and Ravi Sandhu George Mason University Myong Kang and Joon Park Naval Research Laboratory Injecting RBAC to Secure a Web-based Workflow.

2© Gail J. Ahn 2000

WORKFLOW MANAGEMENT SYSTEMS

Control and coordinate processes that may be processed by different processing entities

Received much attention Marriage with Web technology Minimal security services

Page 3: Gail-Joon Ahn and Ravi Sandhu George Mason University Myong Kang and Joon Park Naval Research Laboratory Injecting RBAC to Secure a Web-based Workflow.

3© Gail J. Ahn 2000

RELATED WORKS

D. Hollingsworth, 1995 Peter J. Denning, 1996 Johann Eder et el., 1997 (Panta Rhei) J. Miller et al., 1998 (METEOR) Myong H. Kang et al., 1999 Wei-Kuang Huang and Vijay Atluri,

1999

Page 4: Gail-Joon Ahn and Ravi Sandhu George Mason University Myong Kang and Joon Park Naval Research Laboratory Injecting RBAC to Secure a Web-based Workflow.

4© Gail J. Ahn 2000

OBJECTIVE

Inject role-based access control (RBAC) into an existing web-based workflow system

Page 5: Gail-Joon Ahn and Ravi Sandhu George Mason University Myong Kang and Joon Park Naval Research Laboratory Injecting RBAC to Secure a Web-based Workflow.

5© Gail J. Ahn 2000

WHY RBAC?

A mechanism which allows and promotes an organization-specific access control policy based on roles

Has become widely accepted as the proven technology

Page 6: Gail-Joon Ahn and Ravi Sandhu George Mason University Myong Kang and Joon Park Naval Research Laboratory Injecting RBAC to Secure a Web-based Workflow.

6© Gail J. Ahn 2000

ROLESUSERS PERMISSIONS

SIMPLIFIED RBAC MODEL

RHUA PA

Page 7: Gail-Joon Ahn and Ravi Sandhu George Mason University Myong Kang and Joon Park Naval Research Laboratory Injecting RBAC to Secure a Web-based Workflow.

7© Gail J. Ahn 2000

ROLE-BASED SECURE WORKFLOW SYSTEM

Workflow Design Tool Workflow (WF) System Role Server

Page 8: Gail-Joon Ahn and Ravi Sandhu George Mason University Myong Kang and Joon Park Naval Research Laboratory Injecting RBAC to Secure a Web-based Workflow.

8© Gail J. Ahn 2000

WF system

BASIC COMPONENTSRole Server

user-role assignment

user-role DB

Certificate server

role-hierarchy

NRL design tool

role-task assignment

role-hierarchy

client client

T1

T2-2

T2-1

T3CORBA IIOP

HTTP

Page 9: Gail-Joon Ahn and Ravi Sandhu George Mason University Myong Kang and Joon Park Naval Research Laboratory Injecting RBAC to Secure a Web-based Workflow.

9© Gail J. Ahn 2000

ARCHITECTURES

USER-PULL STYLE SERVER-PULL STYLE

Page 10: Gail-Joon Ahn and Ravi Sandhu George Mason University Myong Kang and Joon Park Naval Research Laboratory Injecting RBAC to Secure a Web-based Workflow.

10© Gail J. Ahn 2000

Role Server

WF design tool WF system

User-role assignment

role-task assignment

role-hierarchy

user-role DB

Certificate server

role-hierarchy

T1

T2-2

T2-1T3

Role-hierarchy

client

Authenticationinformation

Authorizationinformation

Workflow enforcement information

USER-PULL STYLE

Page 11: Gail-Joon Ahn and Ravi Sandhu George Mason University Myong Kang and Joon Park Naval Research Laboratory Injecting RBAC to Secure a Web-based Workflow.

11© Gail J. Ahn 2000

Role Server

WF design tool WF system

User-role assignment

role-task assignment

role-hierarchy

user-role DB

Certificate server

role-hierarchy

T1

T2-2

T2-1T3

Role-hierarchy

client

Authentication informationAuthorization

information

Workflow enforcement information

SERVER-PULL STYLE

Page 12: Gail-Joon Ahn and Ravi Sandhu George Mason University Myong Kang and Joon Park Naval Research Laboratory Injecting RBAC to Secure a Web-based Workflow.

12© Gail J. Ahn 2000

NRL (Naval Research Lab.) DESIGN TOOL

design workflow model create role and role hierarchies assign role to task exporting role hierarchies to role

server

Page 13: Gail-Joon Ahn and Ravi Sandhu George Mason University Myong Kang and Joon Park Naval Research Laboratory Injecting RBAC to Secure a Web-based Workflow.

13© Gail J. Ahn 2000

Platform: Windows NT, JDK1.2

Organization Editor

<?xml version="1.0"?><!--URA Revision: 1 Mon Dec 07 15:59:28 EDT 1999--><!DOCTYPE Organization SYSTEM "../dtd/Organization.dtd"><Organization id="Organization_URA"> <Name>URA</Name> <Description></Description> <Role id="director"> <Name>director</Name> <Description></Description> <Privileges></Privileges> <LowRoleList> <RoleReference>

<Link idref = "pl1"/> </RoleReference> <RoleReference>

<Link idref = "pl2"/> </RoleReference> </LowRoleList> <HighRoleList> </HighRoleList> </Role> <RoleReference>

NRL DESIGN TOOL (Cont’d)

Page 14: Gail-Joon Ahn and Ravi Sandhu George Mason University Myong Kang and Joon Park Naval Research Laboratory Injecting RBAC to Secure a Web-based Workflow.

14© Gail J. Ahn 2000

WORKFLOW SYSTEM

each task server is web server user should present client

authentication certificate user’s privilege is authorized by

content of certificate (specially client’s role information)

Page 15: Gail-Joon Ahn and Ravi Sandhu George Mason University Myong Kang and Joon Park Naval Research Laboratory Injecting RBAC to Secure a Web-based Workflow.

15© Gail J. Ahn 2000

ROLE AUTHORIZATION ON WORKFLOW SYSTEM

client

Task Server(Web Server)

resources

1. access the resource

3. read resource

4. display resource

2.1 get client certificate2.2 retrieve role information2.3 check authorization status

Page 16: Gail-Joon Ahn and Ravi Sandhu George Mason University Myong Kang and Joon Park Naval Research Laboratory Injecting RBAC to Secure a Web-based Workflow.

16© Gail J. Ahn 2000

ROLE SERVER

User Role Assignment Certificate Server

Page 17: Gail-Joon Ahn and Ravi Sandhu George Mason University Myong Kang and Joon Park Naval Research Laboratory Injecting RBAC to Secure a Web-based Workflow.

17© Gail J. Ahn 2000

USER ROLE ASSIGNMENT

maintain role hierarchies and user database

assign users to roles generate user-role database

Page 18: Gail-Joon Ahn and Ravi Sandhu George Mason University Myong Kang and Joon Park Naval Research Laboratory Injecting RBAC to Secure a Web-based Workflow.

18© Gail J. Ahn 2000

Converted Role HierarchyFile

Alice : directorBob : engineer Chris : pro-leader

USER ROLE ASSIGNMENT (Cont’d)

Page 19: Gail-Joon Ahn and Ravi Sandhu George Mason University Myong Kang and Joon Park Naval Research Laboratory Injecting RBAC to Secure a Web-based Workflow.

19© Gail J. Ahn 2000

CERTIFICATE SERVER

authenticate client retrieve client’s role information from

user-role database issue certificate with client’s role

information

Page 20: Gail-Joon Ahn and Ravi Sandhu George Mason University Myong Kang and Joon Park Naval Research Laboratory Injecting RBAC to Secure a Web-based Workflow.

20© Gail J. Ahn 2000

X.509 CERTIFICATESerial number : seu89084jdysValidity : 01011999 -01012000

Subject/Name/OrganizationCommon Name = Gail J. AhnOrganization Unit = staff

..Public key:1e354276ssfatew765850

98327djkfh9974-

72ks78610092wef3-------------------------------

--------Singed By : List, GMUkljsuytoj09874875919jdj2

84jds4djso475-28ejd7-

18re0875757

Public Key

Private Key

Certificate Authority

RoleInformation

Page 21: Gail-Joon Ahn and Ravi Sandhu George Mason University Myong Kang and Joon Park Naval Research Laboratory Injecting RBAC to Secure a Web-based Workflow.

21© Gail J. Ahn 2000

Certificate Server

Client

User-Role Database

Log

CertificateEngine

123

4 5

8

9

11

67

10

1. Client Certificate Request2-3. Challenge-Response based on Password4-5. Retrieving Role Information of a User6-7. Creating Certificate Enrollment Form and Public-key Embeded8-9. Issuing Client Certificate 10. Downloding Client Certificate 11. Logging Certificate Information

CERTIFICATE ISSUE

Page 22: Gail-Joon Ahn and Ravi Sandhu George Mason University Myong Kang and Joon Park Naval Research Laboratory Injecting RBAC to Secure a Web-based Workflow.

22© Gail J. Ahn 2000

CERTIFICATEAUTHORIZATION OVER SSL

client Task Server

server certificate

client certificate

SSL connection

Role authorization

Page 23: Gail-Joon Ahn and Ravi Sandhu George Mason University Myong Kang and Joon Park Naval Research Laboratory Injecting RBAC to Secure a Web-based Workflow.

23© Gail J. Ahn 2000

client Task Server

SSL connection

Proxy Server

task.html

Request resource

Forward resource Send resource

Send modified request

task.htmlhttp://b.com/task.html

http://a.com/task.html

REVERSE PROXYING(MINIMAL CHANGES IN SERVER SIDE)

Page 24: Gail-Joon Ahn and Ravi Sandhu George Mason University Myong Kang and Joon Park Naval Research Laboratory Injecting RBAC to Secure a Web-based Workflow.

24© Gail J. Ahn 2000

client

Certificate Server

Role Server

Task Server

Step 1

Step 5

Step 4

Step 2 Step 3

Proxy Server

SSL

FINAL SCENARIO

IP checking Step 6

Page 25: Gail-Joon Ahn and Ravi Sandhu George Mason University Myong Kang and Joon Park Naval Research Laboratory Injecting RBAC to Secure a Web-based Workflow.

25© Gail J. Ahn 2000

CONCLUSION

Model-driven experimental research Develop and motivate the model first Then implement on COTS platforms

OM-AM Approach Objective Model Architecture Mechanism

Funded by Naval Research Lab