Namecoin As Alternative to the Domain Name System

Total Page:16

File Type:pdf, Size:1020Kb

Namecoin As Alternative to the Domain Name System Namecoin as alternative to the Domain Name System Xander Lammertink Author, UvA System and Network Engineering [email protected] Marco Davids Supervisor, SIDN Labs bstract: This paper researches if Name- discovered over time. coin could be used as an alternative Numerous additions have been implemented to Ato the DNS. Namecoin offers the same keep the DNS running. Anycast is used to distribute functionality as Bitcoin, but is also able to the load of the 13 static root-server addresses over store data. It is used to store domains, iden- multiple servers spread all over the world, DNSSEC tities, product meta data, etc. We have seen has been specified to ensure the authenticity of the that the DNS is suffering from weaknesses response data, DNS Curve provides authorisation and Namecoin is able to address these under and encryption of DNS responses and many more certain conditions. Organisational roles will additions can be added to this list. be affected by switching from the DNS to Instead of continuing to fix all the \problems" that Namecoin: some will change, some will dis- have been encountered over time, some thought it appear but new roles will arise as well. The might be better to start from scratch or from a whole switch has been discussed as well, we found different perspective to address all these challenges. two transition scenarios that are possible. An example of a system that tries to do this is Namecoin, a distributed open-source information registration and transfer system based on the Bitcoin 1. Introduction cryptocurrency. The Domain Name System (DNS) has been specified 1.1. Research Questions in 1983 and has been the de facto naming system on the Internet ever since. It has proven its robustness This research is all about the potential of Namecoin and sustainability, but some weaknesses have been being an alternative to the Domain Name System. Research Project 2 • UvA System and Network Engineering • SIDN Labs page 1 of 17 We would like to know the differences between the weaknesses of the DNS can be addressed by using DNS and Namecoin, if it can match the robustness Namecoin. of the DNS and what the consequences are for the roles in the DNS. 2. Bitcoin The main research question is: What is the poten- tial of Namecoin as an alternative for the Domain Namecoin is a fork of Bitcoin, the distributed digital Name System? cryptocurrency, with minor changes (± 400 lines of This question has been divided in multiple sub- code) and extra functionality [4]. To understand questions that together answer the main research Namecoin it is important that the Bitcoin concept is question. The sub-questions are: familiar. Therefore a start will be made by describing the Bitcoin concept. In section 3 the differences • How does Namecoin work? between Namecoin and Bitcoin will be discussed. • What are the current shortcomings of the DNS This explanation is not intended to cover all the system? ins and outs of Bitcoin, but that's also not necessary • Which of the shortcomings of the DNS does for the understanding of Namecoin. The interested Namecoin address? reader is advised to read [5] to get a more detailed explanation of Bitcoin. • Can Namecoin match the robustness of the In Bitcoin there are four topics that form the core DNS? of the cryptocurrency: transactions, wallets, mining • What are the consequences for the different or- and the blockchain. Transactions are used to transfer ganisational roles like DNS operators, registrars, Bitcoins (the currency in Bitcoin, also denoted as (root) registries, etc.? BTC) from one to another. A wallet is no more than a set of keys used to sign certain transactions. All • How would a transition scenario from the DNS transactions are stored in blocks, created by miners to Namecoin look like? that compete with each other to submit their blocks first to retrieve Bitcoins. Every block links to the 1.2. Related Work previous block using hashes and contain transactions that link to transactions from other blocks. Up to now there is not much related work on this As one might have noticed already, there is no topic. Some research has been done on using Name- database that stores how much money is in a wallet. coin for certain purposes and an informational RFC Instead, by looking at all historical transactions that (Request for Comment) has been written about the are related to a wallet, a total amount of Bitcoins weaknesses of the DNS. can be calculated. This can be done by others as F. Jacobs [1] did research about Namecoin and well, because all transactions in Bitcoin are available MinimaLT to provide better confidentiality and au- to everyone. thentication on the Internet. Instead of improving the currently used protocols like DNSSEC, TACK 2.1. Transactions and DANE, they proposed to use MinimaLT with Namecoin. Transactions are used to transfer Bitcoins from one T. Melin and T. Vidhall [2] researched if Namecoin to another. This is done by using addresses that are could be used as an authentication mechanism for usually based on public keys. The owner approves public-key cryptography. They investigated the flaws a transaction by signing it with its private key. By and consequences in current public-key cryptography using the public key of the owner, everyone is able and presented Namecoin as alternative to replace the to check the signature and thereby confirm a trans- currently used certificate authority system. action. Most addresses are RIPEMD-160 encoded In RFC 3833 [3] some of the well-known weak- SHA-256 hashes of the public key. Some transactions nesses of the DNS have been discussed. At the time contain unlocking or locking scripts to set conditions this RFC was published, DNSSEC was being devel- on processing the transaction or spending it (e.g. oped although no real design goals were set. By stating the transaction can only take place after a discussing the weaknesses of the traditional DNS certain date or when M out of N keys have signed it was possible to see what DNSSEC improved on the transaction). the current situation. Although Namecoin was not A transaction exists out of (multiple) inputs and discussed in this RFC, it can be useful to see what (multiple) outputs. The inputs are unspent trans- Research Project 2 • UvA System and Network Engineering • SIDN Labs page 2 of 17 actions outputs (UTXO) gathered from previous in- Creating blocks is a compute intensive task. Every coming payments. Like in physical money, one takes block is made by adding transactions from the queue one or more UTXOs totalling the amount to spend to a new block, including a transaction that contains (or more) as input. The outputs are the amount of the mining award and transaction fees. The next Bitcoins to spend to the address of the receiver, pos- step is to calculate a hash over the header repeatedly, sibly more amounts to other receivers and the change changing one parameter (the nonce) every time. This minus a transaction fee to the originating address. process is repeated until the hash is matching the The sum of all transaction inputs minus the sum of criterion that is set. When the hash matches the all transaction outputs is the transaction fee that is criterion, the block is mined and can be distributed taken by the miners that include the transaction into throughout the network. the blocks they produce. The current transaction There is one criterion that the hash should match: fee is 0.0001 Bitcoin per kilobyte. To prioritize a be below a certain value. This value is determined transaction it is possible to increase the fee. by the difficulty. When the difficulty is increased, the hash should match a lower value. Increasing the 2.2. Wallets difficulty will lower the chance that a hash matches the criterion, requiring more time and/or processing Wallets contain one or more cryptographic keys. Us- power. This is called the \proof-of-work" system. A ing these keys transactions can be made or unlocked. miner that can provide a block with a nonce that There are deterministic, undeterministic and hierar- matches the difficulty can prove it has done a lot chical deterministic wallets. The first type contains of work to calculate that block. Because the total private keys that are derived from a single key using a processing power in the Bitcoin network differs, the one-way hash function. Undeterministic wallets have difficulty is re-adjusted every 2.016 blocks to make a collection of randomly generated private keys. The sure every 10 minutes a block will be mined. hierarchical deterministic wallets have parent keys that are used to derive multiple child keys. From 2.4. Blockchain the child keys it is possible to generate grandchild keys. This is done using a one-way function, making When a block has been mined and is sent to the it impossible to derive the parent key from the child network, nodes will try to verify if the nonce results keys. in a matching hash. If the hash matches and the When transactions are made, the transactions transactions are valid as well, the block is considered will be submitted to the connected neighbours (can to be valid and will be added to the blockchain. be any node within the Bitcoin network) and the Because the transactions in a block are linking to neighbours send it to their neighbours, spreading transactions in previous blocks and the new block it through the peer-to-peer network. Every node contains the hash of the previous one, we can say receiving a transaction will check the signature of that the blocks are chaining together, forming the the transaction before sending it to his neighbours.
Recommended publications
  • Linking Wallets and Deanonymizing Transactions in the Ripple Network
    Proceedings on Privacy Enhancing Technologies ; 2016 (4):436–453 Pedro Moreno-Sanchez*, Muhammad Bilal Zafar, and Aniket Kate* Listening to Whispers of Ripple: Linking Wallets and Deanonymizing Transactions in the Ripple Network Abstract: The decentralized I owe you (IOU) transac- 1 Introduction tion network Ripple is gaining prominence as a fast, low- cost and efficient method for performing same and cross- In recent years, we have observed a rather unexpected currency payments. Ripple keeps track of IOU credit its growth of IOU transaction networks such as Ripple [36, users have granted to their business partners or friends, 40]. Its pseudonymous nature, ability to perform multi- and settles transactions between two connected Ripple currency transactions across the globe in a matter of wallets by appropriately changing credit values on the seconds, and potential to monetize everything [15] re- connecting paths. Similar to cryptocurrencies such as gardless of jurisdiction have been pivotal to their suc- Bitcoin, while the ownership of the wallets is implicitly cess so far. In a transaction network [54, 55, 59] such as pseudonymous in Ripple, IOU credit links and transac- Ripple [10], users express trust in each other in terms tion flows between wallets are publicly available in an on- of I Owe You (IOU) credit they are willing to extend line ledger. In this paper, we present the first thorough each other. This online approach allows transactions in study that analyzes this globally visible log and charac- fiat money, cryptocurrencies (e.g., bitcoin1) and user- terizes the privacy issues with the current Ripple net- defined currencies, and improves on some of the cur- work.
    [Show full text]
  • Ethereum Based Domain Name System Using Smart Contracts
    ETHEREUM BASED DOMAIN NAME SYSTEM USING SMART CONTRACTS (BC-DNS) A Project Presented to the faculty of the Department of Computer Science California State University, Sacramento Submitted in partial satisfaction of the requirements for the degree of MASTER OF SCIENCE in Computer Science by Rodney Pinto SPRING 2019 © 2019 Rodney Pinto ALL RIGHTS RESERVED ii ETHEREUM BASED DOMAIN NAME SYSTEM USING SMART CONTRACTS (BC-DNS) A Project by Rodney Pinto Approved by: __________________________________, Committee Chair Dr. Jun Dai. __________________________________, Second Reader Dr. Xuyu Wang. ____________________________ Date iii Student: Rodney Pinto I certify that this student has met the requirements for format contained in the university format manual, and that this project is suitable for shelving in the library and credit is to be awarded for the project. __________________________, Graduate Coordinator ____________________ Dr. Jinsong Ouyang, Ph.D. Date Department of Computer Science iv Abstract of ETHEREUM BASED DOMAIN NAME SYSTEM USING SMART CONTRACTS (BC-DNS) by Rodney Pinto One of the most critical resources that ensure the current working of the internet is the domain name system (DNS). It is a decentralized, hierarchical naming system that is responsible for translating the human-readable domain name to its associated IP address. The use of DNS thus eliminates the need for humans to remember the IP address of all their favorite websites (such as 172.217.6.68 an IPV4 address for google.com). Despite its widespread use, DNS is vulnerable to various security issues. This project focuses on replicating the basic functionality of the existing DNS on the blockchain and deploying it on a peer to peer network making it completely decentralized and, in the process, make it a bit more secure and reliable by addressing few of the security vulnerabilities of the existing system.
    [Show full text]
  • Blocksci: Design and Applications of a Blockchain Analysis Platform
    BlockSci: Design and applications of a blockchain analysis platform Harry Kalodner Steven Goldfeder Alishah Chator [email protected] [email protected] [email protected] Princeton University Princeton University Johns Hopkins University Malte Möser Arvind Narayanan [email protected] [email protected] Princeton University Princeton University ABSTRACT to partition eectively. In fact, we conjecture that the use of a tra- Analysis of blockchain data is useful for both scientic research ditional, distributed transactional database for blockchain analysis and commercial applications. We present BlockSci, an open-source has innite COST [5], in the sense that no level of parallelism can software platform for blockchain analysis. BlockSci is versatile in outperform an optimized single-threaded implementation. its support for dierent blockchains and analysis tasks. It incorpo- BlockSci comes with batteries included. First, it is not limited rates an in-memory, analytical (rather than transactional) database, to Bitcoin: a parsing step converts a variety of blockchains into making it several hundred times faster than existing tools. We a common, compact format. Currently supported blockchains in- describe BlockSci’s design and present four analyses that illustrate clude Bitcoin, Litecoin, Namecoin, and Zcash (Section 2.1). Smart its capabilities. contract platforms such as Ethereum are outside our scope. Second, This is a working paper that accompanies the rst public release BlockSci includes a library of useful analytic and visualization tools, of BlockSci, available at github.com/citp/BlockSci. We seek input such as identifying special transactions (e.g., CoinJoin) and linking from the community to further develop the software and explore addresses to each other based on well-known heuristics (Section other potential applications.
    [Show full text]
  • Merged Mining: Curse Or Cure?
    Merged Mining: Curse or Cure? Aljosha Judmayer, Alexei Zamyatin, Nicholas Stifter, Artemios Voyiatzis, Edgar Weippl SBA Research, Vienna, Austria (firstletterfirstname)(lastname)@sba-research.org Abstract: Merged mining refers to the concept of mining more than one cryp- tocurrency without necessitating additional proof-of-work effort. Although merged mining has been adopted by a number of cryptocurrencies already, to this date lit- tle is known about the effects and implications. We shed light on this topic area by performing a comprehensive analysis of merged mining in practice. As part of this analysis, we present a block attribution scheme for mining pools to assist in the evaluation of mining centralization. Our findings disclose that mining pools in merge-mined cryptocurrencies have operated at the edge of, and even beyond, the security guarantees offered by the underlying Nakamoto consensus for ex- tended periods. We discuss the implications and security considerations for these cryptocurrencies and the mining ecosystem as a whole, and link our findings to the intended effects of merged mining. 1 Introduction The topic of merged mining has received little attention from the scientific community, despite having been actively employed by a number of cryptocurrencies for several years. New and emerging cryptocurrencies such as Rootstock continue to consider and expand on the concept of merged mining in their designs to this day [19]. Merged min- ing refers to the process of searching for proof-of-work (PoW) solutions for multiple cryptocurrencies concurrently without requiring additional computational resources. The rationale behind merged mining lies in leveraging on the computational power of different cryptocurrencies by bundling their resources instead of having them stand in direct competition, and also to serve as a bootstrapping mechanism for small and fledgling networks [27, 33].
    [Show full text]
  • Decentralized Reputation Model and Trust Framework Blockchain and Smart Contracts
    IT 18 062 Examensarbete 30 hp December 2018 Decentralized Reputation Model and Trust Framework Blockchain and Smart contracts Sujata Tamang Institutionen för informationsteknologi Department of Information Technology Abstract Decentralized Reputation Model and Trust Framework: Blockchain and Smart contracts Sujata Tamang Teknisk- naturvetenskaplig fakultet UTH-enheten Blockchain technology is being researched in diverse domains for its ability to provide distributed, decentralized and time-stamped Besöksadress: transactions. It is attributed to by its fault-tolerant and zero- Ångströmlaboratoriet Lägerhyddsvägen 1 downtime characteristics with methods to ensure records of immutable Hus 4, Plan 0 data such that its modification is computationally infeasible. Trust frameworks and reputation models of an online interaction system are Postadress: responsible for providing enough information (e.g., in the form of Box 536 751 21 Uppsala trust score) to infer the trustworthiness of interacting entities. The risk of failure or probability of success when interacting with an Telefon: entity relies on the information provided by the reputation system. 018 – 471 30 03 Thus, it is crucial to have an accurate, reliable and immutable trust Telefax: score assigned by the reputation system. The centralized nature of 018 – 471 30 00 current trust systems, however, leaves the valuable information as such prone to both external and internal attacks. This master's thesis Hemsida: project, therefore, studies the use of blockchain technology as an http://www.teknat.uu.se/student infrastructure for an online interaction system that can guarantee a reliable and immutable trust score. It proposes a system of smart contracts that specify the logic for interactions and models trust among pseudonymous identities of the system.
    [Show full text]
  • Impossibility of Full Decentralization in Permissionless Blockchains
    Impossibility of Full Decentralization in Permissionless Blockchains Yujin Kwon*, Jian Liuy, Minjeong Kim*, Dawn Songy, Yongdae Kim* *KAIST {dbwls8724,mjkim9394,yongdaek}@kaist.ac.kr yUC Berkeley [email protected],[email protected] ABSTRACT between achieving good decentralization in the consensus protocol Bitcoin uses the proof-of-work (PoW) mechanism where nodes earn and not relying on a TTP exists. rewards in return for the use of their computing resources. Although this incentive system has attracted many participants, power has, CCS CONCEPTS at the same time, been significantly biased towards a few nodes, • Security and privacy → Economics of security and privacy; called mining pools. In addition, poor decentralization appears not Distributed systems security; only in PoW-based coins but also in coins that adopt proof-of-stake (PoS) and delegated proof-of-stake (DPoS) mechanisms. KEYWORDS In this paper, we address the issue of centralization in the consen- Blockchain; Consensus Protocol; Decentralization sus protocol. To this end, we first define ¹m; ε; δº-decentralization as a state satisfying that 1) there are at least m participants running 1 INTRODUCTION a node, and 2) the ratio between the total resource power of nodes Traditional currencies have a centralized structure, and thus there run by the richest and the δ-th percentile participants is less than exist several problems such as a single point of failure and corrup- or equal to 1 + ε. Therefore, when m is sufficiently large, and ε and tion. For example, the global financial crisis in 2008 was aggravated δ are 0, ¹m; ε; δº-decentralization represents full decentralization, by the flawed policies of banks that eventually led to many bank which is an ideal state.
    [Show full text]
  • TITLE PAGE Bitcoin and Stock Markets. Are They Connected? Evidence from Asean Emerging Economies Abdollah Ah Mand*1, Hassanudin
    Bitcoin and Stock Markets: Are They Connected? Evidence from Asean Emerging Economies Abdollah Ah Mand ( [email protected] ) Sunway University Hassanudin Mohd Thas Thaker Sunway University Research Keywords: Cryptocurrencies, bitcoin, stock market, emerging economies Posted Date: May 12th, 2020 DOI: https://doi.org/10.21203/rs.3.rs-25524/v1 License: This work is licensed under a Creative Commons Attribution 4.0 International License. Read Full License TITLE PAGE Bitcoin and Stock Markets. Are they Connected? Evidence from Asean Emerging Economies Abdollah Ah Mand*1, Hassanudin Mohd Thas Thaker2 Email of corresponding author: [email protected] 1,2 Sunway University, Malaysia Abstract Background: Cryptocurrencies, especially Bitcoin, has become popular for investors in recent years. The volatility of bitcoin and time horizon are the center point for investment decisions. However, attention is not often drawn to the relationship between bitcoin and equity indices. This study investigates the volatility and time frequency domain of bitcoin among five Asean countries through a rich database which covers daily data from July 2010 until April 2019. Methods: Advanced econometrics and Wavelets Cross-Coherence Spectrograms, this study investigates the existence of long run association between bitcoin and the studied market indices. M-GARCH analysis is been employed to investigate the unconditional volatility of market indices and Bitcoin. Results: The findings present the long run association with positive (Philippines) and negative (Japan, Korea, Singapore, Hong Kong) relations. Moreover, only one market (KOREA) shows a short run association with bitcoin. The M- GARCH analysis reveals, most of the selected Asean countries have a low unconditional volatility with bitcoin.
    [Show full text]
  • Identifier System Attack Mitigation Methodology DATE: 13 February 2017 Identifier System Attack Mitigation Methodology
    Identifier System Attack Mitigation Methodology DATE: 13 February 2017 Identifier System Attack Mitigation Methodology Introduction This document is part of ICANN’s effort to contribute to enhancing the Stability, Security, and Resiliency (SSR) of the Internet’s system of unique identifiers (“Internet Identifiers”) by working with the Community to identify and increase awareness of related attacks and to promote broader adoption of attack mitigation practices. This effort also addresses Recommendation #12 of the Security, Stability & Resiliency (SSR) Review Team (SSR-RT) by creating an Identifier System Attack Mitigation Methodology. Specifically, this document identifies and prioritizes types of attacks against the Identifier System, providing a stepping-off point for ICANN to coordinate with the Community to develop a series of short technical documents (“Tech Notes”) on actual high-impact attacks and emerging high-risk vulnerabilities. This document will be periodically updated to reflect evolution of both the Identifier System and the cybercrime landscape, supporting on-going efforts within both ICANN and the Community to mitigate attacks that pose the greatest risk to Identifier System SSR. Authors: Lisa Phifer and David Piscitello Page 1 Identifier System Attack Mitigation Methodology DATE: 13 February 2017 Attack Mitigation Methodology ICANN is proposing a new Identifier System Attack Mitigation Methodology to: • Identify, prioritize, and periodically refresh a list of top Identifier System attacks; • Develop guidance on actual high-impact attacks and emerging high-risk vulnerabilities; • Describe corresponding attack mitigation practices that are commonly considered useful; and • Encourage broader adoption of those practices via contracts, agreements, incentives, etc. This document represents the first component of this methodology.
    [Show full text]
  • Blockchain-Based Address Alias System
    Article Blockchain-Based Address Alias System Norbert Bodziony , Paweł Jemioło * , Krzysztof Kluza and Marek R. Ogiela AGH University of Science and Technology, Faculty of Electrical Engineering, Automatics, Computer Science and Biomedical Engineering, al. A. Mickiewicza 30, 30-059 Krakow, Poland; [email protected] (N.B.); [email protected] (K.K.); [email protected] (M.R.O.) * Correspondence: [email protected] Abstract: In recent years, blockchains systems have seen massive adoption in retail and enterprise environments. Cryptocurrencies become more widely adopted, and many online businesses have decided to add the most popular ones, like Bitcoin or Ethereum, next to Visa or Mastercard payments. Due to the decentralized nature of blockchain-based systems, there is no possible way to revert confirmed transactions. It may result in losses caused by human error or poor design of the user interface. We created a cryptocurrency wallet with a full on-chain solution for aliasing accounts and tokens to improve user experience and avoid unnecessary errors. The aliasing system consists of a number of smart contracts deployed on top of the blockchain network that give the ability to register aliases to accounts and tokens and use them instead of opaque addresses. Our solution shows how performant modern blockchains are and presents a way of building fully decentralized applications that can compete with centralized ones in terms of performance. Keywords: blockchain; cryptocurrency; wallet; aliasing system; Solana Citation: Bodziony, N.; Jemioło, P.; 1. Introduction Kluza, K.; Ogiela, M.R. Blockchain- Blockchain [1,2] space is one of the most rapidly growing ecosystems right now.
    [Show full text]
  • Thesis That TW-OR Forwards All DNS Queries to a Resolver in China
    The Impact of DNSSEC on the Internet Landscape Von der Fakult¨atf¨urIngenieurwissenschaften, Abteilung Informatik und Angewandte Kognitionswissenschaft der Universit¨atDuisburg-Essen zur Erlangung des akademischen Grades Doktor der Ingenieurwissenschaften genehmigte Dissertation von Matth¨ausWander aus Lubin (L¨uben) Gutachter: Prof. Dr.-Ing. Torben Weis Prof. Dr.-Ing. Felix Freiling Tag der m¨undlichen Pr¨ufung:19. Juni 2015 Abstract In this dissertation we investigate the security deficiencies of the Domain Name System (DNS) and assess the impact of the DNSSEC security extensions. DNS spoofing attacks divert an application to the wrong server, but are also used routinely for blocking access to websites. We provide evidence for systematic DNS spoofing in China and Iran with measurement-based analyses, which allow us to examine the DNS spoofing filters from van- tage points outside of the affected networks. Third-parties in other countries can be affected inadvertently by spoofing-based domain filtering, which could be averted with DNSSEC. The security goals of DNSSEC are data integrity and authenticity. A point solution called NSEC3 adds a privacy assertion to DNSSEC, which is supposed to prevent disclosure of the domain namespace as a whole. We present GPU-based attacks on the NSEC3 privacy assertion, which allow efficient recovery of the namespace contents. We demonstrate with active measurements that DNSSEC has found wide adoption after initial hesitation. At server-side, there are more than five million domains signed with DNSSEC. A portion of them is insecure due to insufficient cryptographic key lengths or broken due to maintenance failures. At client-side, we have observed a worldwide increase of DNSSEC validation over the last three years, though not necessarily on the last mile.
    [Show full text]
  • Popping the Bitcoin Bubble: an Application of Log-Periodic Power Law Modeling to Digital Currency
    Popping the Bitcoin Bubble: An application of log-periodic power law modeling to digital currency Alec MacDonell University of Notre Dame April 1, 2014 Abstract The year 2013 witnessed a remarkable increase in public interest and awareness of digital currencies such as Bitcoin. Hailed by some as the currency of the future, these “cryptocurrencies” have gained notoriety for their use in online black markets, but have yet to gain widespread acceptance. Given their novelty and lack of central regulating authorities, digital currencies experience high volatility and uncertainty regarding value. Taking Bitcoin as a representative example, this paper first uses autoregressive moving average (ARMA) functions to explain trading values, then applies log-periodic power law (LPPL) models in an attempt to predict crashes. The results of ARMA modeling show that Bitcoin values react to the CBOE Volatility Index, suggesting that a primary force currently driving Bitcoin values is speculation by investors looking outside traditional markets. In addition, the LPPL models accurately predict ex-ante the crash that occurred in December 2013, making LPPL models a potentially valuable tool for understanding bubble behavior in digital currencies. *I would like to thank Steven Lugauer for advising me during the research and writing of this paper. His instruction and guidance has been invaluable. Table of Contents 3 Introduction 6 Background 8 Data and ARMA Model Construction 17 Financial Bubbles 20 The LPPL Model 26 Application to December 2013 Bitcoin Crash 29 Conclusions 33 References 2 1 Introduction Traditional instruction in economics teaches that currency takes one of two forms – commodity money or fiat money.
    [Show full text]
  • CS4700/CS5700 Fundamentals of Computer Networks
    CS4700/CS5700 Fundamentals of Computer Networks Lecture 17: Domain Name System Slides used with permissions from Edward W. Knightly, T. S. Eugene Ng, Ion Stoica, Hui Zhang Alan Mislove amislove at ccs.neu.edu Northeastern1 University Human Involvement • Just like your friend needs to tell you his phone number for you to call him • Somehow, an application needs to know the IP address of the communication peer • There is no magic, some out-of-band mechanism is needed – Word of mouth – Read it in the advertisement in the paper – Etc. • But IP addresses are bad for humans to remember and tell each other • So need names that makes some sense to humans Alan Mislove amislove at ccs.neu.edu Northeastern2 University Internet Names & Addresses • Names: e.g. www.rice.edu – human-usable labels for machines – conforms to “organizational” structure • Addresses: e.g. 128.42.247.150 – router-usable labels for machines – conforms to “network” structure • How do you map from one to another? – Domain Name System (DNS) Alan Mislove amislove at ccs.neu.edu Northeastern3 University DNS: History • Initially all host-addess mappings were in a file called hosts.txt (in /etc/hosts) – Changes were submitted to SRI by email – New versions of hosts.txt ftp’d periodically from SRI – An administrator could pick names at their discretion – Any name is allowed: eugenesdesktopatrice • As the Internet grew this system broke down because: – SRI couldn’t handled the load – Hard to enforce uniqueness of names – Many hosts had inaccurate copies of hosts.txt • Domain Name System (DNS) was born Alan Mislove amislove at ccs.neu.edu Northeastern4 University Basic DNS Features • Hierarchical namespace – as opposed to original flat namespace • Distributed storage architecture – as opposed to centralized storage (plus replication) • Client--server interaction on UDP Port 53 – but can use TCP if desired Alan Mislove amislove at ccs.neu.edu Northeastern5 University Naming Hierarchy root edu com gov mil org net uk fr etc.
    [Show full text]