1 / 60

Access Control & Privacy Preservation in Online Social Networks

Institute for Cyber Security. Access Control & Privacy Preservation in Online Social Networks. Feb. 22, 2013 CS6393 Lecture 6 Yuan Cheng Institute for Cyber Security University of Texas at San Antonio ycheng@cs.utsa.edu http://www.my.cs.utsa.edu/~ycheng.

lulu
Télécharger la présentation

Access Control & Privacy Preservation in Online Social Networks

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Institute for Cyber Security Access Control & Privacy Preservation in Online Social Networks Feb. 22, 2013 CS6393 Lecture 6 Yuan Cheng Institute for Cyber Security University of Texas at San Antonio ycheng@cs.utsa.edu http://www.my.cs.utsa.edu/~ycheng World-Leading Research with Real-World Impact!

  2. Outline World-Leading Research with Real-World Impact! Introduction Security & Privacy Issues in OSNs Access Control for OSNs Other Privacy Preservation Solutions

  3. Online Social Networks World-Leading Research with Real-World Impact!

  4. Statistics World-Leading Research with Real-World Impact! • Facebook, the largest OSN: • More than a billion monthly active users as of December 2012.  • Approximately 82% of our monthly active users are outside the U.S. and Canada. • 618 million daily active users on average in December 2012.  • 680 million monthly active users who used Facebook mobile products as of December 31, 2012.

  5. Representation of an OSN • An OSN is represented by means of a graph • Users are denoted as nodes • Relationships are represented as edges • Edges may be labeled to represent types • Edges may be directed

  6. Outline World-Leading Research with Real-World Impact! Introduction Security & Privacy Issues in OSNs Access Control for OSNs Other Privacy Preservation Solutions

  7. Security & Privacy Issues World-Leading Research with Real-World Impact! • Security issues in OSNs can be organized into four categories • Privacy breaches • Spam and phishing attacks • Sybil attacks • Malware attacks • Privacy breaches • Easy to happen from OSN providers, other users, and 3rd party applications • OSN providers store user data • 3rd party applications provide extra functionalities • Major threats are frompeer users • Not aware of who they share with and how much • Have difficulty in managing privacy controls

  8. Why Privacy is Hard to Protect World-Leading Research with Real-World Impact! • Users tend to give out too much information • Unaware of privacy issues • Promote sharing vs. Protect privacy • Users tend to be Reactive rather than Proactive • Privacy policies • Changing over time • Confusing • Privacy thresholds vary by individuals

  9. Outline World-Leading Research with Real-World Impact! Introduction Security & Privacy Issues in OSNs Access Control for OSNs Other Privacy Preservation Solutions

  10. Control on Social Interactions World-Leading Research with Real-World Impact! • A user wants to control other users’ access to her own shared information • Only friends can read my post • A user wants to control other users’ activities who are related to the user • My children cannot be a friend of my co-workers • My activities should not be notified to my co-workers • A user wants to control her outgoing/incoming activities • No accidental access to violent contents • Do not poke me • A user’s activity influences access control decisions • Once Alice sends a friend request to Bob, Bob can see Alice’s profile

  11. What existing OSNs offer World-Leading Research with Real-World Impact! • Many OSNs allow users to choose from a pre-defined policy vocabulary • “public”, “private”, “friend”, “friend of friend”,… • Some systems support customized relationships • circle, friend list • Either too restrictive or too loose!

  12. The Challenges of OSN Access Control World-Leading Research with Real-World Impact! • Lack of a Central Administrator • Traditional access control mechanisms, such as RBAC, requires an administrator to manage access control • No such administrator exists in OSNs • Dynamic Changing Environment • Frequent content updates and volatile nature of relationships • Identity and attribute-based access control are not scalable for OSNs

  13. Relationship-based Access Control World-Leading Research with Real-World Impact! Users in OSNs are connected by social relationships (user-to-user relationships) Owner of the resource can control its release based on such relationships between the access requester and the owner

  14. Related Works World-Leading Research with Real-World Impact! Fong et al. [ESORICS 09] Fong et al. [CODASPY 11] Carminati et al. [ACM TISS 08] Carminati et al. [SACMAT 09]

  15. Fong et al. 11 World-Leading Research with Real-World Impact! • Relationship-Based Access Control: Protection Model and Policy Language • Features: • Poly-relational, in the sense that it tracks not only whether a relationship exists, but also the type of that relationship • Authorization decision is solely based on the relationship between owner and accessor • A tree-shaped hierarchy of Access Contexts, which supports the scoping of the effectiveness of relationships

  16. Fong 11: Policy Examples World-Leading Research with Real-World Impact! • Grant access to the owner’s spouse • <spouse> a • Grant access to the owner’s child • <-parent> a • Grant access to grand parents • <parent><parent> a • Grant access to parents, aunts and uncles • <parent> a ∨ <parent><sibling> a ∨ <parent><sibling><spouse> a

  17. Fong 11: Policy Examples (cont.) World-Leading Research with Real-World Impact! • Grant access unless the accessor is a parent of the owner • ¬<parent> a • Grant access to a sibling who is not married • <sibling>(a ∧ [spouse] ⊥) • Grant access to a married sibling • <sibling>(a ∧ [spouse] ⊤) • Grant access if accessor is the only child of the owner • <-parent> a ∧ [-parent] a

  18. Carminati et al. 08 World-Leading Research with Real-World Impact! • Features • Discretionary • Rule-based • Semi-decentralized • Policies are specified in terms of: • Relationship Types • Depth (Maximum length of the path) • Trust Levels (Minimum trust level)

  19. C08: Approach World-Leading Research with Real-World Impact! • Requestor must prove to the resource’s owner that he/she satisfies the requirement stated in access control policy • Requestor sends access request to resource owner • Owner replies by sending access rules • Requestor provide the owner with a proof • Owner locally verifies the proof by a reasoner • Owner grants or rejects access.

  20. C08: Trust Representation World-Leading Research with Real-World Impact! • A trust relationship is usually modeled as a directed edge • Trust relationship is transitive • We can use trust paths ABC to determine how much A considers C trustworthy

  21. C08: Trust Computation World-Leading Research with Real-World Impact! • Variant of the TidalTrust [Golbeck 2005] • 1: all the shortest paths are discovered • 2: set a trust threshold maxT, which is used to discard trust paths consisting of edges with a trust value less than maxT • 3: trust is computed by considering only the paths with a strength >= maxT

  22. C08: How Trust Works World-Leading Research with Real-World Impact! • Trustworthiness of the proof • Relationship certificates • Certificate path -– a set of certificates • Certificate server –- a trusted third party • Why is certificate server needed? • The requestor may maliciously omit one or more of the paths, providing only the paths with the highest level of trust • The server stores into a central certificate directory all the relationship certificates specified by OSN nodes, and discovers certificates paths

  23. C08: Trust-based Access Control World-Leading Research with Real-World Impact! • Pros • We do it in reality • Requires little user input • Cons • The concept of trust is complex and vague • Lacks of a standard measurement

  24. Carminati et al. 09 World-Leading Research with Real-World Impact! • A Semantic Web Based Framework for Social Network Access Control • Motivations: • Most of existing OSNs: • Implement very basic access control systems, by marking a given item as public, private, accessible by direct contacts, or some variants of this kind of setting. • Lack flexibility • Platform-specific

  25. C09: The Idea World-Leading Research with Real-World Impact! • Encode social network-related information by means of an ontology • User Profiles, Relationships among users, Resources, Relationships between users and resources, Actions • Construct the Social Network Knowledge Base (SNKB) • Define security policies as rules • Encode authorizations to obtain the Security Authorization Knowledge Base (SAKB) • Use a centralized reference monitor to enforce the policies

  26. C09: Security Policies World-Leading Research with Real-World Impact! • Access Control Policies • Regulate how resources can be accessed by SN participants • Filtering Policies • Specify by a user to state which information she prefers not to access • Protect users from inappropriate or unwanted content • Do not equal to negative access control policies • Admin Policies • State who is authorized to specify policies and for which users and objects

  27. C09: The Values World-Leading Research with Real-World Impact! • Relationships between users and resources • Access control of most existing models is solely based on the relationships between accessing user and resource owner • The only relationship between user and resource is ownership • Annotation based relationships need to be addressed • Admin Policy Model • In SN, users should be recognized as the main authority over AC policies regarding the information related to them • Filtering Policies • Protect users from inappropriate or unwanted data • Hierarchical Structure for Policy Inference • Facilitate automatic policies propagation

  28. Our Own Work World-Leading Research with Real-World Impact! • Developed access control for OSNs based on relationships on the social graph • UURAC: User-to-User Relationship-based Access Control (DBSec 12) • URRAC: User-to-Resource Relationship-based Access Control (Winner of Best Paper Award at PASSAT 12)

  29. Motivating Examples World-Leading Research with Real-World Impact! • Related User’s Control • There exist several different types of relationships in addition to ownership • e.g., Alice and Carol want to control the release of Bob’s photo which contains Alice and Carol’s image. • Administrational Control • A change of relationship may result in a change of authorization • Treat administrative activitiesdifferent from normal activities • Policy specifying, relationship invitation and relationship recommendation • e.g., Bob’s mother Carol may not want Bob to become a friend with her colleagues, to access any violent content or to share personal information with others.

  30. Problems World-Leading Research with Real-World Impact! • Traditional access control mechanisms are not suitable for OSNs • OSNs keep massive resources and change dynamically • Existing relationship-based access control approaches are coarse-grained and limited • Commercial systems support either limited types or limited depth of U2U relationships • Academic works are also not flexible and expressive enough in relationship composition • Policy administration and conflict resolution are missing • Multiple users can specify policies for the same resource

  31. Scope and Assumptions World-Leading Research with Real-World Impact! • Assumptions • The threat model does not include OSN providers • Users’ computers are not compromised by malicious intruders or malwares • Do not consider the case when a hacker gains unauthorized access to a site’s code and logic • Scope • Aim to improve the access control mechanism

  32. Comparison World-Leading Research with Real-World Impact! • The advantages of our approach: • Passive form of action allows outgoing and incoming action policy • Path pattern of different relationship types and hopcount skipping make policy specification more expressive • System-level conflict resolution policy

  33. Social Networks World-Leading Research with Real-World Impact! • Social graph is modeled as a directed labeled simple graph G=<U, E, Σ> • Nodes U as users • Edges E as relationships • Σ={σ1,σ2,…,σn, σ1-1,σ2-1,…, σn-1} as relationship types supported

  34. Characteristics of Access Control in OSNs World-Leading Research with Real-World Impact! • Policy Individualization • Users define their own privacy and activity preferences • Related users can configure policies too • Collectively used by the system for control decision • User and Resource as a Target • e.g., poke, messaging, friendship invitation, etc. • User Policies for Outgoing and Incoming Actions • User can be either requester or target of activity • Allows control on 1) activities w/o knowing a particular resource and 2) activities against the user w/o knowing a particular access requestor • e.g., block notification of friend’s activities; restrict from viewing violent contents

  35. U2U Relationship-based Access Control (UURAC) Model UA: Accessing User UT: Target User UC: Controlling User RT: Target Resource AUP: Accessing User Policy TUP: Target User Policy TRP: Target Resource Policy SP: System Policy • Policy Individualization • User and Resource as a Target • Separation of user policies for incoming and outgoing actions • Regular Expression based path pattern w/ max hopcounts (e.g., <ua, (f*c,3)>) World-Leading Research with Real-World Impact!

  36. Access Request and Evaluation World-Leading Research with Real-World Impact! • Access Request <ua, action, target> • ua tries to perform action on target • Target can be either user ut or resource rt • Policies and Relationships used for Access Evaluation • When ua requests to access a user ut • ua’s AUP, ut’s TUP, SP • U2U relationships between ua and ut • When ua requests to access a resource rt • ua’s AUP, rt’s TRP (associated with uc), SP • U2U relationships between ua and uc

  37. Policy Representations World-Leading Research with Real-World Impact! • action-1 in TUP and TRP is the passive form since it applies to the recipient of action • TRP has an extra parameter rt to distinguish the actual target resource it applies to • owner(rt) a list of ucU2U relationships between ua and uc • SP does not differentiate the active and passive forms • SP for resource needs r.type to refine the scope of the resource

  38. Graph Rule Grammar World-Leading Research with Real-World Impact!

  39. Example World-Leading Research with Real-World Impact! • Alice’s policy PAlice: • , • Harry’s policy PHarry: • , • System’s policy PSys: • “Only Me” • says that ua can only poke herself • specifies that ut can only be poked by herself • The Use of Negation Notation • allows the coworkers of the user’s distant friends to see, while keeping away the coworkers of the user’s direct friends

  40. Policy Extraction It determines the starting node, where the evaluation starts The other user involved in access becomes the evaluating node Path-check each path spec using Algorithm 2 (introduced in detail later) World-Leading Research with Real-World Impact! Policy: <action, r.type, graph rule> Graph Rule: start, path rule Path Rule: path spec ∧|∨ path spec Path Spec: path, hopcount

  41. Policy Evaluation World-Leading Research with Real-World Impact! • Evaluate a combined result based on conjunctive or disjunctive connectives between path specs • Make a collective result for multiple policies in each policy set. • Policy conflicts may arise. We assume system level conflict resolution strategy is available (e.g., disjunctive, conjunctive, prioritized). • Compose the final result from the result of each policy set (AUP, TUP/TRP, SP)

  42. Path Checking Algorithm World-Leading Research with Real-World Impact! • Parameters: G, path, hopcount, s, t • Traversal Order: Depth-First Search • Activities in OSN typically occur among people with close distance • DFS needs only one pair of variables to keep the current status and history of exploration • Hopcount limit prevents DFS from lengthy useless search

  43. Initiation п1 f п3 п0 f Access Request: (Alice, read, rt) f п2 c Policy: (read-1, rt, (f*cf*, 3)) f c Path pattern: f*cf* Hopcount: 3 DFA for f*cf* World-Leading Research with Real-World Impact!

  44. Path pattern: f*cf* Hopcount: 3 f п1 Dave Dave Bob Bob п1 f п3 f f п0 п3 п0 f c c f c Harry Alice Harry Ed Alice п2 f п2 c f c f Case 2: found a matching path and DFA reached an accepting state Case 1: next node is already visited, thus creates a self loop Case 3: currentPath matches the prefix of the pattern, but DFA not at an accepting state f Carol Fred George f f c f d: 0 currentPath: Ø stateHistory: 0 d: 1 currentPath: (H,D,f) stateHistory: 01 d: 3 currentPath: (H,D,f)(D,B,c)(B,A,f) stateHistory: 0123 d: 2 currentPath: (H,D,f)(D,B,f) stateHistory: 011 d: 2 currentPath: (H,D,f)(D,B,c) stateHistory: 012

  45. Beyond U2U Relationships World-Leading Research with Real-World Impact! • There are various types of relationships between users and resources in addition to U2U relationships and ownership • e.g., share, like, comment, tag, etc • U2U, U2R and R2R • U2R further enables relationship and policy administration

  46. URRAC Model Components AU: Accessing User AS: Accessing Session TU: Target User TS: Target Session O: Object P: Policy PAU: Accessing User Policy PAS: Accessing Session Policy PTU: Target User Policy PTS: Target Session Policy PO: Object Policy PP: Policy for Policy PSys: System Policy World-Leading Research with Real-World Impact!

  47. Differences with UURAC World-Leading Research with Real-World Impact! • Access Request • (s, act, T) where T may contain multiple objects • Hopcount Skipping • Option to omit the hops created by resources • Hopcount stated inside [[]] will not be counted in the global hopcount • e.g., ([f*,3][[c*,2]],3) • Policy Administration • User-session Distinction

  48. Hopcount Skipping World-Leading Research with Real-World Impact! • U2R and R2R relationships may form a long sequence • Omit the distance created by resources • Local hopcount stated inside “[[]]” will not be counted in global hopcount. • E.g., “([f*,3][[c*, 2]],3)”, the local hopcount 2 for c* does not apply to the global hopcount 3, thus allowing f* to have up to 3 hops. • Six degrees of separation • Any pair of persons are distanced by about 6people on average. (4.74 shown by recent study) • Hopcount for U2U relationships is practically small

  49. Policy Conflict Resolution World-Leading Research with Real-World Impact! • System-defined conflict resolution for potential conflicts among user-specified policies • Disjunctive, conjunctive and prioritized order between relationship types • ∧,∨, >represent disjunction, conjunction and precedence • @ is a special relationship “null’’ that denotes “self”

More Related