Eclipse Attacks on Bitcoin's Peer-To-Peer Network

Total Page:16

File Type:pdf, Size:1020Kb

Eclipse Attacks on Bitcoin's Peer-To-Peer Network Eclipse Attacks on Bitcoin’s Peer-to-Peer Network Ethan Heilman and Alison Kendler, Boston University; Aviv Zohar, The Hebrew University of Jerusalem and MSR Israel; Sharon Goldberg, Boston University https://www.usenix.org/conference/usenixsecurity15/technical-sessions/presentation/heilman This paper is included in the Proceedings of the 24th USENIX Security Symposium August 12–14, 2015 • Washington, D.C. ISBN 978-1-939133-11-3 Open access to the Proceedings of the 24th USENIX Security Symposium is sponsored by USENIX Eclipse Attacks on Bitcoin’s Peer-to-Peer Network † Ethan Heilman∗ Alison Kendler∗ Aviv Zohar Sharon Goldberg∗ † ∗Boston University Hebrew University/MSR Israel Abstract used to broadcast information between bitcoin nodes (see Section 8). The bitcoin peer-to-peer network, which We present eclipse attacks on bitcoin’s peer-to-peer net- is bundled into the core bitcoind implementation, aka., work. Our attack allows an adversary controlling a suffi- the Satoshi client, is designed to be open, decentralized, cient number of IP addresses to monopolize all connec- and independent of a public-key infrastructure. As such, tions to and from a victim bitcoin node. The attacker can cryptographic authentication between peers is not used, then exploit the victim for attacks on bitcoin’s mining and nodes are identified by their IP addresses (Section 2). and consensus system, including N-confirmation double Each node uses a randomized protocol to select eight spending, selfish mining, and adversarial forks in the peers with which it forms long-lived outgoing connec- blockchain. We take a detailed look at bitcoin’s peer- tions, and to propagate and store addresses of other po- to-peer network, and quantify the resources involved in tential peers in the network. Nodes with public IPs also our attack via probabilistic analysis, Monte Carlo simu- accept up to 117 unsolicited incoming connections from lations, measurements and experiments with live bitcoin any IP address. Nodes exchange views of the state of the nodes. Finally, we present countermeasures, inspired by blockchain with their incoming and outgoing peers. botnet architectures, that are designed to raise the bar for eclipse attacks while preserving the openness and decen- Eclipse attacks. This openness, however, also makes it tralization of bitcoin’s current network architecture. possible for adversarial nodes to join and attack the peer- to-peer network. In this paper, we present and quantify the resources required for eclipse attacks on nodes with 1 Introduction public IPs running bitcoind version 0.9.3. In an eclipse attack [27, 61, 62], the attacker monopolizes all of the While cryptocurrency has been studied since the victim’s incoming and outgoing connections, thus iso- 1980s [22, 25, 28], bitcoin is the first to see widespread lating the victim from the rest of its peers in the net- adoption.A key reason for bitcoin’s success is its baked- work. The attacker can then filter the victim’s view in decentralization. Instead of using a central bank to of the blockchain, force the victim to waste compute regulate currency, bitcoin uses a decentralized network power on obsolete views of the blockchain, or coopt of nodes that use computational proofs-of-work to reach the victim’s compute power for its own nefarious pur- consensus on a distributed public ledger of transactions, poses (Section 1.1). We present off-path attacks, where aka., the blockchain. Satoshi Nakamoto [52] argues that the attacker controls endhosts, but not key network in- bitcoin is secure against attackers that seek to shift the frastructure between the victim and the rest of the bit- blockchain to an inconsistent/incorrect state, as long as coin network. Our attack involves rapidly and repeatedly these attackers control less than half of the computa- forming unsolicited incoming connections to the victim tional power in the network. But underlying this security from a set of endhosts at attacker-controlled IP addresses, analysis is the crucial assumption of perfect information; sending bogus network information, and waiting until the namely, that all members of the bitcoin ecosystem can victim restarts (Section 3). With high probability, the observe the proofs-of-work done by their peers. victim then forms all eight of its outgoing connections to While the last few years have seen extensive research attacker-controlled addresses, and the attacker also mo- into the security of bitcoin’s computational proof-of- nopolizes the victim’s 117 incoming connections. work protocol e.g., [14, 29, 36, 37, 45, 49, 50, 52, 58, 60], Our eclipse attack uses extremely low-rate TCP con- less attention has been paid to the peer-to-peer network nections, so the main challenge for the attacker is to 1 USENIX Association 24th USENIX Security Symposium 129 obtain a sufficient number of IP addresses (Section 4). 1.1 Implications of eclipse attacks We consider two attack types: (1) infrastructure attacks, modeling the threat of an ISP, company, or nation-state Apart from disrupting the bitcoin network or selectively that holds several contiguous IP address blocks and seeks filtering a victim’s view of the blockchain, eclipse attacks to subvert bitcoin by attacking its peer-to-peer network, are a useful building block for other attacks. and (2) botnet attacks, launched by bots with addresses in Engineering block races. A block race occurs when diverse IP address ranges. We use probabilistic analysis, two miners discover blocks at the same time; one block (Section 4) measurements (Section 5), and experiments will become part of the blockchain, while the other “or- on our own live bitcoin nodes (Section 6) to find that phan block” will be ignored, yielding no mining rewards while botnet attacks require far fewer IP addresses, there for the miner that discovered it. An attacker that eclipses are hundreds of organizations that have sufficient IP re- many miners can engineer block races by hording blocks sources to launch eclipse attacks (Section 4.2.1). For ex- discovered by eclipsed miners, and releasing blocks to ample, we show how an infrastructure attacker with 32 both the eclipsed and non-eclipsed miners once a com- distinct /24 IP address blocks (8192 address total), or a peting block has been found. Thus, the eclipsed miners botnet of 4600 bots, can always eclipse a victim with at waste effort on orphan blocks. least 85% probability; this is independent of the number Splitting mining power. Eclipsing an x-fraction of of nodes in the network. Moreover, 400 bots sufficed in miners eliminates their mining power from the rest of tests on our live bitcoin nodes. To put this in context, the network, making it easier to launch mining attacks if 8192 attack nodes joined today’s network (containing (e.g., the 51% attack [52]). To hide the change in min- 7200 public-IP nodes [4]) and honestly followed the ≈ ing power under natural variations [19], miners could be peer-to-peer protocol, they could eclipse a target with 8192 8 eclipsed gradually or intermittently. probability about ( 7200+8192 ) = 0.6%. Our attack is only for nodes with public IPs; nodes Selfish mining. With selfish mining [14,29,37,60], the with private IPs may be affected if all of their outgoing attacker strategically withholds blocks to win more than connections are to eclipsed public-IP nodes. its fair share of mining rewards. The attack’s success is parameterized by two values: α, the ratio of mining Countermeasures. Large miners, merchant clients power controlled by the attacker, and γ, the ratio of hon- and online wallets have been known to modify bit- est mining power that will mine on the attacker’s blocks coin’s networking code to reduce the risk of network- during a block race. If γ is large, then α can be small. By based attacks. Two countermeasures are typically rec- eclipsing miners, the attacker increases γ, and thus de- ommended [3]: (1) disabling incoming connections, and creases α so that selfish mining is easier. To do this, the (2) choosing ‘specific’ outgoing connections to well- attacker drops any blocks discovered by eclipsed miners connected peers or known miners (i.e., use whitelists). that compete with the blocks discovered by the selfish However, there are several problems with scaling this to miners. Next, the attacker increases γ by feeding only the full bitcoin network. First, if incoming connections the selfish miner’s view of the blockchain to the eclipsed are banned, how do new nodes join the network? Sec- miner; this coopts the eclipsed miner’s compute power, ond, how does one decide which ‘specific’ peers to con- using it to mine on the selfish-miner’s blockchain. nect to? Should bitcoin nodes form a private network? If so, how do they ensure compute power is sufficiently Attacks on miners can harm the entire bitcoin ecosys- decentralized to prevent mining attacks? tem; mining pools are also vulnerable if their gateways Indeed, if bitcoin is to live up to its promise as an open to the public bitcoin network can be eclipsed. Eclipsing and decentralized cryptocurrency, we believe its peer-to- can also be used for double-spend attacks on non-miners, peer network should be open and decentralized as well. where the attacker spends some bitcoins multiple times: Thus, our next contribution is a set of countermeasures 0-confirmation double spend. In a 0-confirmation that preserve openness by allowing unsolicited incom- transaction, a customer pays a transaction to a mer- ing connections, while raising the bar for eclipse attacks chant who releases goods to the customer before seeing (Section 7). Today, an attacker with enough addresses a block confirmation i.e., seeing the transaction in the can eclipse any victim that accepts incoming connections blockchain [18].
Recommended publications
  • A Probe Survey of Bitcoin Transactions Through Analysis of Advertising in an On-Line Discussion Forum
    Acta Informatica Pragensia, 2019, 8(2), 112–131 DOI: 10.18267/j.aip.127 Original Article A Probe Survey of Bitcoin Transactions Through Analysis of Advertising in an On-Line Discussion Forum Zoltan Ban 1, Jan Lansky 1, Stanislava Mildeova 1, Petr Tesar 1 Abstract Cryptocurrencies have become a major phenomenon in recent years. For IT, a breakthrough is both the cryptocurrency itself as a commodity and the technology that cryptocurrency development has brought. The article focuses on the bitcoin cryptocurrency as the most important cryptocurrency. A relatively unexplored topic is what goods or services are purchased for bitcoins. To track what bitcoins are spent on, it is necessary to look for places that are dedicated to trading cryptocurrencies. The bitcointalk.org forum was chosen as a source for our data mining. The aim of the article is to find an answer to the research question: What are bitcoins on the discussion forum bitcointalk.org planned to be spent on? As part of the research, an application was developed using a PHP script to gather information from the discussion forum (bitcointalk.org). There is some evidence which suggests what types of products or services people spend cryptocurrencies on. This research has proven that cryptocurrencies are used to buy and sell goods or services in the electronics and computer world segments. Today, these segments are widespread, which may speed up the integration of cryptocurrencies into everyday life. This applies, of course, only if the risks associated with cryptocurrencies do not increase. Keywords: Cryptocurrency, Bitcoin, On-Line Advertisement, Text Mining, Cybersecurity, Discussion Forum.
    [Show full text]
  • Download Criminal Complaint Filed in the Eastern District of California
    AO 91 (Rev. 11/11) Criminal Complaint UNITED STATES DISTRICT COURT for the Eastern District of California United States of America ) V. ) MARCOS PAULO DE OLIVEIRA­ ) Case No. ANNIBALE, ) aka "Med3lin," ) aka "Med3lln," ) aka "Med3lln WSM" ) Defendant(s) CRIMINAL COMPLAINT I, the complainant in this case, state that the following is true to the best of my knowledge and belief. On or about the date( s) of October 2017 through April 2019__ in the county of Sacramento in the Eastern District of California , and elsewhere, the defendant(s) violated: Code Section Offense Description 21 U.S.C. §§ 841 and 846 Distribution and Conspiracy to Distribute Controlled Substances 18 U.S.C. §§ 1956 and 1957 Money Laundering This criminal complaint is based on these facts: (see attachment) IX! Continued on the attached sheet. -j- ;1 ·) / , / l 1 - • / L ',;;;_ . _/__I-- / Complainant's signature JAY D. DIAL, Jr., Special Agent Dl'llg Enforcem~_11t Ad111inistration Printed name and title Sworn to before me and signed in my presence. ;]t "-" ' Date: l.2 _/,_ I ---=- (.___ ,,--- "'-~ Judge 's signature City and state: Sacramento, CA Allls__on Claire, U_.§~ Magi~trate__.J__udge Printed name and title AO 91 (Rev. 11/11) Criminal Complaint UNITED STATES DISTRICT COURT for the Eastern District of California United States of America ) V. ) MARCOS PAULO DE OLIVEIRA­ ) Case No. ANNIBALE, ) aka "Med3lin," ) aka "Med3l1n," ) aka "Med3lln_WSM" ) Defendant(s) CRIMINAL COMPLAINT I, the complainant in this case, state that the following is true to the best of my knowledge and belief. On or about the date(s) of ~tober 20 I 7 through April 2019_ in the county of .
    [Show full text]
  • Transparent and Collaborative Proof-Of-Work Consensus
    StrongChain: Transparent and Collaborative Proof-of-Work Consensus Pawel Szalachowski, Daniël Reijsbergen, and Ivan Homoliak, Singapore University of Technology and Design (SUTD); Siwei Sun, Institute of Information Engineering and DCS Center, Chinese Academy of Sciences https://www.usenix.org/conference/usenixsecurity19/presentation/szalachowski This paper is included in the Proceedings of the 28th USENIX Security Symposium. August 14–16, 2019 • Santa Clara, CA, USA 978-1-939133-06-9 Open access to the Proceedings of the 28th USENIX Security Symposium is sponsored by USENIX. StrongChain: Transparent and Collaborative Proof-of-Work Consensus Pawel Szalachowski1 Daniel¨ Reijsbergen1 Ivan Homoliak1 Siwei Sun2;∗ 1Singapore University of Technology and Design (SUTD) 2Institute of Information Engineering and DCS Center, Chinese Academy of Sciences Abstract a cryptographically-protected append-only list [2] is intro- duced. This list consists of transactions grouped into blocks Bitcoin is the most successful cryptocurrency so far. This and is usually referred to as a blockchain. Every active pro- is mainly due to its novel consensus algorithm, which is tocol participant (called a miner) collects transactions sent based on proof-of-work combined with a cryptographically- by users and tries to solve a computationally-hard puzzle in protected data structure and a rewarding scheme that incen- order to be able to write to the blockchain (the process of tivizes nodes to participate. However, despite its unprece- solving the puzzle is called mining). When a valid solution dented success Bitcoin suffers from many inefficiencies. For is found, it is disseminated along with the transactions that instance, Bitcoin’s consensus mechanism has been proved to the miner wishes to append.
    [Show full text]
  • 3Rd Global Cryptoasset Benchmarking Study
    3RD GLOBAL CRYPTOASSET BENCHMARKING STUDY Apolline Blandin, Dr. Gina Pieters, Yue Wu, Thomas Eisermann, Anton Dek, Sean Taylor, Damaris Njoki September 2020 supported by Disclaimer: Data for this report has been gathered primarily from online surveys. While every reasonable effort has been made to verify the accuracy of the data collected, the research team cannot exclude potential errors and omissions. This report should not be considered to provide legal or investment advice. Opinions expressed in this report reflect those of the authors and not necessarily those of their respective institutions. TABLE OF CONTENTS FOREWORDS ..................................................................................................................................................4 RESEARCH TEAM ..........................................................................................................................................6 ACKNOWLEDGEMENTS ............................................................................................................................7 EXECUTIVE SUMMARY ........................................................................................................................... 11 METHODOLOGY ........................................................................................................................................ 14 SECTION 1: INDUSTRY GROWTH INDICATORS .........................................................................17 Employment figures ..............................................................................................................................................................................................................17
    [Show full text]
  • EY Study: Initial Coin Offerings (Icos) the Class of 2017 – One Year Later
    EY study: Initial Coin Offerings (ICOs) The Class of 2017 – one year later October 19, 2018 In December 2017, we analyzed the top ICOs that represented 87% ICO funding in 2017. In that report, we found high risks of fraud, theft and major problems with the accuracy of representations made by start-ups seeking funding. In this follow-up study, we revisit the same group of companies to analyze their progress and investment return: ► The performance of ICOs from The Class of 2017 did little to inspire confidence.1 ► 86% are now below their listing2 price; 30% have lost substantially all value. Executive An investor purchasing a portfolio of The Class of 2017 ICOs on 1 January 2018 would most likely have lost 66% of their investment. ► Of the ICO start-ups we looked at from The Class of 2017, only 29% (25) have summary working products or prototypes, up by just 13% from the end of last year. Of those 25, seven companies accept payment in both traditional fiat currency (dollars) as well as ICO tokens, a decision that reduces the value of the tokens to the holders. ► There were gains among The Class of 2017, concentrated in 10 ICO tokens, most of which are in the blockchain infrastructure category. However, there is no sign that these new projects have had any success in reducing the dominance of Ethereum as the industry’s main platform. • 1 See methodology in appendix. • 2 Defined as when first available to trade on a cryptocurrency exchange. 02 ICO performance update ICOs broke out in 2017.
    [Show full text]
  • FTC Decrypting Cryptocurrency Scams Workshop Transcript
    FTC Decrypting Cryptocurrency Scams Workshop June 25, 2018 Transcript JASON ADLER: Good afternoon, everyone and welcome to the Federal Trade Commission's Decrypting Cryptocurrency Scams workshop. I'm Jason Adler. I'm the assistant director of the FDC's Midwest regional office here in Chicago. I want to thank you all for being here. And I want to thank DePaul University for hosting us. Before we get started, I just have a few housekeeping details to tick off. First, please set your mobile phones to silent. If you use them during the workshop, for example to comment about the workshop on social media, please be respectful of the others here. If you do comment on social media, feel free to use #cryptoscamsftc as a hashtag. We'll be live tweeting this event using that hashtag as well. Webcasting the event today, and it may be photographed or otherwise recorded, by participating you're agreeing that your image and anything you say may be posted at ftc.gov and on our social media sites. At the end of each panel, if we do have time, we'll try to answer audience questions. We have question cards out in the hall. Feel free to write down a question. Raise your hand and someone will collect it. And if we have time at the end of the panel, we'll ask them. We're also accepting questions on Twitter. So you can tweet a question to the FTC, so @FTC using hashtag #cryptoscamsftc. Finally, if you're here for CLE, please be sure and find Dan at the check in table.
    [Show full text]
  • On Scaling Decentralized Blockchains (A Position Paper)
    On Scaling Decentralized Blockchains (A Position Paper) Kyle Croman0;1, Christian Decker4, Ittay Eyal0;1, Adem Efe Gencer0;1, Ari Juels0;2, Ahmed Kosba0;3, Andrew Miller0;3, Prateek Saxena6, Elaine Shi0;1, Emin G¨un Sirer0;1, Dawn Song0;5, and Roger Wattenhofer4 0 Initiative for CryptoCurrencies and Contracts (IC3) 1 Cornell 2 Jacobs, Cornell Tech 3 UMD 4 ETH 5 Berkeley 6 NUS Abstract. The increasing popularity of blockchain-based cryptocurren- cies has made scalability a primary and urgent concern. We analyze how fundamental and circumstantial bottlenecks in Bitcoin limit the abil- ity of its current peer-to-peer overlay network to support substantially higher throughputs and lower latencies. Our results suggest that repa- rameterization of block size and intervals should be viewed only as a first increment toward achieving next-generation, high-load blockchain proto- cols, and major advances will additionally require a basic rethinking of technical approaches. We offer a structured perspective on the design space for such approaches. Within this perspective, we enumerate and briefly discuss a number of recently proposed protocol ideas and offer several new ideas and open challenges. 1 Introduction Increasing adoption of cryptocurrencies has raised concerns about their abil- ity to scale. Since Bitcoin is a self-regulating system that works by discovering blocks at approximate intervals, its highest transaction throughput is effectively capped at maximum block size divided by block interval. The current trend of ever increasing block sizes on Bitcoin portends a potential problem where the sys- tem will reach its maximum capacity to clear transactions, probably by 2017 [46].
    [Show full text]
  • On Scalability of Blockchain Technologies
    ON SCALABILITY OF BLOCKCHAIN TECHNOLOGIES A Dissertation Presented to the Faculty of the Graduate School of Cornell University in Partial Fulfillment of the Requirements for the Degree of Doctor of Philosophy by Adem Efe Gencer August 2017 c 2017 Adem Efe Gencer ALL RIGHTS RESERVED ON SCALABILITY OF BLOCKCHAIN TECHNOLOGIES Adem Efe Gencer, Ph.D. Cornell University 2017 In this dissertation, we explore how to improve scalability of blockchains while maintaining their fundamental premise of decentralization. Scalable blockchains are capable of delivering a target throughput and latency in the presence of increasing workload. To this end, first we present Bitcoin-NG, a new blockchain protocol designed to provide scale for services involving fre- quent, high-volume interactions. This Byzantine fault tolerant blockchain pro- tocol is robust to extreme churn and shares the same trust model as Bitcoin. We experimentally demonstrate that Bitcoin-NG scales optimally, with band- width limited only by the capacity of the individual nodes and latency limited only by the propagation time of the network. Then, we examine the scalabil- ity challenges arising from proliferation of blockchain services. In particular, we observe that due to inherently single-service oriented blockchain protocols, services can bloat the existing blockchains, fail to provide sufficient security, or completely forego the property of trustless auditability. We introduce Aspen, a sharded blockchain protocol that securely scales with increasing number of services. Aspen enables service integration without compromising security — leveraging the trust assumptions — or flooding users with irrelevant messages. Finally, we provide the means to assess the viability of different scaling solu- tions. We develop and utilize custom metrics for evaluating performance and security of blockchain protocols.
    [Show full text]
  • “Satoshi Is Dead. Long Live Satoshi”: the Curious Case of Bitcoin's Creator
    “SATOSHI IS DEAD. LONG LIVE SATOSHI”: THE CURIOUS CASE OF BITCOIN’S CREATOR Mariam Humayun and Russell W. Belk ABSTRACT Purpose: In this paper, we focus on the mythic nature of the anonymous Bitcoin creator, Satoshi Nakamoto. Drawing on ideas from Foucault and Barthes on authorship, we analyze the notion of the absence of the author and how that sustains the brand. Design/methodology/approach: Based on interview data, participant obser- vation, archival data, and a netnography, we examine the discourses that emerge in the wake of multiple Satoshi Nakamoto exposés that serve as both stabilizing and destabilizing forces in the Bitcoin ecosystem. Findings: We analyze the different interpretations of Satoshi Nakamoto through his own text and how his readers interpret him. We identify how consumers employ motifs of myth and religiosity in trying to find meaning in Satoshi’s disappearance. His absence allows for multiple interpretations of how the Bitcoin brand is viewed and adopted by a diverse community of enthusiasts. Consumer Culture Theory Research in Consumer Behavior, Volume 19, 19–35 Copyright © 2018 by Emerald Publishing Limited All rights of reproduction in any form reserved ISSN: 0885-2111/doi:10.1108/S0885-211120180000019002 19 20 MARIAM HUMAYUN AND RUSSELL W. BELK Implications: Our findings provide a richer understanding of how, in a period of celebrity brands, Satoshi Nakamoto’s anti-celebrity stance helps sustain the Bitcoin ecosystem. Originality/value: Our analysis examines the nature of anonymity in our hyper-celebrity culture and the mystique of the anonymous creator that fuels modern-day myths for brands without owners. Keywords: brands; myth; anonymity; privacy; death of the author; anti-celebrity; religiosity; bitcoin; blockchain; Satoshi Nakamoto A legend has emerged from a jumble of facts: Someone using the name Satoshi Nakamoto released the software for Bitcoin in early 2009 and communicated with the nascent cur- rency’s users via email — but never by phone or in person.
    [Show full text]
  • In Re Ripple Labs Inc. Litigation 18-CV-06753-Consolidated
    Case 4:18-cv-06753-PJH Document 63 Filed 08/05/19 Page 1 of 53 1 James Q. Taylor-Copeland (284743) [email protected] 2 TAYLOR-COPELAND LAW 501 W. Broadway, Suite 800 3 San Diego, CA 92101 Telephone: (619) 400-4944 4 Facsimile: (619) 566-4341 5 Marc M. Seltzer (54534) [email protected] 6 Steven G. Sklaver (237612) [email protected] 7 Oleg Elkhunovich (269238) [email protected] 8 Meng Xi (280099) [email protected] 9 SUSMAN GODFREY L.L.P. 1900 Avenue of the Stars, 14th Floor 10 Los Angeles, CA 90067 Telephone: (310) 789-3100 11 Facsimile: (310) 789-3150 12 Counsel for Lead Plaintiff Bradley Sostack 13 UNITED STATES DISTRICT COURT 14 NORTHERN DISTRICT OF CALIFORNIA 15 OAKLAND DIVISION 16 ) Case No. 4:18-cv-06753-PJH 17 In re RIPPLE LABS INC. LITIGATION, ) ) CLASS ACTION 18 ____________________________________ ) ) CONSOLIDATED COMPLAINT FOR 19 This Document Relates To: ) VIOLATIONS OF FEDERAL AND ) CALIFORNIA LAW 20 ALL ACTIONS ) ) 21 ) JURY TRIAL DEMANDED 22 23 24 25 26 27 28 CONSOLIDATED COMPLAINT Case 4:18-cv-06753-PJH Document 63 Filed 08/05/19 Page 2 of 53 1 TABLE OF CONTENTS 2 SUMMARY OF ACTION ...................................................................................................2 3 PARTIES .............................................................................................................................6 4 JURISDICTION AND VENUE ..........................................................................................6 5 SUBSTANTIVE ALLEGATIONS .....................................................................................7
    [Show full text]
  • Proof of Activity: Extending Bitcoin's Proof of Work Via Proof of Stake
    Proof of Activity: Extending Bitcoin's Proof of Work via Proof of Stake Iddo Bentov∗ Charles Lee Alex Mizrahi Meni Rosenfeld Computer Science Dept., Technion Litecoin Project chromawallet.com Israeli Bitcoin Association [email protected] [email protected] [email protected] [email protected] Abstract We propose a new protocol for a cryptocurrency, that builds upon the Bitcoin protocol by combining its Proof of Work component with a Proof of Stake type of system. Our Proof of Activity (PoA) protocol offers good security against possibly practical future attacks on Bitcoin, and has a relatively low penalty in terms of network communication and storage space. We explore various attack scenarios and suggest remedies to potential vulnerabilities of the PoA protocol, as well as evaluate the performance of its core subroutine. 1 Introduction The Bitcoin [33] cryptocurrency continues to gather success since its launch in 2009. As a means of exchange, Bitcoin facilitates fast worldwide transactions with trivial fees and without identity theft risks. As a store of value, Bitcoin entails no counterparty risk and no exposure to manipulation of the money supply by central banks, due to its decentralized nature. Many other features can be derived from Bitcoin's cryptographic foundations, including: resilient forms of secret sharing via multi-signature control over an address [13, 18], non-interactive transactions with other systems via computational integrity proofs [29], off-chain micropay- ment channels [20,36], various types of contracts that are enforced by the distributed network [18], trust-free gambling and multiparty computation [1,2,4], trust-free sale of computed data via zero-knowledge proofs [24], hierarchical wallets that use key homomorphism to minimize access to the private keys [26], decentralized stock exchange and prediction market via colored coins [12, 32], and so on.
    [Show full text]
  • From Hodl to Heist: Analysis of Cyber Security Threats to Bitcoin Exchanges
    From Hodl to Heist: Analysis of Cyber Security Threats to Bitcoin Exchanges Kris Oosthoek Christian Doerr Cyber Threat Intelligence Lab Cyber Threat Intelligence Lab Delft University of Technology Delft University of Technology Delft, The Netherlands Delft, The Netherlands [email protected] [email protected] Abstract—Bitcoin is gaining traction as an alternative store of A high value asset makes a high value attack target. The value. Its market capitalization transcends all other cryptocur- security of Bitcoin is also dependent on the ecosystem that rencies in the market. But its high monetary value also makes it has emerged around it. This consists of exchange platforms, an attractive target to cyber criminal actors. Hacking campaigns usually target the weakest points in an ecosystem. In Bitcoin, payment service providers, wallet providers, mining pools and these are currently the exchange platforms. As each exchange other intermediaries. Each of these is part of a fabric spun breach potentially decreases Bitcoin’s market value by billions, around Bitcoin which unlocks its potential to a broader user it is a threat not only to direct victims, but to everyone owning base, but consequently introduces additional threat vectors. Bitcoin. Based on an extensive analysis of 36 breaches of Bitcoin Cyber criminal actors generally target the weakest points in exchanges, we show the attack patterns used to exploit Bitcoin exchange platforms using an industry standard for reporting the ecosystem. In the Bitcoin ecosystem, these are currently intelligence on cyber security breaches. Based on this we are the centralized exchanges. These act as a broker, allowing able to provide an overview of the most common attack vectors, users to sell cryptocurrencies for fiat currency (legal tender) showing that all except three hacks were possible due to relatively or to exchange the latter for cryptocurrency against a commis- lax security.
    [Show full text]