SlideShare ist ein Scribd-Unternehmen logo
1 von 23
Digital Enterprise Research Institute                                                               www.deri.ie




                A Privacy Preference Manager for
                    the Social Semantic Web
                                 Owen Sacco and Alexandre Passant
                                   firstname.lastname@deri.org
        SPIM 2011 – Bonn, Germany                                              Monday 24th October 2011


 Copyright 2011 Digital Enterprise Research Institute. All rights reserved.




                                                                              Enabling Networked Knowledge
Introduction
Digital Enterprise Research Institute                                   www.deri.ie




             Increase in shared personal information on the Social
              Web raised awareness about privacy

                                                  Enabling Networked Knowledge
Introduction
Digital Enterprise Research Institute                                                                                www.deri.ie




            Recent Study1 shows:

                   Privacy became a concern in Social Networks (SN) when private
                    news was publicly shared


                   SNs provided third party with user’s information


                   Most users are aware of privacy settings and have set them at
                    least since 2009


               1Danah   Boyd and EszterHargittai. Facebook privacy settings. Who cares? First Monday. August 2010.




                                                                                  Enabling Networked Knowledge
Current Limitations
Digital Enterprise Research Institute                                         www.deri.ie




            Social Web applications provide system default privacy
             settings




                                                        Enabling Networked Knowledge
Use Case
Digital Enterprise Research Institute                                                   www.deri.ie




                      A FOAF based Social Network Network
                       Protecting a FOAF based Social
                          Users feel more confident to publish their information


                          Users would be in full control
                              – Which specific information can be shared and to whom


                          Granting access based on interest and not only to friends in
                           contact lists
                              – Eg: Provide my phone number only to DERI colleagues without
                                being in a friend or group list called DERI




                                                                 Enabling Networked Knowledge
PPO Overview
Digital Enterprise Research Institute                                          www.deri.ie




            A light weight vocabulary for defining fine-grained
             privacy preferences for RDF data

            A privacy preference contains:
                   Which resource, statement or graph must be restricted
                   A condition that must be satisfied
                   The access control privilege (defined using WAC)
                   A SPARQL query that tests whether a user requesting
                    information matches a graph pattern




                                                         Enabling Networked Knowledge
PPO Overview
Digital Enterprise Research Institute                                                                                                    www.deri.ie


       ppo:PrivacyPreference                       ppo:hasAccessSpace             ppo:AccessSpace               ppo:hasAccessQuery
                                                                                                                                           This
                                                                                                                                           rdfs:Literal
                                                                                                                    rdfs:Literal           represents a
                                                                                                                                           SPARQL
                                                                                                                                           query as a
                                                                                                                                           String.
ppo:appliesToResource         ppo:appliesToStatement           ppo:appliesToNamedGraph           ppo:hasCondition

                                                                                                                         ppo:hasAccess


     rdfs:Resource                      rdf:Statement                trix:Graph                 ppo:Condition
                                                                                                                                   acl:Access




ppo:resourceAsSubject        ppo:resourceAsObject         ppo:classAsSubject      ppo:classAsObject       ppo:hasLiteral           ppo:hasProperty



                                                                                                                                       rdf:Propert
      rdfs:Resource               rdfs:Resource                rdfs:Class          rdfs:Class             rdfs:Literal
                                                                                                                                            y


Restrictions       Conditions            Access Test Queries      Access Control Privileges



                                                                                              Enabling Networked Knowledge
PPO Overview
Digital Enterprise Research Institute                                        www.deri.ie




            Example:
                   Provide my phone number only to DERI colleagues

          PREFIX ppo: <http://vocab.deri.ie/ppo#> .
          PREFIX ex: <http://example.org/> .

          ex:pp1 a ppo:PrivacyPreference;

          ppo:hasCondition
            [ ppo:hasPropertyfoaf:phone ];

          ppo:hasAccessacl:Read;

          ppo:hasAccessSpace
            [ ppo:hasAccessQuery
              "ASK {?xfoaf:workplaceHomepage<http://www.deri.ie>}"].



                                                       Enabling Networked Knowledge
PPO Formal Model
Digital Enterprise Research Institute                                                       www.deri.ie




            Definition 1: Restrictions
                   Resource
                       – Identified by its own URI

                             ∀St(AssignAccess(U,A) ∧ (Subject(U,St) ∨ Predicate(U,St) ∨
                                        Object(U,St)) ⇒ AssignAccess(St,A))


                   Statement
                       – Consists of <subject, predicate, object>

                                    ∀St((AssignAccess(S,A) ∧ AssignAccess(P,A) ∧
                                  AssignAccess(O,A)) ∧ (Subject(S,St) ∧ Predicate(P,St) ∧
                                          Object(O,St)) ⇒ AssignAccess(St,A))



                                                                  Enabling Networked Knowledge
