Analyzing the Great Firewall of China Over Space and Time

Total Page:16

File Type:pdf, Size:1020Kb

Analyzing the Great Firewall of China Over Space and Time Proceedings on Privacy Enhancing Technologies 2015; 2015 (1):61–76 Roya Ensafi*, Philipp Winter, Abdullah Mueen, and Jedidiah R. Crandall Analyzing the Great Firewall of China Over Space and Time Abstract: A nation-scale firewall, colloquially referred ●● ● ●● ●● ●●● ● ● ●● ● ● to as the “Great Firewall of China,” implements many ● ● ●●●●●● ● ● ●●● ● ●● ●●●●● ●● ●● ● ● ● ● ●● ● ● ●●●● ● ●●● ● ●●● ● ●●●●●● ●●● ● ● ● ●●● ● ● ●●● ● ● ● ● ● ● ●●● ● ● ● ●●●● different types of censorship and content filtering to con- ●● ● ● ● ● ● ● ● ● ● ●● ● ● ● ● ● ● ● ●● ●● ● ●● ● ●● ● ● ● ●●●● ● ●● ● ● ● ● trol China’s Internet traffic. Past work has shown that ● ● ● ● ● ● ● ● ● ● ● ● ● ● ●●● ● ● the firewall occasionally fails. In other words, sometimes ●●●●● ● ● ●● ● ● ● ● clients in China are able to reach blacklisted servers ● ●● ● ● ● ● 500 1500 2500 outside of China. This phenomenon has not yet been Number of users in China characterized because it is infeasible to find a large and Jan Mar May Jul geographically diverse set of clients in China from which Date in 2014 to test connectivity. In this paper, we overcome this challenge by using a hy- Fig. 1. The approximate amount of directly connecting Tor users brid idle scan technique that is able to measure connec- (as opposed to connecting over bridges) for the first months of tivity between a remote client and an arbitrary server, 2014 [40]. While the number of users varies, it rarely exceeds neither of which are under the control of the researcher 3,000; only a fraction of the 30,000 users the network once counted. performing measurements. In addition to hybrid idle scans, we present and employ a novel side channel in the Linux kernel’s SYN backlog. We show that both tech- 1 Introduction niques are practical by measuring the reachability of the Tor network which is known to be blocked in China. Our More than 600 million Internet users are located behind measurements reveal that failures in the firewall occur the world’s most sophisticated and pervasive censorship throughout the entire country without any conspicuous system: the Great Firewall of China (GFW). Brought to geographical patterns. We give some evidence that rout- life in 2003, the GFW has a tight grip on several layers ing plays a role, but other factors (such as how the GFW of the TCP/IP model and is known to block or filter IP maintains its list of IP/port pairs to block) may also be addresses, TCP ports, DNS requests, HTTP requests, important. circumvention tools, and even social networking sites. Keywords: Tor, GFW, censorship analysis, network This pervasive censorship gives rise to numerous cir- measurement, idle scan cumvention tools seeking to evade the GFW by exploit- ing a number of opportunities. Of particular interest is DOI 10.1515/popets-2015-0005 the Tor anonymity network [15] whose arms race with Received 11/22/2014; revised 2/12/2015; accepted 2/12/2015. the operators of the GFW now counts several iterations. Once having had 30,000 users solely from China, the Tor network now is largely inaccessible from within China’s borders as illustrated in Figure 1. The amount of users trying to connect to the Tor network indicates that there is a strong need for prac- tical and scalable circumvention tools. Censorship cir- cumvention, however, builds on censorship analysis.A *Corresponding Author: Roya Ensafi: University of New solid understanding of censorship systems is necessary Mexico, E-mail: [email protected] in order to design sound and sustainable circumvention Philipp Winter: Karlstad University, E-mail: systems. However, it is difficult to analyze Internet cen- [email protected] Abdullah Mueen: University of New Mexico, E-mail: sorship without controlling either the censored source [email protected] machine or its—typically uncensored—communication Jedidiah R. Crandall: University of New Mexico, E-mail: destination. This problem is usually tackled by obtain- [email protected] ing access to censored source machines, finding open Analyzing the Great Firewall of China Over Space and Time 62 proxies, renting virtual systems, or by cooperating with – Ensafi et al. assumed that SYN packets are treated volunteers inside the censoring country. In the absence the same as RST packets by the GFW, but had no of these possibilities, censorship analysis has to resort to way to verify this. Winter and Lindskog observed observing traffic on the server’s side and inferring what that, from their VPS in Beijing, for Tor relays only the client is seeing, which is not always feasible either. the SYN/ACK from the server is blocked, not the Our work fills this gap by presenting and evaluating SYN from the client to the server. One of our key network measurement techniques which can be used to results in this paper is that this observation also expose censorship while controlling neither the source applies to China in general for a lot of different ge- nor the destination machine. This puts our study in ographic locations. In this paper we present a novel stark contrast to previous work which had to rely on SYN backlog side channel for this purpose. proxies or volunteers, both of which provide limited cov- – Ensafi et al.’s method for choosing clients in China erage of the censor’s networks. was uniform throughout the IP address space of the Our techniques are currently limited to testing basic country, not stratified geographically, so that any IP connectivity. Thus, we can only detect censorship on geographic patterns in their results could have been lower layers of the network stack, i.e., before a TCP biased. We instead use stratified sampling based on connection is even established. This kind of low-level longitude and latitude. censorship is very important to the censors, however. – Ensafi et al.’s data was not culled to ensure that For example, while social media controls on domestic Tor relays which appeared in the consensus but were sites in China, such as Weibo, can be very sophisticated, actually not accessible did not appear in the mea- users would simply use alternatives such as Facebook if surements. We more thoroughly culled our data to the low-level IP address blocking were not in place to remove these kinds of distortions. prevent this. Also, deep packet inspection (DPI) does – Ensafi et al.’s measurements between clients and not scale as well in terms of raw traffic as does lower- servers did not form a full bipartite graph, meaning level filtering. Nevertheless, we acknowledge that our that not every client was tested with every server techniques are not applicable if censors only make use and vice versa. Our experiments were designed to of DPI to block Tor as it was or is done by Ethiopia, form a full bipartite graph to ensure completeness Kazakhstan, and Syria [1]. and avoid distortions in the results. So, to return to our key open questions: 1.1 Limitations of Previous Work – Are there geographic patterns in the cases where the GFW lets through packets that it would oth- Previous related work on China’s filtering of packets erwise block? No. Our results indicate that failures based on IP addresses and TCP ports left open two occur throughout the country and that there are no key questions: are there geographic patterns in the cases conspicuous geographic patterns. where the GFW lets through packets that it would oth- – Are the GFW’s failures on a given route persistent erwise block?; and, are the GFW’s failures on a given or intermittent? Both. Some routes see persistent route persistent or intermittent? failures throughout that day, and some routes see Winter and Lindskog [46] used a virtual private only intermittent failures. server (VPS) in Beijing as a vantage point to reach the set of all Tor relays. For experiments where seeing pack- In summary, this paper makes the following contri- ets on both the client and server side was necessary they butions: performed the experiments between the VPS in Beijing – We answer the two aforementioned key questions, and a Tor relay in Sweden, that was under their control. and confirm other key observations (such as that They observed that, for some Tor relays, their VPS in the GFW blocks SYN/ACKs entering the country China was able to connect to those relays. mostly, and not SYNs leaving the country) that can Ensafi et al. [17, 18] also observed inconsistencies provide important clues about how the GFW oper- with respect to clients in China being able to commu- ates. nicate over IP with Tor servers. However, their experi- – We describe the first real-world application of the ments were not designed to locate geographic patterns hybrid idle scan [17, 18] to a large-scale Internet or answer other key questions about the GFW’s filtering measurement problem, in which we measure the of Tor in the routing layer. Specifically: Analyzing the Great Firewall of China Over Space and Time 63 connectivity between the Tor anonymity network reduce the number of SYN/ACK retransmissions for all and clients in China over a period of four weeks. pending connections [2]. As a result, half-open connec- – We present and evaluate a novel side channel based tions will time out earlier which should bring the SYN on the Linux kernel’s SYN backlog which enables backlog back into uncritical state. We show that the indirect detection of packet loss. Linux kernel’s pruning mechanism—by design a shared resource—constitutes a side channel which can be used Our results call into question some basic assump- to measure intentional packet drops targeting a server. tions about the GFW, such as the assumption that This is possible without controlling said server. China uses the consensus file (a list of all available Our key insight is that we can remotely measure the relays) as their list for blocking Tor or the assump- approximate size of a server’s SYN backlog by sending tion that the blocking occurs at the border.
Recommended publications
  • Internet Surveillance in China
    The Architecture of Control: Internet Su rveillance in China James A. Lewis , Center for Strategic and International Studies July 200 6 Security concerns shape China’s official internet and information technology strateg ies . Th ese include concerns shared by many cou nt ries: promoting a strong and growing economy , providing information assurance , and defending against foreign intrusions into China’s information space . Most importantly for the Chinese, information security include s a political element not foun d in many other nations – c ontrol by the party and the state over communications and the flow of informa tion . The rapid spread of internet access and mobile communications pose a serious challenge to this goal. In response, China’s security apparatus is reorienting its informational defenses. In the past, the emphasi s was on blocking access - the “great firewall.” In the future, the emphasis will be on the monitoring and surveillance of online activities. China’s primary objective in internet securi ty is political – preventing IT from eroding the regime’s authority. Information security is defined in China as “a comprehensive concept understood in a broad sense, and it involves political, economic, cultural, ideological, media, social and military l evel or field. ” It includes “data, system, network, infrastructure .”1 Chin ese officials worry about the potential of the Internet to contribute to the loss of state secrets , offer new avenues for organizing dissent and opposition , and spread “harmful inf ormation. ” This makes controlling access to "harmful network information” and the ability to monitor and intercept communications top priorities .2 For China’s leadership, one particular set of event s demonstrated the risks of not securing networks.
    [Show full text]
  • Inferring TCP/IP-Based Trust Relationships Completely Off-Path
    ONIS: Inferring TCP/IP-based Trust Relationships Completely Off-Path Xu Zhang Jeffrey Knockel Jedidiah R. Crandall Department of Computer Science Department of Computer Science Department of Computer Science University of New Mexico University of New Mexico University of New Mexico [email protected] [email protected] [email protected] Abstract—We present ONIS, a new scanning technique that researcher in country X who wants to learn if network traffic can perform network measurements such as: inferring TCP/IP- from a host in country Y can connect to a Tor server in country based trust relationships off-path, stealthily port scanning a Z. Performing this measurement off-path is necessary when target without using the scanner’s IP address, detecting off- path packet drops between two international hosts. These tasks vantage points (VPNs, Planet Lab nodes, etc.) are limited or typically rely on a core technique called the idle scan, which is unavailable in some countries. Ensafi et al. detail this off- a special kind of port scan that appears to come from a third path trust relationship testing by using the idle scan in [2]. machine called a zombie. The scanner learns the target’s status Specifically, they measured packet drops from clients to Tor from the zombie by using its TCP/IP side channels. directory servers by using machines with global incrementing Unfortunately, the idle scan assumes that the zombie has IP identifiers (IPIDs) which exhibit the now-discouraged behavior IPIDs as vantage points without those machines being under of being globally incrementing. The use of this kind of IPID their control.
    [Show full text]
  • Retweeting Through the Great Firewall a Persistent and Undeterred Threat Actor
    Retweeting through the great firewall A persistent and undeterred threat actor Dr Jake Wallis, Tom Uren, Elise Thomas, Albert Zhang, Dr Samantha Hoffman, Lin Li, Alex Pascoe and Danielle Cave Policy Brief Report No. 33/2020 About the authors Dr Jacob Wallis is a Senior Analyst working with the International Cyber Policy Centre. Tom Uren is a Senior Analyst working with the International Cyber Policy Centre. Elise Thomas is a Researcher working with the International Cyber Policy Centre. Albert Zhang is a Research Intern working with the International Cyber Policy Centre. Dr Samanthan Hoffman is an Analyst working with the International Cyber Policy Centre. Lin Li is a Researcher working with the International Cyber Policy Centre. Alex Pascoe is a Research Intern working with the International Cyber Policy Centre. Danielle Cave is Deputy Director of the International Cyber Policy Centre. Acknowledgements ASPI would like to thank Twitter for advanced access to the takedown dataset that formed a significant component of this investigation. The authors would also like to thank ASPI colleagues who worked on this report. What is ASPI? The Australian Strategic Policy Institute was formed in 2001 as an independent, non‑partisan think tank. Its core aim is to provide the Australian Government with fresh ideas on Australia’s defence, security and strategic policy choices. ASPI is responsible for informing the public on a range of strategic issues, generating new thinking for government and harnessing strategic thinking internationally. ASPI International Cyber Policy Centre ASPI’s International Cyber Policy Centre (ICPC) is a leading voice in global debates on cyber and emerging technologies and their impact on broader strategic policy.
    [Show full text]
  • Effective Censorship: Maintaining Control in China
    University of Pennsylvania ScholarlyCommons CUREJ - College Undergraduate Research Electronic Journal College of Arts and Sciences 2010 Effective Censorship: Maintaining Control In China Michelle (Qian) Yang University of Pennsylvania, [email protected] Follow this and additional works at: https://repository.upenn.edu/curej Part of the Political Science Commons Recommended Citation Yang, Michelle (Qian), "Effective Censorship: Maintaining Control In China" 01 January 2010. CUREJ: College Undergraduate Research Electronic Journal, University of Pennsylvania, https://repository.upenn.edu/curej/118. This paper is posted at ScholarlyCommons. https://repository.upenn.edu/curej/118 For more information, please contact [email protected]. Effective Censorship: Maintaining Control In China Keywords censorship, china, incentives, Social Sciences, Political Science, Devesh Kapur, Kapur, Devesh Disciplines Political Science This article is available at ScholarlyCommons: https://repository.upenn.edu/curej/118 Effective Censorship: Maintaining Control in China Michelle Yang April 09, 2010 Acknowledgments My initial interest in this thesis topic was generated during the summer of 2009 when I was interning in Beijing. There, I had found myself unable to access a large portion of the websites I’ve grown so accustomed to in my everyday life. I knew from then that I wanted to write about censorship in China. Since that summer, the scope of the topic has changed greatly under the careful guidance of Professor Devesh Kapur. I am incredibly grateful for all the support he has given me during this entire process. This final thesis wouldn’t be what it is today without his guidance. Professor Kapur, thank you for believing in me and for pushing me to complete this thesis! I would also like to extend my gratitude to both Professor Doherty-Sil and Professor Goldstein for taking time out of their busy schedules to meet with me and for providing me with indispensible advice.
    [Show full text]
  • Iclab: a Global, Longitudinal Internet Censorship Measurement Platform
    ICLab: A Global, Longitudinal Internet Censorship Measurement Platform Arian Akhavan Niaki∗y Shinyoung Cho∗yz Zachary Weinberg∗x Nguyen Phong Hoangz Abbas Razaghpanahz Nicolas Christinx Phillipa Gilly yUniversity of Massachusetts, Amherst zStony Brook University xCarnegie Mellon University {arian, shicho, phillipa}@cs.umass.edu {shicho, nghoang, arazaghpanah}@cs.stonybrook.edu {zackw, nicolasc}@cmu.edu Abstract—Researchers have studied Internet censorship for remains elusive. We highlight three key challenges that must nearly as long as attempts to censor contents have taken place. be addressed to make progress in this space: Most studies have however been limited to a short period of time and/or a few countries; the few exceptions have traded off detail Challenge 1: Access to Vantage Points. With few ex- for breadth of coverage. Collecting enough data for a compre- ceptions,1 measuring Internet censorship requires access to hensive, global, longitudinal perspective remains challenging. “vantage point” hosts within the region of interest. In this work, we present ICLab, an Internet measurement The simplest way to obtain vantage points is to recruit platform specialized for censorship research. It achieves a new balance between breadth of coverage and detail of measurements, volunteers [37], [43], [73], [80]. Volunteers can run software by using commercial VPNs as vantage points distributed around that performs arbitrary network measurements from each the world. ICLab has been operated continuously since late vantage point, but recruiting more than a few volunteers per 2016. It can currently detect DNS manipulation and TCP packet country and retaining them for long periods is difficult. Further, injection, and overt “block pages” however they are delivered.
    [Show full text]
  • Computational Propaganda in Taiwan: Where Digital Democracy Meets Automated Autocracy
    Working Paper No. 2017.2 Computational Propaganda in Taiwan: Where Digital Democracy Meets Automated Autocracy Nicholas J. Monaco, Google Jigsaw Table of Contents Abstract ....................................................................................................................... 3 Introduction ................................................................................................................. 3 Case study ................................................................................................................... 5 Media and social media landscape in Taiwan ................................................................... 5 Overview of computational propaganda in Taiwan .......................................................... 9 Automation and propaganda .......................................................................................... 10 Fake news ........................................................................................................................ 13 Cross-Strait propaganda ................................................................................................. 15 The 2016 Diba Facebook expedition .............................................................................. 22 Conclusion ................................................................................................................. 25 About the Author ...................................................................................................... 27 References ................................................................................................................
    [Show full text]
  • How the Chinese Government Fabricates Social Media Posts
    American Political Science Review (2017) 111, 3, 484–501 doi:10.1017/S0003055417000144 c American Political Science Association 2017 How the Chinese Government Fabricates Social Media Posts for Strategic Distraction, Not Engaged Argument GARY KING Harvard University JENNIFER PAN Stanford University MARGARET E. ROBERTS University of California, San Diego he Chinese government has long been suspected of hiring as many as 2 million people to surrep- titiously insert huge numbers of pseudonymous and other deceptive writings into the stream of T real social media posts, as if they were the genuine opinions of ordinary people. Many academics, and most journalists and activists, claim that these so-called 50c party posts vociferously argue for the government’s side in political and policy debates. As we show, this is also true of most posts openly accused on social media of being 50c. Yet almost no systematic empirical evidence exists for this claim https://doi.org/10.1017/S0003055417000144 . or, more importantly, for the Chinese regime’s strategic objective in pursuing this activity. In the first large-scale empirical analysis of this operation, we show how to identify the secretive authors of these posts, the posts written by them, and their content. We estimate that the government fabricates and posts about 448 million social media comments a year. In contrast to prior claims, we show that the Chinese regime’s strategy is to avoid arguing with skeptics of the party and the government, and to not even discuss controversial issues. We show that the goal of this massive secretive operation is instead to distract the public and change the subject, as most of these posts involve cheerleading for China, the revolutionary history of the Communist Party, or other symbols of the regime.
    [Show full text]
  • An Analysis of Contributions to Wikipedia from Tor
    Are anonymity-seekers just like everybody else? An analysis of contributions to Wikipedia from Tor Chau Tran Kaylea Champion Andrea Forte Department of Computer Science & Engineering Department of Communication College of Computing & Informatics New York University University of Washington Drexel University New York, USA Seatle, USA Philadelphia, USA [email protected] [email protected] [email protected] Benjamin Mako Hill Rachel Greenstadt Department of Communication Department of Computer Science & Engineering University of Washington New York University Seatle, USA New York, USA [email protected] [email protected] Abstract—User-generated content sites routinely block contri- butions from users of privacy-enhancing proxies like Tor because of a perception that proxies are a source of vandalism, spam, and abuse. Although these blocks might be effective, collateral damage in the form of unrealized valuable contributions from anonymity seekers is invisible. One of the largest and most important user-generated content sites, Wikipedia, has attempted to block contributions from Tor users since as early as 2005. We demonstrate that these blocks have been imperfect and that thousands of attempts to edit on Wikipedia through Tor have been successful. We draw upon several data sources and analytical techniques to measure and describe the history of Tor editing on Wikipedia over time and to compare contributions from Tor users to those from other groups of Wikipedia users. Fig. 1. Screenshot of the page a user is shown when they attempt to edit the Our analysis suggests that although Tor users who slip through Wikipedia article on “Privacy” while using Tor. Wikipedia’s ban contribute content that is more likely to be reverted and to revert others, their contributions are otherwise similar in quality to those from other unregistered participants and to the initial contributions of registered users.
    [Show full text]
  • The Internet Beyond Borderless Versus Balkanized
    POROUS TERRITORIES: THE INTERNET BEYOND BORDERLESS VERSUS BALKANIZED LUKE MUNN Western Sydney University (Australia) [email protected] Abstract: If the internet was once viewed as a borderless realm, critics now warn it is in danger of being “balkanized”, splintering into nationalized fragments. Certainly nation-states increasingly see the Internet as “their” internet, a national space to be regulated and actively shaped. The first half of this article charts the technologies that appear to place this vision within reach: data localization, internet shutdowns, and internet filtering. These moves promise to exert sovereign control, to make the inter- net an extension of national territory. Yet by drawing on two recent events in China, this article argues that these territories are messy and their borders are permeable. Pro-government activists jump across the firewall in order to attack individuals and organizations who threaten the stability and security of their motherland. Simultane- ously, individuals scale the firewall in order to question the party line and express solidarity with democratic movements, undermining the political and technical boundaries established by their nation. Internet architectures create a condition where territorialization is constantly being both amplified and undermined by “extra- territorial” activities. These practices demonstrate the everyday porosity of internet territories, providing a messier portrait that goes beyond the dichotomy of borderless vs balkanized. Keywords: territory, fragmentation, balkanization, internet, China. When nations speak of the internet today, they no longer use the language of the virtual, but of soil. At the dawn of the internet, cyberspace was framed as a new realm decoupled from the state. This digital sphere stretched across the globe, making it essentially ungovernable.
    [Show full text]
  • Hacking Techniques & Intrusion Detection
    Hacking Techniques & Intrusion Detection Ali Al-Shemery arabnix [at] gmail All materials is licensed under a Creative Commons “Share Alike” license. • http://creativecommons.org/licenses/by-sa/3.0/ 2 # whoami • Ali Al-Shemery • Ph.D., MS.c., and BS.c., Jordan • More than 14 years of Technical Background (mainly Linux/Unix and Infosec) • Technical Instructor for more than 10 years (Infosec, and Linux Courses) • Hold more than 15 well known Technical Certificates • Infosec & Linux are my main Interests 3 Scanning and Fingerprinting Outline • Diving into Important Network Protocols (TCP, UDP, ICMP, ARP, etc) • Nmap – Intro. • Host Discovery • Tracing the Route • Port Scanning • OS and Service Fingerprinting • Learning Python in 4 Slides • Packet Crafting 5 Diving into Important Network Protocols • Diving into Important Network Protocols: – TCP – UDP – ICMP – ARP – HTTP – etc 6 Nmap • "Network Mapper” is a free and open source utility for network discovery and security auditing. - Fyodor • IMO: #1 tool in your security arsenal! Important Note: A huge difference between running Nmap as a privileged/unprivileged user! 7 Host Discovery • Identifying Live Systems • Also called “Network Sweep” • Nmap ping sweeps: – Ping Only (-sP) – ARP Ping (-PR) – ICMP Echo Request Ping (-PE) – TCP SYN Ping (-PS) – TCP ACK Ping (-PA) – UDP Ping (-PU) DEMO 8 Assignment #1 • Why do host discovery or network sweeping if we already have the target list of IP(s)? 9 Tracing the Route • Nmap --traceroute option • DEMO DEMO 10 Port Scanning • The act of testing a remote
    [Show full text]
  • How to Scan a Network with Hping3
    How To Scan a Network With Hping3 Hping3 Hping3 is a command-line oriented TCP/IP packet assembler and analyser and works like Nmap. The application is able to send customizes TCP/IP packets and display the reply as ICMP echo packets, even more Hping3 supports TCP, UDP, ICMP and RAW-IP protocols, has a traceroute mode, the ability to send files between a covered channel, and many other features like DDOS flooding attacks. Hping3 can be used to perform: OS fingerprinting ICMP pings Traceroute Port scanning Firewall testing Test IDSes Network testing and auditing MTU discovery Exploit and vulnerabilities discovery DDOS and ICMP flooding Hping3 comes pre-installed with Kali Linux but and can also be installed on most Linux distros, also you need to run the commands with sudo privileges. Visit the official documentation at to learn more on how you can use Hping3 http://www.hping.org/documentation.php Useful Options -h Show this help -v Show version -c Packet count -i –interval –flood -V Verbose mode -D Debugging -f Fragment packets -Q Display sequence number -0 RAW IP mode -1 ICMP mode -2 UDP mode -8 SCAN mode -9 listen mode -F Set the FIN flag -S Set the SYN flag -P Set the PUSH flag -A Set the ACK flag -U Set the URG flag Commands Send a ACK packet to a target hping3 –A 192.168.100.11 HPING 192.168.100.11 (eth0 192.168.100.11): A set, 40 headers + 0 data bytes len=46 ip=192.168.100.11 ttl=128 id=29627 sport=0 flags=R seq=0 win=32767 rtt=4.0 ms len=46 ip=192.168.100.11 ttl=128 id=29628 sport=0 flags=R seq=1 win=32767 rtt=2.0 ms len=46 ip=192.168.100.11
    [Show full text]
  • End of News:Internet Censorship in Turkey
    https://www.freewebturkey.com/end-of-news End of news: Internet censorship in Turkey This report was published as part of the Free Web Turkey project carried out by the Media and Law Studies Association between November 2019 and October 2020. http://www.freewebturkey.com | http://www.mlsaturkey.com About MLSA and Free Web Turkey The Media and Law Studies Association (MLSA) was founded in 2017 and its main field of activity is of- fering legal protection to journalists and people tried in freedom of expression cases. As the MLSA, we aim to provide guidance to websites, media organizations and all content producers facing censorship in digital media on methods of coping with censorship, offering them legal consultancy, tools to avoid censorship and a set of internet services that would ease their efforts within the scope of the Free Web Turkey project, which we have been conducting in the field of internet freedom for a year. Besides, we bring together groups working in the field of digital freedoms and freedom of expression to organize panels, roundtable discussions, publish articles, and conduct training programs for content producers to raise awareness against censorship. Another goal of our project is to organize the network of communication and solidarity between institutions, which is one of the most essential components in combating digital censorship. To this end, we try to keep an up-to- date list of blocked URLs and create a database so that we can run a joint and more powerful campaign against censorship. While doing all these, we aim to protect the freedom of expression in the law, the Constitution and international conventions, and to exercise this right effectively.
    [Show full text]