Experiences Deploying Multi-Vantage-Point Domain Validation at Let’S Encrypt

Total Page:16

File Type:pdf, Size:1020Kb

Experiences Deploying Multi-Vantage-Point Domain Validation at Let’S Encrypt Experiences Deploying Multi-Vantage-Point Domain Validation at Let’s Encrypt Henry Birge-Lee Liang Wang Daniel McCarney Princeton University Princeton University Square Inc., Prev. Let’s Encrypt Roland Shoemaker Jennifer Rexford Prateek Mittal Unaffiliated, Prev. Let’s Encrypt Princeton University Princeton Unversity Abstract CA (vulnerable to BGP hijacking) An attacker can obtain a valid TLS certificate for a domain 4. HTTP GET by hijacking communication between a certificate authority 5. HTTP response (CA) and a victim domain. Performing domain validation from multiple vantage points can defend against these 1. Certificate request attacks. We explore the design space of multi-vantage-point 2. Challenge 6. Certificate domain validation to achieve (1) security via sufficiently 3. Server modifications diverse vantage points, (2) performance by ensuring low latency and overhead in certificate issuance, (3) manageability Domain owner Domain’s web server by complying with CA/Browser forum requirements, and requiring minimal changes to CA operations, and (4) a Figure 1: Domain control validation by Certificate Authority. low benign failure rate for legitimate requests. Our open- source implementation was deployed by the Let’s Encrypt CA in February 2020, and has since secured the issuance of more than half a billion certificates during the first year domain owner to demonstrate control of a core resource of its deployment. Using real-world operational data from associated with the domain (e.g., a web server, email address, Let’s Encrypt, we show that our approach has negligible or DNS record). latency and communication overhead, and a benign failure rate comparable to conventional designs with one vantage point. Finally, we evaluate the security improvements using a 1.1 Domain Validation Attacks and Defenses combination of ethically conducted real-world BGP hijacks, Internet-scale traceroute experiments, and a novel BGP Domain control validation is vulnerable to localized and simulation framework. We show that multi-vantage-point targeted Border Gateway Protocol (BGP) attacks that allow domain validation can thwart the vast majority of BGP attacks. adversaries to obtain bogus certificates [21,29]. These attacks Our work motivates the deployment of multi-vantage-point are possible because validation is often performed over domain validation across the CA ecosystem to strengthen insecure HTTP connections (since domain validation is a TLS certificate issuance and user privacy. necessary step that must occur before establishing an HTTPS connection). The BGP attack puts the adversary on the path between the CA and the victim domain or the victim domain 1 Introduction and the CA. Then, the adversary asks the CA for a certificate for the victim domain. The validation request (e.g., an HTTP Certificate Authorities (CAs) establish trust on the Internet GET to the victim domain) is directed to the adversary where by associating domains with the correct public keys through it is maliciously answered (Figure1). With its validation digitally signed certificates. A certificate contains domain request successful, the adversary can obtain a certificate for name(s) and the associated public key. The CAs must the domain. These attacks are particularly effective because ensure that a certificate is only given to the legitimate the BGP attack can be localized (affecting the target CA) owner of a domain. Otherwise, an adversary with a bogus and short-lived (during domain validation) but lead to the certificate could circumvent the assurances of confidentiality adversary obtaining a universally-valid multi-year certificate and integrity offered by HTTPS, and then decrypt or for the victim’s domain. These attacks are well within the modify sensitive user data (e.g., logins, financial information, capability of repressive regimes which have been accused cryptocurrency credentials [22]). To prevent these attacks, of launching BGP attacks [26] and have motive to intercept CAs perform domain control validation that requires the encrypted communications [1]. Internet NOT affected by MultiVA design. Validating from multiple vantage points the adversary’s BGP attacks CA Internet affected by seems like a simple idea. Yet, creating a production-grade the adversary’s BGP attacks Decision : 3 Validation OK system is challenging, due to competing trade-offs: Issue the cert • Security. The multiple vantage points must offer VP1 sufficiently diverse perspectives on routing to ensure that Validation OK 1 some vantage points can reach the legitimate domain. (A) 2 Cert request: Validation I own domain A Also, the quorum policy (i.e., the “vote” among the Response vantage points before signing a certificate) must be Challenge strong enough to thwart attacks, without sacrificing performance and robustness. Victim domain A Adversary • Manageability. Validating from multiple vantage points CA requires more server and network resources, spread 3 Decision : across more locations. This may require billing Two validation failures Can’t issue the cert arrangements with multiple cloud providers. In addition, Validation fail VP3 the CA/Browser forum, which decides the rules for the VP1 Validation fail operation of publicly trusted CAs, places security and VP2 Validation OK 1 Cert request: auditing requirements on the data centers CAs use [25]. (B) I own domain A Thus, a system with multiple vantage points may require ? 2 Response Challenge Validation the maintenance and auditing of multiple data centers. Challenge ? Challenge • Performance. The latency introduced by additional vantage points should not significantly slow down the Victim domain A Adversary overall domain control validation process. Similarly, the approach should have low communication overhead. Figure 2: A localized BGP attack affects a portion of the The implementation of multi-vantage-point domain Internet. If the CA has only one vantage point (A), the validation should also be incrementally deployable. adversary successfully gets the certificate. With multiple Performance constraints are particularly sensitive when vantage points (B), the CA detects the attack as two vantage deploying on a live production system, requiring careful points reach the legitimate server and fail the validations. system monitoring and a phased deployment. • Benign failure. A benign (validation) failure is a non- To mitigate these attacks, CAs need to defend themselves malicious validation request that should have been from routing attacks on domain control validation. A successful but was blocked because of validation failures promising approach is to perform validation from multiple caused by external factors in some vantage points. The diverse vantage points, to make it hard for the adversary’s failures are mostly caused by DNS propagation delay attack to “fool” all (or many) of the vantage points [21]. and configuration errors; see §4.2. A multi-vantage-point Vantage points unaffected by the BGP attack reach the validation system should not throw a significant number legitimate victim domain and observe that domain control of benign failures. validation has not been completed (see Figure2). This would We explore the complex design space of multi-vantage- stop the CA from issuing a certificate to the adversary. With point domain validation to balance the trade-offs among effective multi-vantage-point validation in place, an adversary these challenges. We propose to use a deployment of only capable of launching localized BGP attacks will have multiple vantage points within a single cloud provider to significant difficulty obtaining a bogus certificate as the achieve good performance and manageability, as the site adversary cannot have topological proximity to all of the reliability engineering (SRE) and billing departments only CA’s diverse vantage points. Thus, successful attacks would need to interface with a single cloud provider. We satisfy require announcing BGP routes with broad scope (readily the compliance requirements imposed by the CA/Browser visible in public BGP monitoring platforms [11, 13]), such as forum by carefully tracking validation results from the advertising smaller sub-prefixes (which is infeasible for /24 original CA and the cloud vantage points, respectively. IP prefixes). We carefully select cloud vantage points across diverse geographic locations to ensure sufficient diversity and system 1.2 MultiVA Design, Deployment, & Analysis security, and connect them to existing CA components using mutually-authenticated TLS. Our design balances the number This paper presents the design and evaluation of multiVA, and location of vantage points to control the trade-off between the first real-world deployment of the multi-vantage-point security, manageability, performance, and benign failures. countermeasure to secure domain control validation. More vantage points would improve security, but may increase validation overhead and manageability difficulty. Finally, we majority of BGP attacks (additionally see Table3 for a incorporate a configurable domain validation quorum policy summary of lessons learned through design, deployment, to strike a balance between security and benign failures. and evaluation aspects of this project). Finally, we also make recommendations for further enhancing the multiVA MultiVA deployment. We develop a fully open-source deployment via additional diverse vantage points. implementation of our multiVA design. Notably, our imple- mentation does not require any changes to the Automated We hope our work motivates industry-wide adoption
Recommended publications
  • Securing Interdomain Network Routing with Resource Public Key Infrastructure (RPKI)
    Securing Interdomain Network Routing with Resource Public Key Infrastructure (RPKI) A Technical Paper prepared for SCTE•ISBE by Mark Goodwin IP Design Engineer Cox Communications, Inc 6305-B Peachtree Dunwoody Rd, Atlanta, GA 30328 404-269-8267 [email protected] © 2019 SCTE•ISBE and NCTA. All rights reserved. Table of Contents Title Page Number Table of Contents .................................................................................................................................... 2 1. Introduction .................................................................................................................................... 4 2. Motivations .................................................................................................................................... 4 2.1. BGP Security Analysis ....................................................................................................... 4 3. RPKI Components ......................................................................................................................... 6 3.1. Certificate Authority (CA) ................................................................................................... 7 3.2. Resource Certificate .......................................................................................................... 7 3.3. Route Origin Authorizations (ROAs)................................................................................... 8 3.4. RPKI Validating Cache .....................................................................................................
    [Show full text]
  • Bambauer-Macro-V2-Nov 28.Docx (Do Not Delete) 12/12/14 6:26 Pm
    BAMBAUER-MACRO-V2-NOV 28.DOCX (DO NOT DELETE) 12/12/14 6:26 PM FOXES AND HEDGEHOGS IN TRANSITION DEREK E. BAMBAUER* INTRODUCTION .......................................................................................... 1 I. A FLATTER NETWORK ........................................................................... 2 II. UNIVERSAL SERVICE? .......................................................................... 7 III. THE CAST OF CHARACTERS .............................................................. 10 CONCLUSION ........................................................................................... 16 INTRODUCTION The migration from a congeries of communications protocols and technologies to an Internet Protocol-based system is an architectural shift of profound magnitude: it is as though people returned to the city of Babel, abandoning their native tongues for a single lingua franca. Perhaps, after this shift, nothing will be restrained from those who use the Internet.1 And yet, there will inevitably be problems that arise from the shift. Scholars and activists have already raised concerns about equal access to communications capabilities; about the security and resiliency of the new architecture; and about the tension between competing speech interests on the network. One way of thinking about these problems, and potential solutions, is to classify them as either hedgehogs or foxes. The British philosopher Isaiah Berlin suggested that intellectuals can be classified into these two camps, puckishly borrowing from the Greek
    [Show full text]
  • Overview of Routing Security Landscape for the Quilt Member Meeting, Winter 2019 Mark Beadles, CISO, Oarnet [email protected] BGP IDLE
    Overview of Routing Security Landscape for the Quilt Member Meeting, Winter 2019 Mark Beadles, CISO, OARnet [email protected] BGP IDLE CONNECT ACTIVE OPEN OPEN SENT CONFIRM ESTAB- LISHED 2/13/2019 Routing Security Landscape - The Quilt 2 Overview of Routing Security Landscape • Background • Threat environment • Current best practices • Gaps 2/13/2019 Routing Security Landscape - The Quilt 3 Background - Definitions • BGP • Border Gateway Protocol, an exterior path-vector gateway routing protocol • Autonomous System & Autonomous System Numbers • Collection of IP routing prefixes under control of a network operator on behalf of a single administrative domain that presents a defined routing policy to the Internet • Assigned number for each AS e.g. AS600 2/13/2019 Routing Security Landscape - The Quilt 4 Background - The BGP Security Problem By design, routers running BGP accept advertised routes from other BGP routers by default. (BGP was written under the assumption that no one would lie about the routes, so there’s no process for verifying the published announcements.) This allows for automatic and decentralized routing of traffic across the Internet, but it also leaves the Internet potentially vulnerable to accidental or malicious disruption, known as BGP hijacking. Due to the extent to which BGP is embedded in the core systems of the Internet, and the number of different networks operated by many different organizations which collectively make up the Internet, correcting this vulnerabilityis a technically and economically challenging problem. 2/13/2019 Routing Security Landscape - The Quilt 5 Background – BGP Terminology • Bogons • Objects (addresses/prefixes/ASNs) that don't belong on the internet • Spoofing • Lying about your address.
    [Show full text]
  • High Volume of European Network Traffic Re-Routed Through China
    Memo 11/06/2019 - TLP:WHITE High volume of European network traffic re-routed through China Telecom Reference: Memo [190611-1] Date: 11/06/2019 - Version: 1.0 Keywords: BGP, digital infrastructure, China Sources: publicly available information Key Points A routing incident led to 70 000 routes used for European traffic being redirected through China Telecom for over 2 hours. Border Gateway Protocol (BGP) errors are a relatively common issue but usually last just a few minutes. China Telecom has still not implemented some basic routing safeguards to detect and remediate them in a timely manner. Summary On June 6, a routing incident led to over 70 000 routes used for European mobile networks being redirected through China Telecom for over two hours. The incident began at 09:43 UTC when Swiss data centre colocation company Safe Host (AS21217) unintentionally leaked over 70 000 routes to China Telecom (AS4134) in Frankfurt, Germany. China Telecom then announced these routes on to the global internet redirecting large amounts of traffic destined for some of the largest European mobile networks through China Telecom’s network. Some of the most impacted European networks included Swisscom (AS3303) of Switzerland, KPN (AS1136) of Holland, Bouygues Telecom (AS5410) and Numericable-SFR (AS21502) of France. Often routing incidents only last for a few minutes, but in this case, many of the leaked routes were in circulation for over two hours. Comments China Telecom, a major international carrier, has still not implemented neither the basic routing safeguards necessary to prevent propagation of routing leaks nor the processes and procedures necessary to detect and remediate them in a timely manner when they inevitably occur.
    [Show full text]
  • Detecting IP Prefix Hijack Events Using BGP Activity and AS Connectivity Analysis
    University of Plymouth PEARL https://pearl.plymouth.ac.uk 04 University of Plymouth Research Theses 01 Research Theses Main Collection 2017 Detecting IP prefix hijack events using BGP activity and AS connectivity analysis Alshamrani, Hussain Hameed http://hdl.handle.net/10026.1/9566 University of Plymouth All content in PEARL is protected by copyright law. Author manuscripts are made available in accordance with publisher policies. Please cite only the published version using the details provided on the item record or document. In the absence of an open licence (e.g. Creative Commons), permissions for further reuse of content should be sought from the publisher or author. Detecting IP prefix hijack events using BGP activity and AS connectivity analysis BY Hussain Hameed Alshamrani A thesis submitted to the University of Plymouth in partial fulfilment for the degree of Doctor of Philosophy Centre for Security, Communications and Network (CSCAN) Plymouth University February 2017 Copyright This copy of the thesis has been supplied on condition that anyone who consults it is understood to recognise that its copyright rests with its author and that no quotation from the thesis and no information derived from it may be published without the author’s prior consent. Abstract The Border Gateway Protocol (BGP), the main component of core Internet connectivity, suffers vulnerability issues related to the impersonation of the ownership of IP prefixes for Autonomous Systems (ASes). In this context, a number of studies have focused on securing the BGP through several techniques, such as monitoring-based, historical-based and statistical-based behavioural models. In spite of the significant research undertaken, the proposed solutions cannot detect the IP prefix hijack accurately or even differentiate it from other types of attacks that could threaten the performance of the BGP.
    [Show full text]
  • Secure Blockchain Network Communication Using SCION
    DEGREE PROJECT IN COMPUTER SCIENCE AND ENGINEERING, SECOND CYCLE, 30 CREDITS STOCKHOLM, SWEDEN 2018 Secure Blockchain Network Communication using SCION ALEKSANDAR VORKAPIC KTH ROYAL INSTITUTE OF TECHNOLOGY SCHOOL OF ELECTRICAL ENGINEERING AND COMPUTER SCIENCE Secure Blockchain Network Communication using SCION ALEKSANDAR VORKAPIC´ Master in Computer Science Date: December 5, 2018 Supervisor: Panos Papadimitratos Examiner: Mads Dam Principal: Adrian Perrig, ETH Zürich Swedish title: Säker nätverkskommunikation för blockkedja med hjälp av SCION School of Electrical Engineering and Computer Science i Abstract The paper by Apostolaki, Zohar, and Vanbever [3] describes two rout- ing attacks on the Bitcoin network, partition attack and delay attack. By isolating parts of the network or delaying block propagation, a sig- nificant amount of mining power could be wasted, resulting in rev- enue loss and a wide range of exploits could be enabled, such as dou- ble spending. Hence, the Bitcoin’s solution to the double spending problem would be broken, making the technology unreliable and un- available. The Border Gateway Protocol (BGP) is the standardized routing protocol in the current Internet, without any security guarantees. Nu- merous security extensions have been proposed for BGP, but there is still no widely deployed solution. Therefore, some argue that instead of securing BGP, an entirely new inter-domain architecture should be developed. The thesis investigates the possible mitigation of routing attacks in the blockchain technology, by using the new inter-domain architec- ture called SCION. Two solutions are proposed utilizing SCION and IP, namely an application level solution and a SIG proxy solution. The solutions have been evaluated in terms of security, availability and efficiency, with the conclusion that routing attacks can be mitigated using SCION.
    [Show full text]
  • Istrinternet Security Threat Report Volume
    ISTRInternet Security Threat Report Volume 23 01 Introduction Page 2 ISTR April 2017 THE DOCUMENT IS PROVIDED “AS IS” AND ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD TO BE LEGALLY INVALID. SYMANTEC CORPORATION SHALL NOT BE LIABLE FOR INCIDENTAL OR CONSEQUENTIAL DAMAGES IN CONNECTION WITH THE FURNISHING, PERFORMANCE, OR USE OF THIS DOCUMENT. THE INFORMATION CONTAINED IN THIS DOCUMENT IS SUBJECT TO CHANGE WITHOUT NOTICE. INFORMATION OBTAINED FROM THIRD PARTY SOURCES IS BELIEVED TO BE RELIABLE, BUT IS IN NO WAY GUARANTEED. SECURITY PRODUCTS, TECHNICAL SERVICES, AND ANY OTHER TECHNICAL DATA REFERENCED IN THIS DOCUMENT (“CONTROLLED ITEMS”) ARE SUBJECT TO U.S. EXPORT CONTROL AND SANCTIONS LAWS, REGULATIONS AND REQUIREMENTS, AND MAY BE SUBJECT TO EXPORT OR IMPORT REGULATIONS IN OTHER COUNTRIES. YOU AGREE TO COMPLY STRICTLY WITH THESE LAWS, REGULATIONS AND REQUIREMENTS, AND ACKNOWLEDGE THAT YOU HAVE THE RESPONSIBILITY TO OBTAIN ANY LICENSES, PERMITS OR OTHER APPROVALS THAT MAY BE REQUIRED IN ORDER FOR YOU TO EXPORT, RE-EXPORT, TRANSFER IN COUNTRY OR IMPORT SUCH CONTROLLED ITEMS. Back to Table of Contents 01 Introduction 03 Facts and Figures Executive Summary Malware Big Numbers Web Threats Methodology Email Vulnerabilities Targeted Attacks 02 Year in Review Mobile Threats The Cyber Crime Threat Landscape Internet of Things Targeted Attacks by Numbers
    [Show full text]
  • Multiple Origin Ases Identification for IP Prefix Hijacking and Mis
    Poster: MOAI: Multiple Origin ASes Identification for IP Prefix Hijacking and Mis-Origination Hironori Imai Masayuki Okada Akira Kanaoka Toho University Japan Network Information Center (JPNIC) Toho University [email protected] [email protected] [email protected] TABLE I. ADVERTISEMENT TYPE (AT) CLASSIFICATION I. INTRODUCTION AT IP Prefix in update AS number in update In BGP, which controls the Internet routing information, AT1 Not Found - AT2 Exact Match in Full Route Match in Full Route the presence of inappropriate routing information in advertise- AT3 Exact Match in Full Route Differ from Full Route ments is a significant problem. Inappropriate route advertising AT4 Included in Full Route Match in Full Route in BGP is called Mis-Origination. In this research, we focused AT5 Included in Full Route Differ from Full Route on IP Prefix Hijacking caused by IP prefix collisions, which is a typical case of Mis-Origination. The existence of Mis- origination has been pointed out[1], [2], and prevention and II. MOAI OVERVIEW detection methods have been actively studied. IP prefix con- flicts are caused by Multiple Origin ASs (MOAS), in which Fig.1 shows an overview of the proposed method. First, the IP address range is advertised by multiple ASs. In recent information about the two types of routes is obtained from years, services have diversified, such as DDoS mitigation and the BGP monitoring infrastructure, such as RIPE RIS and IP address leasing, and they are generating MOAS with a RouteViews. One is the full route, which is all the route clear intention without malice.
    [Show full text]
  • The 11Th Workshop on Active Internet Measurements (AIMS-11) Workshop Report
    The 11th Workshop on Active Internet Measurements (AIMS-11) Workshop Report kc claffy David Clark UCSD/CAIDA MIT/CSAIL [email protected] [email protected] This article is an editorial note submitted to CCR. It has NOT been peer reviewed. The authors take full responsibility for this article’s technical content. Comments can be posted through CCR Online. ABSTRACT as destinations for some experiments and the basis for more com- On 16-17 April 2018, CAIDA hosted its eleventh Workshop on plex measurements. The RIPE NCC currently hold about 66TB of Active Internet Measurements (AIMS-11). This workshop series compressed measurement data, and operates an internal, private, provides a forum for stakeholders in Internet active measurement Hadoop cluster for analysis of accumulated measurements and projects to communicate their interests and concerns, and explore metadata. Query execution can be slow, and maintenance is ex- cooperative approaches to maximizing the collective benefit of de- pensive, relying on multiple specialists to manage software and ployed infrastructure and gathered data. An overarching theme this hardware sysetms. For external users, public results are available year was scaling the storage, indexing, annotation, and usage of in bulk via FTP, or via an API, but with no query interface. Stephen Internet measurements. We discussed tradeoffs in use of commer- Strowes (RIPE NCC, visiting CAIDA this year) reported on a new cial cloud services to to make measurement results more accessible experiment led by Elena Dominguez (RIPE NCC) to put RIPE Atlas and informative to researchers in various disciplines. Other agenda measurements in the Google Cloud (BigQuery) Platform, to improve topics included status updates on recent measurement infrastruc- query performance, improve service availability, and reduce oper- tures and community feedback; measurement of poorly configured ating costs, for both internal (to RIPE) and community use.
    [Show full text]
  • Routing Security in Latin America and the Caribbean Table of Contents
    Routing Security in Latin America and the Caribbean Table of Contents Acknowledgments 3 Introduction 4 What is at Stake? 5 Types of incidents 8 Route Hijacking (BGP Hijacking) 9 Route Leaks (BGP Leaks) 10 Incidents Timeline 12 Event Analysis 15 Methodology 15 Numbers around the World 16 Numbers in the Region 27 Events by Country 28 Rankings in Latin America 35 Mitigation Strategies 36 Initiatives 38 FORT Project 39 Conclusion 40 Annexes 41 Number of Incidents by Month around the World 41 2017 Statistics 42 2018 Statistics 46 2 Acknowledgments Author: Augusto Luciano Mathurin Supervisors: Carolina Caeiro Guillermo Cicileo Reviewers: Carlos Martinez-Cagnazzo Raúl Ramirez Castañeda Style Editor: María Eugenia Martínez Graphic Designer: Martin Mañana English Translator: Justina Díaz Cornejo Collaborators: Andrei RoBachevsky Gerardo Pias Mariela Rocha 3 Introduction Routing is one of the few components of Internet infrastructure that is still insecure. Nowadays, it is easy to hijack routing systems to Block weBsites, spy on users and redirect traffic to false destinations. These vulneraBilities may affect the free flow of information around the world and pose a threat to the security and privacy of users. Internet standardization Bodies have Been struggling for a long time to identify strategies that make routing more secure. The purpose of this three-part report is to help us address and understand this issue both globally and in our region. ● Firstly, as an introduction, this report explains that the Internet can Be the target of various attacks of very diverse technical characteristics, and then moves on to routing infrastructure attacks that Become incidents: hijacks and leaks in the BGP protocol.
    [Show full text]
  • The Hidden Story of China Telecom's BGP Hijacking
    Military Cyber Affairs Volume 3 Issue 1 Article 7 2018 China’s Maxim – Leave No Access Point Unexploited: The Hidden Story of China Telecom’s BGP Hijacking Chris C. Demchak U.S. Naval War College, [email protected] Yuval Shavitt Tel Aviv University, [email protected] Follow this and additional works at: https://scholarcommons.usf.edu/mca Part of the International Relations Commons Recommended Citation Demchak, Chris C. and Shavitt, Yuval (2018) "China’s Maxim – Leave No Access Point Unexploited: The Hidden Story of China Telecom’s BGP Hijacking," Military Cyber Affairs: Vol. 3 : Iss. 1 , Article 7. https://www.doi.org/https://doi.org/10.5038/2378-0789.3.1.1050 Available at: https://scholarcommons.usf.edu/mca/vol3/iss1/7 This Article is brought to you for free and open access by Scholar Commons. It has been accepted for inclusion in Military Cyber Affairs by an authorized editor of Scholar Commons. For more information, please contact [email protected]. China’s Maxim – Leave No Access Point Unexploited: The Hidden Story of China Telecom’s BGP Hijacking Cover Page Footnote The views and ideas expressed here are the authors alone, and do not represent those of the Department of Defense, U.S. Navy, or U.S. Naval War College. Erratum A revised article was uploaded including a disclaimer. This article is available in Military Cyber Affairs: https://scholarcommons.usf.edu/mca/vol3/iss1/7 Demchak and Shavitt: China’s Maxim – Leave No Access Point Unexploited China’s Maxim – Leave No Access Point Unexploited: The Hidden Story of China Telecom’s BGP Hijacking Chris C.
    [Show full text]
  • BGP Security and the Future
    BGP security and the future A meta-analysis of BGP threats and security to provide a new direction for practical BGP se- curity T.R. van Rossum BGP security and the future A meta-analysis of BGP threats and security to provide a new direction for practical BGP security by T.R. van Rossum to obtain the degree of Master of Science at the Delft University of Technology, to be defended publicly on October 15, 2020 at 13:00. Student number: 4246306 Project duration: March 1, 2019 – October 15, 2020 Thesis committee: Dr. C. Doerr, TU Delft, supervisor, chair Dr. S. Picek, TU Delft Dr. K. Hildebrandt, TU Delft This thesis is confidential and cannot be made public until October 14, 2021. An electronic version of this thesis is available at http://repository.tudelft.nl/. Abstract The Internet consists of many subnetworks, which are connected to each other. These subnetworks are the autonomous systems (ASes) that make up the Internet: each hosts a part of it. In order to successfully deter- mine routes from one of these ASes to the other, the Border Gateway Protocol (BGP) is used. This protocol has several security flaws however, and exploitation of them has lead to parts of the Internet being temporarily unreachable. In order to combat these flaws, several security solutions have been developed already. However, none of these have been deployed on a wide scale yet. As such, this thesis focuses on the question: why not, and what can be done to protect BGP in the future? This thesis includes an analysis of the BGP threat landscape, to find which threats are most relevant, and to find out whether or not solutions have adapted to the threat landscape.
    [Show full text]