PPO Formal Model
Digital Enterprise Research Institute                                                   www.deri.ie



                   Named Graph
                       – A name denoted by a URI
                       – A set of statements mapped to this name

                                        ∀St(AssignAccess(NG,A) ∧ RDFGraph(St,NG) ⇒
                                                    AssignAccess(St,A))




                                                                  Enabling Networked Knowledge
PPO Formal Model
Digital Enterprise Research Institute                                                 www.deri.ie




            Definition 2: Conditions
                   Resource As Subject
                       – A resource’s URI identified as a statement’s Subject

                          ∀St(AssignAccess(U,A) ∧ Subject(U,St) ⇒ AssignAccess(St,A))


                   Resource As Object
                       – A resource’s URI identified as a statement’s Object

                           ∀St(AssignAccess(U,A) ∧ Object(U,St) ⇒ AssignAccess(St,A))




                                                                Enabling Networked Knowledge
PPO Formal Model
Digital Enterprise Research Institute                                                  www.deri.ie



                   Class As Subject
                       – An instance of a class defined as a statement’s Subject

                              ∀St(AssignAccess(C,A) ∧ RDFType(U,C) ∧ Subject(U,St) ⇒
                                               AssignAccess(St,A))


                   Class As Object
                       – An instance of a class defined as a statement’s Object

                               ∀St(AssignAccess(C,A) ∧ RDFType(U,C) ∧ Object(U,St) ⇒
                                                AssignAccess(St,A))




                                                                Enabling Networked Knowledge
PPO Formal Model
Digital Enterprise Research Institute                                             www.deri.ie




            Definition 3: Access Control Privilege
                   An access control privilege defines the read and/or write
                    privilege


                                        AccessControl = {read,write}


            Definition 4: Access Space
                   Contains an access query that checks if a requester satisfies
                    specific attributes


                             AccessSpace = {accessquery1, ..., accessqueryn}



                                                            Enabling Networked Knowledge
PPO Formal Model
Digital Enterprise Research Institute                                             www.deri.ie




            Definition 5: A Privacy Preference
                   The set of all: Restrictions, Conditions, AccessControl and
                    AccessSpace


                              PrivacyPreference ⊆ Restrictions ∪ Conditions ∪
                                       AccessControl ∪ AccessSpace




                                                            Enabling Networked Knowledge
PPO Formal Model
Digital Enterprise Research Institute                                            www.deri.ie




            Definition 6: Applying Privacy Preferences
                   A requester requests personal information
                   This request is matched to the correct privacy preference
                       – i.e. the restrictions

                          ∀P((Statement(St,P) ∨ Resource(R,P) ∨ NamedGraph(NG,P)) ⇒
                                           ApplyPrivacyPreference(P))


                   A mapping is done between the restricted statements (RS) and
                    the condition statements (CS)


                    M : RestrictedStatements(RS) →ConditionStatements(CS)


                                                           Enabling Networked Knowledge
PPO Formal Model
Digital Enterprise Research Institute                                         www.deri.ie



                   If M = false THEN ¬ApplyPrivacyPreference(P)


                   If ApplyPrivacyPreference(P), AccessSpace(Q) is executed on
                    the requester’s information


                   If AccessSpace(Q) = true THEN AccessControl(A) is granted to
                    the requester




                                                        Enabling Networked Knowledge
MyPrivacyManager
Digital Enterprise Research Institute                                                      www.deri.ie




            MyPrivacyManager provides two main tasks:
                   A user creates his/her privacy preferences
                   A requester logs in to the other user’s MyPrivacyManager which
                    in turn will view a faceted profile
                       – filtered based on the privacy preferences

                                                            User A



                                        MyPrivacy Manager
                               WebID
                                                                         Private FOAF Profile


                User B
                                                                               Privacy
               Requester
                                                                             Preferences




                                                                Enabling Networked Knowledge
MyPrivacyManager
Digital Enterprise Research Institute                                                                  www.deri.ie


                                          foafssl.org
                      WebID Authentication Service
                                                                Social Semantic Data

              SSL Certificate             Confirmation           Request     RDF DATA

                                                                                        MyPrivacyManager
                                 WebID          FOAF URI     RDF Data Retriever &
                              Authenticator                        Parser

              SSL Certificate             Confirmation           FOAF

                                                             Privacy Preferences
                                                                                                Privacy
             Privacy                                              Enforcer
             Logs In                                                                          Preferences
           Preferences
                                    User
                                  Interface
             Created                                                                      Created
   User                                                      Privacy Preferences
             Privacy                             Created
                                                 Privacy                                  Privacy
                                                                   Creator
           Preferences                         Preferences
                                                 Privacy                                Preferences
                                               Preferences



                                                                           Enabling Networked Knowledge
