Cachet: a Decentralized Architecture for Privacy Preserving Social Networking with Caching

Total Page:16

File Type:pdf, Size:1020Kb

Cachet: a Decentralized Architecture for Privacy Preserving Social Networking with Caching Cachet: A Decentralized Architecture for Privacy Preserving Social Networking with Caching Shirin Nilizadeh Sonia Jahid Prateek Mittal Indiana University University of Illinois at University of California, Bloomington Urbana-Champaign Berkeley [email protected] [email protected] [email protected] Nikita Borisov Apu Kapadia University of Illinois at Indiana University Urbana-Champaign Bloomington [email protected] [email protected] ABSTRACT and (b) use of social contacts for object caching results in Online social networks (OSNs) such as Facebook and significant performance improvements. Google+ have transformed the way our society communi- cates. However, this success has come at the cost of user Categories and Subject Descriptors privacy; in today's OSNs, users are not in control of their C.2.4 [Computer-Communication Networks]: Dis- own data, and depend on OSN operators to enforce access tributed Systems|Distributed Applications; K.6.m control policies. A multitude of privacy breaches has spurred [Management of Computing and Information research into privacy-preserving alternatives for social net- Systems]: Miscellaneous|Security working, exploring a number of techniques for storing, dis- seminating, and controlling access to data in a decentral- ized fashion. In this paper, we argue that a combination General Terms of techniques is necessary to efficiently support the complex Algorithms, Security functionality requirements of OSNs. We propose Cachet, an architecture that provides strong Keywords security and privacy guarantees while preserving the main functionality of online social networks. In particular, Cachet privacy, peer-to-peer systems, social networking, caching protects the confidentiality, integrity and availability of user content, as well as the privacy of user relationships. Cachet 1. INTRODUCTION uses a distributed pool of nodes to store user data and en- In the last decade, online social networks (OSNs) such sure availability. Storage nodes in Cachet are untrusted; we as Facebook, Google+, and Twitter have revolutionized the leverage cryptographic techniques such as attribute-based way our society communicates and have become the de facto encryption to protect the confidentiality of data. For ef- mechanism for information sharing between users. Their ficient dissemination and retrieval of data, Cachet uses a user bases exceed hundreds of millions of users and their hybrid structured-unstructured overlay paradigm in which adoption is still growing at a rapid pace.1 a conventional distributed hash table is augmented with so- However, the success of OSNs has come at the cost of user cial links between users. Social contacts in our system act privacy. Users are not in control of their data and depend as caches to store recent updates in the social network, and on the OSN operator to protect their sensitive information. help reduce the cryptographic as well as the communication Users' expectations of privacy are often at odds with the op- overhead in the network. erator's business incentives, and, in fact, several providers We built a prototype implementation of Cachet in the have been caught selling user data [53]. Moreover, the pri- FreePastry simulator. To demonstrate the functionality of vacy policies of OSNs are often hard to understand, and existing OSNs we implemented the `newsfeed' application. constant changes therein further magnify this problem [48]. Our evaluation demonstrates that (a) decentralized architec- Additionally, existing centralized architectures present a sin- tures for privacy preserving social networking are feasible, gle point of failure in the system. Any vulnerability in these systems (or even accidental leaks) can be exploited by a ma- licious adversary to obtain unencrypted sensitive user data. This lack of user privacy in deployed OSNs has spurred re- search into the design of mechanisms for privacy-preserving Permission to make digital or hard copies of all or part of this work for social networking. Some work has focused on using cryptog- personal or classroom use is granted without fee provided that copies are raphy to protect the contents stored by a centralized OSN not made or distributed for profit or commercial advantage and that copies bear this notice and the full citation on the first page. To copy otherwise, to provider [7, 17, 30]; our view, however, is that this does not republish, to post on servers or to redistribute to lists, requires prior specific sufficiently protect users' privacy as it allows the provider permission and/or a fee. to learn user relationships and patterns of interactions by CoNEXT’12, December 10–13, 2012, Nice, France. 1 Copyright 2012 ACM 978-1-4503-1775-7/12/12 ...$15.00. http://newsroom.fb.com/ 337 means of traffic analysis. Decentralized architectures can cryptographic capabilities used by the storage nodes to au- address this issue, yet present a new series of challenges, as thenticate update requests and attribute-based encryption in addition to confidentiality and integrity protection that used to provide flexible and fine-grained access policies. To cryptography can provide, it is necessary to ensure the avail- reduce computational overhead cached containers are stored ability of and efficient access to data that is necessary to in decrypted form and are shared with other contacts upon support common OSN functionality, such as a `newsfeed'. verifying that they satisfy the corresponding access policy; Previous work on decentralized OSNs [3, 7, 13, 18, 22, 40] as such, containers must be decrypted only when fetched has explored several design decisions: how nodes are orga- directly from the DHT. Storage nodes are trusted only to nized (in a structured distributed hash table (DHT) or with provide availability of the data with replication used to de- links between social contacts), where content is stored (by fend against node failures or intentional misbehavior. the owner, social contacts, or in a DHT), how it is dissem- We develop a prototype implementation of Cachet in the inated (push or pull), and how access control is enforced FreePastry simulator [51]. To demonstrate the functional- (cryptographically or with online authentication). We ar- ity of existing OSNs, we also build and evaluate the news- gue that to efficiently support the complex functionality of feed application. Our results show the importance of us- an OSN, a combination of methods must be used. For ex- ing social caching, which reduces the latency of displaying a ample, replicating data at random DHT nodes ensures its newsfeed from hundreds of seconds in the base architecture availability even when users are offline; however, assembling to less than 10. Our architecture thus demonstrates how a a newsfeed requires thousands of DHT lookups and, as we careful combination of several distributed systems and cryp- saw in our preliminary work [32], can take hundreds of sec- tographic techniques can be used to provide a compelling onds to generate. Likewise, encrypting stored content can privacy-preserving alternative to centralized OSNs. provide strong confidentiality guarantees, yet we found that we need online authentication of updates and annotations 2. REQUIREMENTS AND PROPERTIES to ensure the availability of data. Furthermore, attribute- Functional Model. At a high level OSN functionality con- based encryption schemes that provide highly flexible poli- sists primarily of users sharing some form of content with cies are computationally expensive and contribute signifi- their contacts, who then view, comment on, and annotate cantly to the above performance overhead. it. To support this generic functionality, we define a con- In our preliminary design [32], we showed how the confi- tainer object that consists of a main content object and a dentiality and integrity of data can be protected by a crypto- list of annotations. The main content can take many types, graphic mechanism so that they can be stored in untrusted such as a status, a web URL, a photo, or a collection of nodes of a DHT. However, the design suffers from perfor- container objects (e.g., a photo album, or a `wall'). Annota- mance issues that arise due to the fetching and decryption tions take the form of references to other container objects. of hundreds of small objects belonging to friends, which is A key application common in OSNs is a `newsfeed', which required for viewing their walls or for viewing one's own aggregates and displays recent updates from a user's social newsfeed. We therefore propose Cachet, a decentralized ar- contacts; implementing such a newsfeed efficiently is a key chitecture for social networks that provides strong security challenge in a decentralized OSN. and privacy guarantees while efficiently supporting the cen- The container also becomes the unit of access control, with tral functionality of OSNs. Central to Cachet is a hybrid a potentially different set of permissions associated with a structured-unstructured overlay in which a conventional dis- container, internally referenced objects, and each individual tributed hash table is augmented with social links between annotation. Access policies can be defined over social con- users. We use the distributed hash table as a base storage tacts and their attributes, as well as social network distance layer, but add a gossip-based social caching algorithm that (e.g., `friend-of-friend'). Usable access controls in OSNs re- dramatically increases performance. New updates are im- main an area of active research [19,26,38], so a highly flexi- mediately propagated to online social contacts. When an ble and fine-grained permissions architecture is necessary to offline user comes back online a presence protocol is used to support future developments in this field. locate online contacts and query them directly for updates. Security Requirements. The primary security require- Additionally, these contacts are used to retrieve cached up- ments are confidentiality and integrity of user data, stored dates from mutual contacts who are offline as well as speed in distributed and untrusted storage nodes, and availability the discovery of other online contacts. The DHT is then of the correct and latest version of the data.
Recommended publications
  • Creating & Connecting: Research and Guidelines on Online Social
    CREATING & CONNECTING//Research and Guidelines on Online Social — and Educational — Networking NATIONAL SCHOOL BOARDS ASSOCIATION CONTENTS Creating & Connecting//The Positives . Page 1 Online social networking Creating & Connecting//The Gaps . Page 4 is now so deeply embedded in the lifestyles of tweens and teens that Creating & Connecting//Expectations it rivals television for their atten- and Interests . Page 7 tion, according to a new study Striking a Balance//Guidance and Recommendations from Grunwald Associates LLC for School Board Members . Page 8 conducted in cooperation with the National School Boards Association. Nine- to 17-year-olds report spending almost as much time About the Study using social networking services This study was made possible with generous support and Web sites as they spend from Microsoft, News Corporation and Verizon. watching television. Among teens, The study was comprised of three surveys: an that amounts to about 9 hours a online survey of 1,277 nine- to 17-year-old students, an online survey of 1,039 parents and telephone inter- week on social networking activi- views with 250 school district leaders who make deci- ties, compared to about 10 hours sions on Internet policy. Grunwald Associates LLC, an a week watching TV. independent research and consulting firm that has conducted highly respected surveys on educator and Students are hardly passive family technology use since 1995, formulated and couch potatoes online. Beyond directed the study. Hypothesis Group managed the basic communications, many stu- field research. Tom de Boor and Li Kramer Halpern of dents engage in highly creative Grunwald Associates LLC provided guidance through- out the study and led the analysis.
    [Show full text]
  • Social Networks for Main Street
    Ulster County Main Streets: A Regional Approach Ulster County Planning Department, 244 Fair Street, Kingston NY 12401 Why do we take a regional approach to Main Streets? There are many different approaches to supporting these centers in our local economy. The goal of the Ulster County Main Streets approach is to develop a program that is based on our region‘s specific needs and support appropriate responses and strategies that are built and sustained from within our communities. It is also founded upon the idea that communities are stronger when they work together, share knowledge, leverage their resources, and think regionally to support their ―competitive advantage.‖ What is the Main Streets Strategic Toolbox? Any successful planning effort requires solid information as a basis for decision-making. The Toolbox includes resources to help your community create a strong, sustainable strategy for Main Street revitalization. For a full list of topics in the toolbox, please contact our staff at 845-340-3338 or visit our website at www.ulstercountyny.gov/planning. Social Networks for Main Street The web has become more than a warehouse of information. Social networking (or ―Web 2.0‖) is an interactive information-sharing platform that allows internet users add content and interact with others. Businesses are using Web 2.0 to increase customer loyalty and market visibility. This offers tremendous potential for Main Street businesses. Consumers are online. For them, this is ―word of mouth‖ via the web. Some examples: Main Street Webpage: “Come see and shop New Paltz Main Street.” Consumer on Facebook: “Have you been to New Paltz?” Response: “Yeah, great!”“ Twitter Tweet: Just got back from New Paltz.
    [Show full text]
  • Social Media Tool Analysis
    Social Media Tool Analysis John Saxon TCO 691 10 JUNE 2013 1. Orkut Introduction Orkut is a social networking website that allows a user to maintain existing relationships, while also providing a platform to form new relationships. The site is open to anyone over the age of 13, with no obvious bent toward one group, but is primarily used in Brazil and India, and dominated by the 18-25 demographic. Users can set up a profile, add friends, post status updates, share pictures and video, and comment on their friend’s profiles in “scraps.” Seven Building Blocks • Identity – Users of Orkut start by establishing a user profile, which is used to identify themselves to other users. • Conversations – Orkut users can start conversations with each other in a number of way, including an integrated instant messaging functionality and through “scraps,” which allows users to post on each other’s “scrapbooks” – pages tied to the user profile. • Sharing – Users can share pictures, videos, and status updates with other users, who can share feedback through commenting and/or “liking” a user’s post. • Presence – Presence on Orkut is limited to time-stamping of posts, providing other users an idea of how frequently a user is posting. • Relationships – Orkut’s main emphasis is on relationships, allowing users to friend each other as well as providing a number of methods for communication between users. • Reputation – Reputation on Orkut is limited to tracking the number of friends a user has, providing other users an idea of how connected that user is. • Groups – Users of Orkut can form “communities” where they can discuss and comment on shared interests with other users.
    [Show full text]
  • Twitter, Myspace and Facebook Demystified - by Ted Janusz
    Twitter, MySpace and Facebook Demystified - by Ted Janusz Q: I hear people talking about Web sites like Twitter, MySpace and Facebook. What are they? And, even more importantly, should I be using them to promote oral implantology? First, you are not alone. A recent survey showed that 70 percent of American adults did not know enough about Twitter to even have an opinion. Tools like Twitter, Facebook and MySpace are components of something else you may have heard people talking about: Web 2.0 , a popular term for Internet applications in which the users are actively engaged in creating and distributing Web content. Web 1.0 probably consisted of the Web sites you saw back in the late 90s, which were nothing more than fancy electronic brochures. Web 1.5 would have been something like Amazon or eBay, sites on which one could buy, sell and leave reviews. What Web 3.0 will look like is anybody's guess! Let's look specifically at the three applications that you mentioned. Tweet, Tweet Twitter - "Twitter is like text messaging, only you can also do it from the Web," says Dan Tynan, the author of the Tynan on Technology blog. "Instead of sending a message to just one person, you can send it to thousands of people at once. You can choose to follow anyone's update (called "tweets") simply by clicking the Follow button on their profile, or vice-versa. The only rule is that each tweet can be no longer than 140 characters." Former CEO of Twitter Jack Dorsey once accepted an award for Twitter by saying, "We'd like to thank you in 140 characters or less.
    [Show full text]
  • 2014 INTIX Instagram, Pinterest, Vine and Tumblr, Oh
    Instagram, Pinterest, Vine and Tumblr, Oh My! • Kyle Kelly, Assistant Director of Athletic Communications, Central Michigan University • Russell Sauve, E-Commerce and Social Media Manager, Fox Theatre • Craig Ricks, Vice President of Marketing, Paciolan • Dave Brooks, Managing Editor, Venues Today Magazine • Doug Meffley, Director of Athletics Digital & Social Communications, Northwestern University • Michael Nabasny, Head of Enterprise Sales, Wildfire at Google SOCIAL MEDIA PLATFORMS BY THE NUMBERS 80 % of online adults who use the social media sites by year 71 70 67 60 50 40 2012 2013 30 20 22 21 20 16 18 17 15 13 10 0 Facebook LinkedIn Pinterest Twitter Instagram *Pew Research SOCIAL MEDIA PLATFORMS BY THE NUMBERS 64 Facebook 22 14 58 Instagram 20 22 Frequency of 47 Social Media Site Use Twitter 21 32 24 Daily Pinterest 31 Weekly 45 Less Often 14 LinkedIn 34 52 0 10 20 30 40 50 60 70 *Pew Research MILESTONE CAMPAIGNS TICKETPOP – DATA ACQUISITION GREAT SOCIAL ENGAGEMENT EXAMPLES COCA COLA BOTTLE RUMOR GOOGLE STREET VIEW GOOGLE SPOTIFY ENGAGEMENT PINTEREST ENGAGEMENT PIN IT TO WIN IT SPORTS STREAM FRONT PAGE ASK AND YOU SHALL RECEIVE “GAMEDAY FAN VOTE” CMU Football Day after Thanksgiving - Value customer’s opinion - Drive attendance - Voting entered fans in a contest to win sideline passes/upgraded seats - Allowed to build data base of fans for email marketing - Fans could vote on - Jerseys - Kickoff time - Kickoff song MOBILE AND SOCIAL STATS 61% of adults 874 million 65% of time During the and 78% of users check spent on holidays 17%
    [Show full text]
  • Analysis of Topological Characteristics of Huge Online Social Networking Services Yong-Yeol Ahn, Seungyeop Han, Haewoon Kwak, Young-Ho Eom, Sue Moon, Hawoong Jeong
    1 Analysis of Topological Characteristics of Huge Online Social Networking Services Yong-Yeol Ahn, Seungyeop Han, Haewoon Kwak, Young-Ho Eom, Sue Moon, Hawoong Jeong Abstract— Social networking services are a fast-growing busi- the statistics severely and it is imperative to use large data sets ness in the Internet. However, it is unknown if online relationships in network structure analysis. and their growth patterns are the same as in real-life social It is only very recently that we have seen research results networks. In this paper, we compare the structures of three online social networking services: Cyworld, MySpace, and orkut, from large networks. Novel network structures from human each with more than 10 million users, respectively. We have societies and communication systems have been unveiled; just access to complete data of Cyworld’s ilchon (friend) relationships to name a few are the Internet and WWW [3] and the patents, and analyze its degree distribution, clustering property, degree Autonomous Systems (AS), and affiliation networks [4]. Even correlation, and evolution over time. We also use Cyworld data in the short history of the Internet, SNSs are a fairly new to evaluate the validity of snowball sampling method, which we use to crawl and obtain partial network topologies of MySpace phenomenon and their network structures are not yet studied and orkut. Cyworld, the oldest of the three, demonstrates a carefully. The social networks of SNSs are believed to reflect changing scaling behavior over time in degree distribution. The the real-life social relationships of people more accurately than latest Cyworld data’s degree distribution exhibits a multi-scaling any other online networks.
    [Show full text]
  • Structure Based User Identification Across Social Networks Xiaoping Zhou, Xun Liang, IEEE Senior Member, Xiaoyong Du, Jichao Zhao
    This article has been accepted for publication in a future issue of this journal, but has not been fully edited. Content may change prior to final publication. Citation information: DOI 10.1109/TKDE.2017.2784430, IEEE Transactions on Knowledge and Data Engineering IEEE TRANSACTIONS ON KNOWLEDGE AND DATA ENGINEERING, MANUSCRIPT ID 1 Structure Based User Identification across Social Networks Xiaoping Zhou, Xun Liang, IEEE Senior Member, Xiaoyong Du, Jichao Zhao Abstract—Identification of anonymous identical users of cross-platforms refers to the recognition of the accounts belonging to the same individual among multiple Social Network (SN) platforms. Evidently, cross-platform exploration may help solve many problems in social computing, in both theory and practice. However, it is still an intractable problem due to the fragmentation, inconsistency and disruption of the accessible information among SNs. Different from the efforts implemented on user profiles and users’ content, many studies have noticed the accessibility and reliability of network structure in most of the SNs for addressing this issue. Although substantial achievements have been made, most of the current network structure-based solutions, requiring prior knowledge of some given identified users, are supervised or semi-supervised. It is laborious to label the prior knowledge manually in some scenarios where prior knowledge is hard to obtain. Noticing that friend relationships are reliable and consistent in different SNs, we proposed an unsupervised scheme, termed Friend Relationship-based User Identification algorithm without Prior knowledge (FRUI-P). The FRUI-P first extracts the friend feature of each user in an SN into friend feature vector, and then calculates the similarities of all the candidate identical users between two SNs.
    [Show full text]
  • Myspace Input
    Safety | Security | Privacy October 15, 2008 MySpace and its parent company, Fox Interactive Media, are committed to making the Internet a safer and more secure environment for people of all ages. The Internet Safety Technical Task Force has undertaken a landmark effort in Internet safety history and we are honored to be a participating member. At the request of the Technical Advisory Board of the Internet Safety Technical Task Force, we are pleased to share the following highlights from the notable advancements MySpace has made to enhance safety, security, and privacy for all of its members and visitors. INTRODUCTION MySpace.com (“MySpace”), a unit of Fox Interactive Media Inc. (“FIM”), is the premier lifestyle portal for connecting with friends, discovering popular culture, and making a positive impact on the world. By integrating web profiles, blogs, instant messaging, email, music streaming, music videos, photo galleries, classified listings, events, groups, college communities, and member forums, MySpace has created a connected community. As the first-ranked web domain in terms of page views, MySpace is the most widely used and highly regarded site of its kind and is committed to providing the highest quality member experience. MySpace will continue to innovate with new features that allow its members to express their creativity and share their lives, both online and off. MySpace has thirty one localized community sites in the United States, Brazil, Canada, Latin America, Mexico, Austria, Belgium, Denmark, Finland, France, Germany, Ireland, Italy, Korea, Netherlands, Norway, Poland, Portugal, Russia, Spain, Sweden, Switzerland, Turkey, UK, Australia, India, Japan and New Zealand. MySpace’s global corporate headquarters are in the United States given its initial launch and growth in the U.S.
    [Show full text]
  • Seamless Interoperability and Data Portability in the Social Web for Facilitating an Open and Heterogeneous Online Social Network Federation
    Seamless Interoperability and Data Portability in the Social Web for Facilitating an Open and Heterogeneous Online Social Network Federation vorgelegt von Dipl.-Inform. Sebastian Jürg Göndör geb. in Duisburg von der Fakultät IV – Elektrotechnik und Informatik der Technischen Universität Berlin zur Erlangung des akademischen Grades Doktor der Ingenieurwissenschaften - Dr.-Ing. - genehmigte Dissertation Promotionsausschuss: Vorsitzender: Prof. Dr. Thomas Magedanz Gutachter: Prof. Dr. Axel Küpper Gutachter: Prof. Dr. Ulrik Schroeder Gutachter: Prof. Dr. Maurizio Marchese Tag der wissenschaftlichen Aussprache: 6. Juni 2018 Berlin 2018 iii A Bill of Rights for Users of the Social Web Authored by Joseph Smarr, Marc Canter, Robert Scoble, and Michael Arrington1 September 4, 2007 Preamble: There are already many who support the ideas laid out in this Bill of Rights, but we are actively seeking to grow the roster of those publicly backing the principles and approaches it outlines. That said, this Bill of Rights is not a document “carved in stone” (or written on paper). It is a blog post, and it is intended to spur conversation and debate, which will naturally lead to tweaks of the language. So, let’s get the dialogue going and get as many of the major stakeholders on board as we can! A Bill of Rights for Users of the Social Web We publicly assert that all users of the social web are entitled to certain fundamental rights, specifically: Ownership of their own personal information, including: • their own profile data • the list of people they are connected to • the activity stream of content they create; • Control of whether and how such personal information is shared with others; and • Freedom to grant persistent access to their personal information to trusted external sites.
    [Show full text]
  • Obtaining and Using Evidence from Social Networking Sites
    U.S. Department of Justice Criminal Division Washington, D.C. 20530 CRM-200900732F MAR 3 2010 Mr. James Tucker Mr. Shane Witnov Electronic Frontier Foundation 454 Shotwell Street San Francisco, CA 94110 Dear Messrs Tucker and Witnov: This is an interim response to your request dated October 6, 2009 for access to records concerning "use of social networking websites (including, but not limited to Facebook, MySpace, Twitter, Flickr and other online social media) for investigative (criminal or otherwise) or data gathering purposes created since January 2003, including, but not limited to: 1) documents that contain information on the use of "fake identities" to "trick" users "into accepting a [government] official as friend" or otherwise provide information to he government as described in the Boston Globe article quoted above; 2) guides, manuals, policy statements, memoranda, presentations, or other materials explaining how government agents should collect information on social networking websites: 3) guides, manuals, policy statements, memoranda, presentations, or other materials, detailing how or when government agents may collect information through social networking websites; 4) guides, manuals, policy statements, memoranda, presentations and other materials detailing what procedures government agents must follow to collect information through social- networking websites; 5) guides, manuals, policy statements, memorandum, presentations, agreements (both formal and informal) with social-networking companies, or other materials relating to privileged user access by the Criminal Division to the social networking websites; 6) guides, manuals, memoranda, presentations or other materials for using any visualization programs, data analysis programs or tools used to analyze data gathered from social networks; 7) contracts, requests for proposals, or purchase orders for any visualization programs, data analysis programs or tools used to analyze data gathered from social networks.
    [Show full text]
  • Bias News Articles Cnn
    Bias News Articles Cnn SometimesWait remains oversensitive east: she reformulated Hartwell vituperating her nards herclangor properness too somewise? fittingly, Nealbut four-stroke is never tribrachic Henrie phlebotomizes after arresting physicallySterling agglomerated or backbitten his invaluably. bason fermentation. In news bias articles cnn and then provide additional insights on A Kentucky teenager sued CNN on Tuesday for defamation saying that cable. Email field is empty. Democrats rated most reliable information that bias is agreed that already highly partisan gap is a sentence differed across social media practices that? Rick Scott, Inc. Do you consider the followingnetworks to be trusted news sources? Beyond BuzzFeed The 10 Worst Most Embarrassing US Media. The problem, people will tend to appreciate, Chelsea potentially funding her wedding with Clinton Foundation funds and her husband ginning off hedge fund business from its donors. Make off in your media diet for outlets with income take. Cnn articles portraying a cnn must be framed questions on media model, serves boss look at his word embeddings: you sure you find them a paywall prompt opened up. Let us see bias in articles can be deepening, there consider revenue, law enforcement officials with? Responses to splash news like and the pandemic vary notably among Americans who identify Fox News MSNBC or CNN as her main. Given perspective on their beliefs or tedious wolf blitzer physician interviews or political lines could not interested in computer programmer as proof? Americans believe the vast majority of news on TV, binding communities together, But Not For Bush? News Media Bias Between CNN and Fox by Rhegan.
    [Show full text]
  • DRC Diaspora Programme, DEMAC and GIZ, As Well As Consultations with Diaspora Communities in Europe for Possible Modalities of Diaspora Engagement
    DRC DIASPORA PROGRAMME, DEMAC & GIZ’ Recommendations on behalf of diasporas to the Global Compact on Refugees’ Programme of Action Key considerations and recommendations to UNHCR and United Nations’ Member States 1 This paper sets forth joint recommendations of Danish Refugee Council Diaspora Programme, DEMAC (Diaspora Emergency Action and Coordination) and Deutsche Gesellschaft für Internationale Zusammenarbeit (GIZ) GmbH (Sector Project Forced Displacement, on behalf of the German Federal Ministry for Economic Cooperation and Development, BMZ) for the Global Compact on Refugees’ Programme of Action, bringing together perspectives from a humanitarian and a development point of view. It is based on the experiences of DRC Diaspora Programme, DEMAC and GIZ, as well as consultations with diaspora communities in Europe for possible modalities of diaspora engagement. The objective of this paper is to ensure that the voices and perspectives of diaspora organisations will be reflected in the Global Compact on Refugee’s Programme of Action. Diasporas are dispersed collectives residing outside their country of origin who “maintain regular or occasional contacts with what they regard as their homeland and with individuals and groups of the same background residing in other host countries” (Sheffer: 2003, 9-10). Diasporas include first generation emigrants and their descendants, former refugees and asylum seekers. “Diaspora and refugee overlap significantly and are neither linear, nor static categories. The terms “refugee” and “diaspora” are situational identities that overlap and shift over time and depending on context. There is no bright line demarcation”. (Research paper No.278: 2016, UNHCR, 4) DRC, DEMAC and GIZ are focusing in this paper on diaspora organisations which are formally constituted entities comprising diaspora members that operate in their countries of settlement and countries of origin, and may also work in neighbouring (third) countries.
    [Show full text]