MyPrivacyManager
Digital Enterprise Research Institute                               Attributes
                                                                         www.deri.ie
                                                                     which a
FOAF                                                                requester
                                                                   must satisfy
                                                                  (AccessQuery
                                                                         )




                                                  Enabling Networked Knowledge
MyPrivacyManager
Digital Enterprise Research Institute                                                www.deri.ie

       PREFIX ppo: <http://vocab.deri.ie/ppo#> .
       PREFIX ex: <http://vmuss13.deri.ie/> .                              Provenance
       ex:preference1 a ppo:PrivacyPreference;                             Information
       foaf:maker<http://foaf.me/ppm_usera#me>;                    Restrictions
       dc:title "Restricting access to my personal information”;
       dc:created "2011-06-01T13:32:59+02:00”;

       ppo:appliesToStatement :Statement1;
            :Statement1
       rdf:subject<http://vmuss13.deri.ie/foafprofiles/terraces#me>;
       rdf:predicate<http://xmlns.com/foaf/0.1/name>;
       rdf:object "Alexandre Passant”;

       ppo:appliesToStatement :Statement2;
            :Statement2
       rdf:subject<http://vmuss13.deri.ie/foafprofiles/terraces#me>;
       rdf:predicate<http://xmlns.com/foaf/0.1/nick>;
       rdf:object "terraces”;
                                               Access Space
                                               Access Control Privilege
               ppo:assignAccess acl:Read;

       ppo:hasAccessSpace [
       ppo:hasAccessQuery "ASK { ?xfoaf:workplaceHomepage<http://www.deri.ie> }"].


                                                           Enabling Networked Knowledge
MyPrivacyManager
Digital Enterprise Research Institute                                                                     www.deri.ie
                                                                   FOAF Profiles

                                         foafssl.org
                    WebID Authentication Service
                                                             User B
                                                                              User A
                                                                                                             User A
              SSL Certificate             Confirmation   Request      RDF DATA
                                                                        Request      RDF DATA

                                                                                        MyPrivacyManager
                                 WebID                        RDF Data Retriever &
                              Authenticator                         Parser

              SSL Certificate             Confirmation        Query         AccessQuery Result
                                                                            RDF Data

                                                   Request                             Query
                                                              Privacy Preferences
                                                                                                    Privacy
                                                                   Enforcer
(Requester)                                      Filtered                             Privacy     Preferences
                Logs In
                                    User        FOAF Data                            Preference
                                  Interface
              Filtered
  User B                                                      Privacy Preferences
               FOAF
                                                                    Creator
              Profile




                                                                           Enabling Networked Knowledge
Future Work
Digital Enterprise Research Institute                                                      www.deri.ie




            Extending PPO:
                   Conjunctive and disjunctive properties for Conditions
                    Specify the type of environment, i.e. closed or open environment
                   Cater for more fuzziness in privacy preferences
                       – Example: Allow access to my party invite to all those that live (have
                         coordinates) around Galway


            Extending MyPrivacyManager:
                   Grouping of interests under categories
                   Assert trustworthiness of source and requester’s data




                                                                 Enabling Networked Knowledge
Links
Digital Enterprise Research Institute                                             www.deri.ie




            PPO Namespace URI: http://vocab.deri.ie/ppo#

            Screencasts
                   Creating Privacy Preferences: http://bit.ly/p0N1Vi
                   Viewing Filtered FOAF Profiles: http://bit.ly/qiAdxT




                                                            Enabling Networked Knowledge

Weitere ähnliche Inhalte

Andere mochten auch

A Privacy Preference Ontology (PPO) for Linked Data
A Privacy Preference Ontology (PPO) for Linked DataA Privacy Preference Ontology (PPO) for Linked Data
A Privacy Preference Ontology (PPO) for Linked DataOwen Sacco
 
Videoconferences in schools
Videoconferences in schoolsVideoconferences in schools
Videoconferences in schoolsSuzana Delic
 
Tutorial OWL and drug discovery ICBO 2013
Tutorial OWL and drug discovery ICBO 2013Tutorial OWL and drug discovery ICBO 2013
Tutorial OWL and drug discovery ICBO 2013Samuel Croset
 
P Csiete Internet 2
P Csiete Internet 2P Csiete Internet 2
P Csiete Internet 2minamusha
 
Privacy and security on twitter
Privacy and security on twitterPrivacy and security on twitter
Privacy and security on twitterMansour Al-Shaikh
 
Enabling Social Media through Metadata -- Taxonomy Bootcamp
Enabling Social Media through Metadata -- Taxonomy BootcampEnabling Social Media through Metadata -- Taxonomy Bootcamp
Enabling Social Media through Metadata -- Taxonomy BootcampChristian Buckley
 
Social Interaction Ontology
Social  Interaction  OntologySocial  Interaction  Ontology
Social Interaction OntologyChanny Yun
 

Andere mochten auch (9)

A Privacy Preference Ontology (PPO) for Linked Data
A Privacy Preference Ontology (PPO) for Linked DataA Privacy Preference Ontology (PPO) for Linked Data
A Privacy Preference Ontology (PPO) for Linked Data
 
Facebook + twitter
Facebook + twitterFacebook + twitter
Facebook + twitter
 
Videokonferencija s osvrtom na primjenu u rn suzana delic
Videokonferencija s osvrtom na primjenu u rn suzana delicVideokonferencija s osvrtom na primjenu u rn suzana delic
Videokonferencija s osvrtom na primjenu u rn suzana delic
 
Videoconferences in schools
Videoconferences in schoolsVideoconferences in schools
Videoconferences in schools
 
Tutorial OWL and drug discovery ICBO 2013
Tutorial OWL and drug discovery ICBO 2013Tutorial OWL and drug discovery ICBO 2013
Tutorial OWL and drug discovery ICBO 2013
 
P Csiete Internet 2
P Csiete Internet 2P Csiete Internet 2
P Csiete Internet 2
 
Privacy and security on twitter
Privacy and security on twitterPrivacy and security on twitter
Privacy and security on twitter
 
Enabling Social Media through Metadata -- Taxonomy Bootcamp
Enabling Social Media through Metadata -- Taxonomy BootcampEnabling Social Media through Metadata -- Taxonomy Bootcamp
Enabling Social Media through Metadata -- Taxonomy Bootcamp
 
Social Interaction Ontology
Social  Interaction  OntologySocial  Interaction  Ontology
Social Interaction Ontology
 

Ähnlich wie A Privacy Preference Manager for the Social Semantic Web

Hello Open World - Semtech 2009
Hello Open World - Semtech 2009Hello Open World - Semtech 2009
Hello Open World - Semtech 2009Alexandre Passant
 
VoID: Metadata for RDF Datasets
VoID: Metadata for RDF DatasetsVoID: Metadata for RDF Datasets
VoID: Metadata for RDF DatasetsRichard Cyganiak
 
Fsw2011 smob
Fsw2011 smobFsw2011 smob
Fsw2011 smobjuanaya
 
How to Build Linked Data Sites with Drupal 7 and RDFa
How to Build Linked Data Sites with Drupal 7 and RDFaHow to Build Linked Data Sites with Drupal 7 and RDFa
How to Build Linked Data Sites with Drupal 7 and RDFascorlosquet
 
Linked Data Driven Data Virtualization for Web-scale Integration
Linked Data Driven Data Virtualization for Web-scale IntegrationLinked Data Driven Data Virtualization for Web-scale Integration
Linked Data Driven Data Virtualization for Web-scale Integrationrumito
 
Weaving the Pedantic Web (LD
Weaving the Pedantic Web (LDWeaving the Pedantic Web (LD
Weaving the Pedantic Web (LDAidan Hogan
 
Aggregated, Interoperable and Multi-Domain User Profiles for the Social Web
Aggregated, Interoperable and Multi-Domain User Profiles for the Social WebAggregated, Interoperable and Multi-Domain User Profiles for the Social Web
Aggregated, Interoperable and Multi-Domain User Profiles for the Social WebFabrizio Orlandi
 
Linked Data: opportunities and challenges
Linked Data: opportunities and challengesLinked Data: opportunities and challenges
Linked Data: opportunities and challengesMichael Hausenblas
 
Enabling Case-Based Reasoning on the Web of Data (How to create a Web of Exp...
Enabling Case-Based Reasoning  on the Web of Data (How to create a Web of Exp...Enabling Case-Based Reasoning  on the Web of Data (How to create a Web of Exp...
Enabling Case-Based Reasoning on the Web of Data (How to create a Web of Exp...Benjamin Heitmann
 
SMOB - A Framework for Semantic Microblogging
SMOB - A Framework for Semantic MicrobloggingSMOB - A Framework for Semantic Microblogging
SMOB - A Framework for Semantic MicrobloggingAlexandre Passant
 
ICOM: A Framework for Integrated Collaborative Work Environments
ICOM: A Framework for Integrated Collaborative Work EnvironmentsICOM: A Framework for Integrated Collaborative Work Environments
ICOM: A Framework for Integrated Collaborative Work EnvironmentsLaura Dragan
 
A Semantic Best-Effort Approach for Extracting Structured Discourse Graphs fr...
A Semantic Best-Effort Approach for Extracting Structured Discourse Graphs fr...A Semantic Best-Effort Approach for Extracting Structured Discourse Graphs fr...
A Semantic Best-Effort Approach for Extracting Structured Discourse Graphs fr...Andre Freitas
 
Linked Data at the Open University: From Technical Challenges to Organization...
Linked Data at the Open University: From Technical Challenges to Organization...Linked Data at the Open University: From Technical Challenges to Organization...
Linked Data at the Open University: From Technical Challenges to Organization...Mathieu d'Aquin
 
FAIRy stories: the FAIR Data principles in theory and in practice
FAIRy stories: the FAIR Data principles in theory and in practiceFAIRy stories: the FAIR Data principles in theory and in practice
FAIRy stories: the FAIR Data principles in theory and in practiceCarole Goble
 
Corrib.org - OpenSource and Research
Corrib.org - OpenSource and ResearchCorrib.org - OpenSource and Research
Corrib.org - OpenSource and Researchadameq
 
RDF and Open Linked Data, a first approach
RDF and Open Linked Data, a first approachRDF and Open Linked Data, a first approach
RDF and Open Linked Data, a first approachhorvadam
 

Ähnlich wie A Privacy Preference Manager for the Social Semantic Web (20)

Hello Open World - Semtech 2009
Hello Open World - Semtech 2009Hello Open World - Semtech 2009
Hello Open World - Semtech 2009
 
VoID: Metadata for RDF Datasets
VoID: Metadata for RDF DatasetsVoID: Metadata for RDF Datasets
VoID: Metadata for RDF Datasets
 
Fsw2011 smob
Fsw2011 smobFsw2011 smob
Fsw2011 smob
 
Lgd 2
Lgd 2Lgd 2
Lgd 2
 
How to Build Linked Data Sites with Drupal 7 and RDFa
How to Build Linked Data Sites with Drupal 7 and RDFaHow to Build Linked Data Sites with Drupal 7 and RDFa
How to Build Linked Data Sites with Drupal 7 and RDFa
 
Linked Data Driven Data Virtualization for Web-scale Integration
Linked Data Driven Data Virtualization for Web-scale IntegrationLinked Data Driven Data Virtualization for Web-scale Integration
Linked Data Driven Data Virtualization for Web-scale Integration
 
What is SDMX-RDF?
What is SDMX-RDF?What is SDMX-RDF?
What is SDMX-RDF?
 
Weaving the Pedantic Web (LD
Weaving the Pedantic Web (LDWeaving the Pedantic Web (LD
Weaving the Pedantic Web (LD
 
Aggregated, Interoperable and Multi-Domain User Profiles for the Social Web
Aggregated, Interoperable and Multi-Domain User Profiles for the Social WebAggregated, Interoperable and Multi-Domain User Profiles for the Social Web
Aggregated, Interoperable and Multi-Domain User Profiles for the Social Web
 
Linked Data: opportunities and challenges
Linked Data: opportunities and challengesLinked Data: opportunities and challenges
Linked Data: opportunities and challenges
 
Enabling Case-Based Reasoning on the Web of Data (How to create a Web of Exp...
Enabling Case-Based Reasoning  on the Web of Data (How to create a Web of Exp...Enabling Case-Based Reasoning  on the Web of Data (How to create a Web of Exp...
Enabling Case-Based Reasoning on the Web of Data (How to create a Web of Exp...
 
JeromeDL Tutorial
JeromeDL TutorialJeromeDL Tutorial
JeromeDL Tutorial
 
How to Publish Open Data
How to Publish Open DataHow to Publish Open Data
How to Publish Open Data
 
SMOB - A Framework for Semantic Microblogging
SMOB - A Framework for Semantic MicrobloggingSMOB - A Framework for Semantic Microblogging
SMOB - A Framework for Semantic Microblogging
 
ICOM: A Framework for Integrated Collaborative Work Environments
ICOM: A Framework for Integrated Collaborative Work EnvironmentsICOM: A Framework for Integrated Collaborative Work Environments
ICOM: A Framework for Integrated Collaborative Work Environments
 
A Semantic Best-Effort Approach for Extracting Structured Discourse Graphs fr...
A Semantic Best-Effort Approach for Extracting Structured Discourse Graphs fr...A Semantic Best-Effort Approach for Extracting Structured Discourse Graphs fr...
A Semantic Best-Effort Approach for Extracting Structured Discourse Graphs fr...
 
Linked Data at the Open University: From Technical Challenges to Organization...
Linked Data at the Open University: From Technical Challenges to Organization...Linked Data at the Open University: From Technical Challenges to Organization...
Linked Data at the Open University: From Technical Challenges to Organization...
 
FAIRy stories: the FAIR Data principles in theory and in practice
FAIRy stories: the FAIR Data principles in theory and in practiceFAIRy stories: the FAIR Data principles in theory and in practice
FAIRy stories: the FAIR Data principles in theory and in practice
 
Corrib.org - OpenSource and Research
Corrib.org - OpenSource and ResearchCorrib.org - OpenSource and Research
Corrib.org - OpenSource and Research
 
RDF and Open Linked Data, a first approach
RDF and Open Linked Data, a first approachRDF and Open Linked Data, a first approach
RDF and Open Linked Data, a first approach
 

Kürzlich hochgeladen

USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...Postal Advocate Inc.
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceSamikshaHamane
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatYousafMalik24
 
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSGRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSJoshuaGantuangco2
 
Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Mark Reed
 
Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Jisc
 
Karra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxKarra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxAshokKarra1
 
Barangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxBarangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxCarlos105
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPCeline George
 
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxINTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxHumphrey A Beña
 
ACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfSpandanaRallapalli
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Celine George
 
Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Celine George
 
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfLike-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfMr Bounab Samir
 
Judging the Relevance and worth of ideas part 2.pptx
Judging the Relevance  and worth of ideas part 2.pptxJudging the Relevance  and worth of ideas part 2.pptx
Judging the Relevance and worth of ideas part 2.pptxSherlyMaeNeri
 
Choosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for ParentsChoosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for Parentsnavabharathschool99
 

Kürzlich hochgeladen (20)

USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in Pharmacovigilance
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice great
 
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSGRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
 
Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)
 
Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...
 
Karra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxKarra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptx
 
OS-operating systems- ch04 (Threads) ...
OS-operating systems- ch04 (Threads) ...OS-operating systems- ch04 (Threads) ...
OS-operating systems- ch04 (Threads) ...
 
Barangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxBarangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptx
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERP
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxINTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
 
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptxYOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
 
ACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdf
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17
 
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptxLEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
 
Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17
 
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfLike-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
 
Judging the Relevance and worth of ideas part 2.pptx
Judging the Relevance  and worth of ideas part 2.pptxJudging the Relevance  and worth of ideas part 2.pptx
Judging the Relevance and worth of ideas part 2.pptx
 
Choosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for ParentsChoosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for Parents
 

A Privacy Preference Manager for the Social Semantic Web

  • 1. Digital Enterprise Research Institute www.deri.ie A Privacy Preference Manager for the Social Semantic Web Owen Sacco and Alexandre Passant firstname.lastname@deri.org SPIM 2011 – Bonn, Germany Monday 24th October 2011 Copyright 2011 Digital Enterprise Research Institute. All rights reserved. Enabling Networked Knowledge
  • 2. Introduction Digital Enterprise Research Institute www.deri.ie  Increase in shared personal information on the Social Web raised awareness about privacy Enabling Networked Knowledge
  • 3. Introduction Digital Enterprise Research Institute www.deri.ie  Recent Study1 shows:  Privacy became a concern in Social Networks (SN) when private news was publicly shared  SNs provided third party with user’s information  Most users are aware of privacy settings and have set them at least since 2009 1Danah Boyd and EszterHargittai. Facebook privacy settings. Who cares? First Monday. August 2010. Enabling Networked Knowledge
  • 4. Current Limitations Digital Enterprise Research Institute www.deri.ie  Social Web applications provide system default privacy settings Enabling Networked Knowledge
  • 5. Use Case Digital Enterprise Research Institute www.deri.ie  A FOAF based Social Network Network Protecting a FOAF based Social  Users feel more confident to publish their information  Users would be in full control – Which specific information can be shared and to whom  Granting access based on interest and not only to friends in contact lists – Eg: Provide my phone number only to DERI colleagues without being in a friend or group list called DERI Enabling Networked Knowledge
  • 6. PPO Overview Digital Enterprise Research Institute www.deri.ie  A light weight vocabulary for defining fine-grained privacy preferences for RDF data  A privacy preference contains:  Which resource, statement or graph must be restricted  A condition that must be satisfied  The access control privilege (defined using WAC)  A SPARQL query that tests whether a user requesting information matches a graph pattern Enabling Networked Knowledge
  • 7. PPO Overview Digital Enterprise Research Institute www.deri.ie ppo:PrivacyPreference ppo:hasAccessSpace ppo:AccessSpace ppo:hasAccessQuery This rdfs:Literal rdfs:Literal represents a SPARQL query as a String. ppo:appliesToResource ppo:appliesToStatement ppo:appliesToNamedGraph ppo:hasCondition ppo:hasAccess rdfs:Resource rdf:Statement trix:Graph ppo:Condition acl:Access ppo:resourceAsSubject ppo:resourceAsObject ppo:classAsSubject ppo:classAsObject ppo:hasLiteral ppo:hasProperty rdf:Propert rdfs:Resource rdfs:Resource rdfs:Class rdfs:Class rdfs:Literal y Restrictions Conditions Access Test Queries Access Control Privileges Enabling Networked Knowledge
  • 8. PPO Overview Digital Enterprise Research Institute www.deri.ie  Example:  Provide my phone number only to DERI colleagues PREFIX ppo: <http://vocab.deri.ie/ppo#> . PREFIX ex: <http://example.org/> . ex:pp1 a ppo:PrivacyPreference; ppo:hasCondition [ ppo:hasPropertyfoaf:phone ]; ppo:hasAccessacl:Read; ppo:hasAccessSpace [ ppo:hasAccessQuery "ASK {?xfoaf:workplaceHomepage<http://www.deri.ie>}"]. Enabling Networked Knowledge
  • 9. PPO Formal Model Digital Enterprise Research Institute www.deri.ie  Definition 1: Restrictions  Resource – Identified by its own URI ∀St(AssignAccess(U,A) ∧ (Subject(U,St) ∨ Predicate(U,St) ∨ Object(U,St)) ⇒ AssignAccess(St,A))  Statement – Consists of <subject, predicate, object> ∀St((AssignAccess(S,A) ∧ AssignAccess(P,A) ∧ AssignAccess(O,A)) ∧ (Subject(S,St) ∧ Predicate(P,St) ∧ Object(O,St)) ⇒ AssignAccess(St,A)) Enabling Networked Knowledge
  • 10. PPO Formal Model Digital Enterprise Research Institute www.deri.ie  Named Graph – A name denoted by a URI – A set of statements mapped to this name ∀St(AssignAccess(NG,A) ∧ RDFGraph(St,NG) ⇒ AssignAccess(St,A)) Enabling Networked Knowledge
  • 11. PPO Formal Model Digital Enterprise Research Institute www.deri.ie  Definition 2: Conditions  Resource As Subject – A resource’s URI identified as a statement’s Subject ∀St(AssignAccess(U,A) ∧ Subject(U,St) ⇒ AssignAccess(St,A))  Resource As Object – A resource’s URI identified as a statement’s Object ∀St(AssignAccess(U,A) ∧ Object(U,St) ⇒ AssignAccess(St,A)) Enabling Networked Knowledge
  • 12. PPO Formal Model Digital Enterprise Research Institute www.deri.ie  Class As Subject – An instance of a class defined as a statement’s Subject ∀St(AssignAccess(C,A) ∧ RDFType(U,C) ∧ Subject(U,St) ⇒ AssignAccess(St,A))  Class As Object – An instance of a class defined as a statement’s Object ∀St(AssignAccess(C,A) ∧ RDFType(U,C) ∧ Object(U,St) ⇒ AssignAccess(St,A)) Enabling Networked Knowledge
  • 13. PPO Formal Model Digital Enterprise Research Institute www.deri.ie  Definition 3: Access Control Privilege  An access control privilege defines the read and/or write privilege AccessControl = {read,write}  Definition 4: Access Space  Contains an access query that checks if a requester satisfies specific attributes AccessSpace = {accessquery1, ..., accessqueryn} Enabling Networked Knowledge
  • 14. PPO Formal Model Digital Enterprise Research Institute www.deri.ie  Definition 5: A Privacy Preference  The set of all: Restrictions, Conditions, AccessControl and AccessSpace PrivacyPreference ⊆ Restrictions ∪ Conditions ∪ AccessControl ∪ AccessSpace Enabling Networked Knowledge
  • 15. PPO Formal Model Digital Enterprise Research Institute www.deri.ie  Definition 6: Applying Privacy Preferences  A requester requests personal information  This request is matched to the correct privacy preference – i.e. the restrictions ∀P((Statement(St,P) ∨ Resource(R,P) ∨ NamedGraph(NG,P)) ⇒ ApplyPrivacyPreference(P))  A mapping is done between the restricted statements (RS) and the condition statements (CS) M : RestrictedStatements(RS) →ConditionStatements(CS) Enabling Networked Knowledge
  • 16. PPO Formal Model Digital Enterprise Research Institute www.deri.ie  If M = false THEN ¬ApplyPrivacyPreference(P)  If ApplyPrivacyPreference(P), AccessSpace(Q) is executed on the requester’s information  If AccessSpace(Q) = true THEN AccessControl(A) is granted to the requester Enabling Networked Knowledge
  • 17. MyPrivacyManager Digital Enterprise Research Institute www.deri.ie  MyPrivacyManager provides two main tasks:  A user creates his/her privacy preferences  A requester logs in to the other user’s MyPrivacyManager which in turn will view a faceted profile – filtered based on the privacy preferences User A MyPrivacy Manager WebID Private FOAF Profile User B Privacy Requester Preferences Enabling Networked Knowledge
  • 18. MyPrivacyManager Digital Enterprise Research Institute www.deri.ie foafssl.org WebID Authentication Service Social Semantic Data SSL Certificate Confirmation Request RDF DATA MyPrivacyManager WebID FOAF URI RDF Data Retriever & Authenticator Parser SSL Certificate Confirmation FOAF Privacy Preferences Privacy Privacy Enforcer Logs In Preferences Preferences User Interface Created Created User Privacy Preferences Privacy Created Privacy Privacy Creator Preferences Preferences Privacy Preferences Preferences Enabling Networked Knowledge
  • 19. MyPrivacyManager Digital Enterprise Research Institute Attributes www.deri.ie which a FOAF requester must satisfy (AccessQuery ) Enabling Networked Knowledge
  • 20. MyPrivacyManager Digital Enterprise Research Institute www.deri.ie PREFIX ppo: <http://vocab.deri.ie/ppo#> . PREFIX ex: <http://vmuss13.deri.ie/> . Provenance ex:preference1 a ppo:PrivacyPreference; Information foaf:maker<http://foaf.me/ppm_usera#me>; Restrictions dc:title "Restricting access to my personal information”; dc:created "2011-06-01T13:32:59+02:00”; ppo:appliesToStatement :Statement1; :Statement1 rdf:subject<http://vmuss13.deri.ie/foafprofiles/terraces#me>; rdf:predicate<http://xmlns.com/foaf/0.1/name>; rdf:object "Alexandre Passant”; ppo:appliesToStatement :Statement2; :Statement2 rdf:subject<http://vmuss13.deri.ie/foafprofiles/terraces#me>; rdf:predicate<http://xmlns.com/foaf/0.1/nick>; rdf:object "terraces”; Access Space Access Control Privilege ppo:assignAccess acl:Read; ppo:hasAccessSpace [ ppo:hasAccessQuery "ASK { ?xfoaf:workplaceHomepage<http://www.deri.ie> }"]. Enabling Networked Knowledge
  • 21. MyPrivacyManager Digital Enterprise Research Institute www.deri.ie FOAF Profiles foafssl.org WebID Authentication Service User B User A User A SSL Certificate Confirmation Request RDF DATA Request RDF DATA MyPrivacyManager WebID RDF Data Retriever & Authenticator Parser SSL Certificate Confirmation Query AccessQuery Result RDF Data Request Query Privacy Preferences Privacy Enforcer (Requester) Filtered Privacy Preferences Logs In User FOAF Data Preference Interface Filtered User B Privacy Preferences FOAF Creator Profile Enabling Networked Knowledge
  • 22. Future Work Digital Enterprise Research Institute www.deri.ie  Extending PPO:  Conjunctive and disjunctive properties for Conditions  Specify the type of environment, i.e. closed or open environment  Cater for more fuzziness in privacy preferences – Example: Allow access to my party invite to all those that live (have coordinates) around Galway  Extending MyPrivacyManager:  Grouping of interests under categories  Assert trustworthiness of source and requester’s data Enabling Networked Knowledge
  • 23. Links Digital Enterprise Research Institute www.deri.ie  PPO Namespace URI: http://vocab.deri.ie/ppo#  Screencasts  Creating Privacy Preferences: http://bit.ly/p0N1Vi  Viewing Filtered FOAF Profiles: http://bit.ly/qiAdxT Enabling Networked Knowledge