Spoiled Onions: Exposing Malicious Tor Exit Relays

Total Page:16

File Type:pdf, Size:1020Kb

Spoiled Onions: Exposing Malicious Tor Exit Relays Spoiled Onions: Exposing Malicious Tor Exit Relays Philipp Winter Stefan Lindskog Karlstad University Karlstad University Abstract renders it possible for exit relay operators to run vari- ous MitM attacks such as traffic sniffing, DNS poison- Several hundred Tor exit relays together push more than ing, and SSL-based attacks such as HTTPS MitM and 1 GiB/s of network traffic. However, it is easy for exit sslstrip [19]. An additional benefit for attackers is that relays to snoop and tamper with anonymised network exit relays can be set up quickly and anonymously, mak- traffic and as all relays are run by independent volun- ing it very difficult to trace attacks back to their origin. teers, not all of them are innocuous. In this paper, we While it is possible for relay operators to specify con- seek to expose malicious exit relays and document their tact information such as an email address1, this is op- actions. First, we monitored the Tor network after devel- tional. As of January 2014, only 56% out of all 4,962 oping a fast and modular exit relay scanner. We imple- relays publish contact information. Even fewer relays mented several scanning modules for detecting common have valid contact information. attacks and used them to probe all exit relays over a pe- To thwart a number of popular attacks, Tor- riod of four months. We discovered numerous malicious Browser [23]—the Tor Project’s modified version exit relays engaging in different attacks. To reduce the of Firefox—ships with extensions such as HTTPS- attack surface users are exposed to, we further discuss Everywhere [8] and NoScript [14]. While HTTPS- the design and implementation of a browser extension Everywhere provides rules to rewrite HTTP traffic to patch which fetches and compares suspicious X.509 cer- HTTPS traffic, NoScript attempts to prevent many script- tificates over independent Tor circuits. Our work makes based attacks. However, there is little users can do if it possible to continuously monitor Tor exit relays. We web sites implement poor security such as the lack of are able to detect and thwart many man-in-the-middle at- site-wide TLS, session cookies being sent in the clear, or tacks which makes the network safer for its users. All using weak cipher suites in their web server configura- our code is available under a free license. tion. Often, such bad practices enable attackers to spy on users’ traffic or, even worse, hijack accounts. Besides, 1 Introduction TorBrowser cannot protect against attacks targeting pro- tocols such as SSH. arXiv:1401.4917v1 [cs.CR] 20 Jan 2014 As of January 2014, nearly 1,000 exit relays [24] dis- All these attacks are not just of theoretical nature. In tributed all around the globe serve as part of the Tor 2007, a security researcher published 100 POP3 govern- anonymity network [7]. As illustrated in Figure1, the ment credentials he captured by sniffing traffic on a set purpose of these relays is to establish a bridge between of exit relays under his control [22]; supposedly to show the Tor network and the “open” Internet. A user’s Tor the need for end-to-end encryption when using Tor. In circuits, which are encrypted tunnels, terminate at exit Section2, we will discuss additional attacks which were relays and from there, the user’s traffic proceeds to travel found in the wild. over the open Internet to its final destination. Since exit relays can see traffic as it is sent by a Tor user, their 1.1 What Happens to Bad Exits? role is particularly sensitive compared to entry guards and middle relays; especially because traffic frequently The Tor Project has a way to prevent clients from se- lacks end-to-end encryption. lecting bad exit relays as the last hop in their three-hop By design, exit relays act as a “man-in-the-middle” 1Contact information can be useful to get in touch with relay oper- (MitM) in between a user and her destination. This ators, e.g., if they misconfigured their relay. 1 circuits. After a suspected relay is communicated to the Entry guard Encrypted by Tor project, the reported attack is first reproduced. If the at- Not encrypted by Tor tack can be verified, a subset of two (out of all nine) di- Tor client rectory authority operators manually blacklist the relay Tor using Tor’s AuthDirBadExit configuration option. Every network Destination hour, the directory authorities vote on the network con- sensus which is a signed list of all relays, the network is comprised of. Among other information, the consen- Middle relay sus includes the BadExit flag. As long as the majority Exit relay of the authorities responsible for the BadExit flag, i.e., two out of two, agree on the flag being set for a partic- Figure 1: The structure of a three-hop Tor circuit. Exit ular relay, the next network consensus will label the re- relays constitute the bridge between encrypted circuits spective relay as BadExit. After the consensus was then and the open Internet. As a result, exit relay opera- signed by a sufficient number of directory authorities, it tors can see—and tamper with—the anonymised traffic propagates through the network and is eventually used of users. by all Tor clients after a maximum of three hours. From then on, clients will no longer select relays labelled as and implementation of EXITMAP. Section4 then presents BadExit as the last hop in their circuits. Note that this the attacks we discovered in the wild. Next, Section5 does not mean that BadExit relays become effectively proposes the design and implementation of a browser ex- useless. They keep getting selected by clients as their tension patch which can protect against HTTPS MitM entry guards and middle relays. All the malicious relays attacks. Finally, Section6 concludes this paper. we discovered were assigned the BadExit flag. Note that the BadExit flag is not only given to relays which are proven to be malicious. It is also assigned to 2 Related Work relays which are misconfigured or are otherwise unable to fulfil their duty of providing unfiltered Internet access. While MitM attacks have generally received consider- A frequent cause of misconfiguration is the use of third- able attention in the literature [12, 30], their occurrence party DNS resolvers which block certain web site cate- in the Tor network remains largely unexplored. This gories. is unfortunate as the Tor network enables the study of Apart from the BadExit flag, directory authorities can real-world MitM attacks which are rare and poorly doc- blacklist relays by disabling its Valid flag which prevents umented outside the Tor network. clients from selecting the relay for any hop in its circuit. In 2006, Perry began developing the framework This option can be useful to disable relays running a bro- “Snakes on a Tor” (SoaT)[25]. SoaT is a Tor network ken version of Tor or are suspected to engage in end-to- scanner whose purpose—similar to our work—is to de- end correlation attacks. tect misbehaving exit relays. Decoy content is first fetched over Tor, then over a direct Internet connection, 1.2 Contributions and finally compared. Over time, SoaT was extended with support for HTTP, HTTPS, SSH and several other The three main contributions of this paper are as follows. protocols. However, SoaT is no longer maintained and • We discuss the design and implementation of ex- makes use of deprecated libraries. Compared to SoaT, ITMAP; a flexible and fast exit relay scanner which is our design is more flexible and significantly faster. able to detect several popular MitM attacks. Similar to SoaT, Marlinspike implemented tortun- NEL [20]. The tool exposes a local SOCKS interface • Using EXITMAP, we monitored the Tor network over which accepts connections from arbitrary applications. a period of four months. We analyse the attacks we Incoming data is then sent over exit relays using one-hop discovered in the wild during that time period. circuits. By default, EXITMAP does not use one-hop cir- cuits as that could be detected by attackers which could • We propose the design and prototype of a browser then act innocuously. extension patch which fetches and compares X.509 certificates over diverging Tor circuits. That allows A first attempt to detect malicious exit relays was et al. our patch to detect MitM attacks against HTTPS. made in 2008 by McCoy [21]. The authors estab- lished decoy connections to servers under their control. The remainder of this paper is structured as follows. They further controlled the authoritative DNS server re- Section2 begins by giving an overview of related work. sponsible for the decoy hosts’ domain names. As long as It is followed by Section3 which discusses the design an attacker on an exit relay sniffed network traffic with 2 reverse DNS lookups being enabled, the authors were Entry able to map reverse lookups to exit relays by monitor- relay ing the authoritative DNS server’s traffic. Using that side Local Tor et al. channel, McCoy were able to find one exit re- SOCKS control Exit lay sniffing POP3 traffic at port 110. However, attack- port port relays ers could avoid that side channel by disabling reverse lookups. The popular tool TCPDUMP implements the com- probing Stem module mand line switch -n for that exact purpose. exitmap In 2011, Chakravarty et al. [3] attempted to detect exit Decoy relays sniffing Tor users’ traffic by systematically trans- destination mitting decoy credentials over all active exit relays. Over Figure 2: The design of . Our scanner invokes a a period of ten months, the authors uncovered ten relays EXITMAP Tor process and uses the library to control it.
Recommended publications
  • Libressl Presentatie2
    Birth of LibreSSL and its current status Frank Timmers Consutant, Snow B.V. Background What is LibreSSL • A fork of OpenSSL 1.0.1g • Being worked on extensively by a number of OpenBSD developers What is OpenSSL • OpenSSL is an open source SSL/TLS crypto library • Currently the de facto standard for many servers and clients • Used for securing http, smtp, imap and many others Alternatives • Netscape Security Services (NSS) • BoringSSL • GnuTLS What is Heartbleed • Heartbleed was a bug leaking of private data (keys) from both client and server • At this moment known as “the worst bug ever” • Heartbeat code for DTLS over UDP • So why was this also included in the TCP code? • Not the reason to create a fork Why did this happen • Nobody looked • Or at least didn’t admit they looked Why did nobody look • The code is horrible • Those who did look, quickly looked away and hoped upstream could deal with it Why was the code so horrible • Buggy re-implementations of standard libc functions like random() and malloc() • Forces all platforms to use these buggy implementations • Nested #ifdef, #ifndefs (up to 17 layers deep) through out the code • Written in “OpenSSL C”, basically their own dialect • Everything on by default Why was it so horrible? crypto_malloc • Never frees memory (Tools like Valgrind, Coverity can’t spot bugs) • Used LIFO recycling (Use after free?) • Included debug malloc by default, logging private data • Included the ability to replace malloc/free at runtime #ifdef trees • #ifdef, #elif, #else trees up to 17 layers deep • Throughout the complete source • Some of which could never be reached • Hard to see what is or not compiled in 1.
    [Show full text]
  • Black-Box Security Analysis of State Machine Implementations Joeri De Ruiter
    Black-box security analysis of state machine implementations Joeri de Ruiter 18-03-2019 Agenda 1. Why are state machines interesting? 2. How do we know that the state machine is implemented correctly? 3. What can go wrong if the implementation is incorrect? What are state machines? • Almost every protocol includes some kind of state • State machine is a model of the different states and the transitions between them • When receiving a messages, given the current state: • Decide what action to perform • Which message to respond with • Which state to go the next Why are state machines interesting? • State machines play a very important role in security protocols • For example: • Is the user authenticated? • Did we agree on keys? And if so, which keys? • Are we encrypting our traffic? • Every implementation of a protocol has to include the corresponding state machine • Mistakes can lead to serious security issues! State machine example Confirm transaction Verify PIN 0000 Failed Init Failed Verify PIN 1234 OK Verified Confirm transaction OK State machines in specifications • Often specifications do not explicitly contain a state machine • Mainly explained in lots of prose • Focus usually on happy flow • What to do if protocol flow deviates from this? Client Server ClientHello --------> ServerHello Certificate* ServerKeyExchange* CertificateRequest* <-------- ServerHelloDone Certificate* ClientKeyExchange CertificateVerify* [ChangeCipherSpec] Finished --------> [ChangeCipherSpec] <-------- Finished Application Data <-------> Application Data
    [Show full text]
  • Vetting SSL Usage in Applications with SSLINT
    2015 IEEE Symposium on Security and Privacy Vetting SSL Usage in Applications with SSLINT Boyuan He1, Vaibhav Rastogi2, Yinzhi Cao3, Yan Chen2, V.N. Venkatakrishnan4, Runqing Yang1, and Zhenrui Zhang1 1Zhejiang University 2Northwestern University 3Columbia University 4University of Illinois, Chicago [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] Abstract—Secure Sockets Layer (SSL) and Transport Layer In particular, we ask the following research question: Is it Security (TLS) protocols have become the security backbone of possible to design scalable techniques that detect incorrect use the Web and Internet today. Many systems including mobile of APIs in applications using SSL/TLS libraries? This question and desktop applications are protected by SSL/TLS protocols against network attacks. However, many vulnerabilities caused poses the following challenges: by incorrect use of SSL/TLS APIs have been uncovered in recent • Defining and representing correct use. Given an SSL years. Such vulnerabilities, many of which are caused due to poor library, how do we model correct use of the API to API design and inexperience of application developers, often lead to confidential data leakage or man-in-the-middle attacks. In this facilitate detection? paper, to guarantee code quality and logic correctness of SSL/TLS • Analysis techniques for incorrect usage in software. applications, we design and implement SSLINT, a scalable, Given a representation of correct usage, how do we de- automated, static analysis system for detecting incorrect use sign techniques for analyzing programs to detect incorrect of SSL/TLS APIs.
    [Show full text]
  • You Really Shouldn't Roll Your Own Crypto: an Empirical Study of Vulnerabilities in Cryptographic Libraries
    You Really Shouldn’t Roll Your Own Crypto: An Empirical Study of Vulnerabilities in Cryptographic Libraries Jenny Blessing Michael A. Specter Daniel J. Weitzner MIT MIT MIT Abstract A common aphorism in applied cryptography is that cryp- The security of the Internet rests on a small number of open- tographic code is inherently difficult to secure due to its com- source cryptographic libraries: a vulnerability in any one of plexity; that one should not “roll your own crypto.” In par- them threatens to compromise a significant percentage of web ticular, the maxim that complexity is the enemy of security traffic. Despite this potential for security impact, the character- is a common refrain within the security community. Since istics and causes of vulnerabilities in cryptographic software the phrase was first popularized in 1999 [52], it has been in- are not well understood. In this work, we conduct the first voked in general discussions about software security [32] and comprehensive analysis of cryptographic libraries and the vul- cited repeatedly as part of the encryption debate [26]. Conven- nerabilities affecting them. We collect data from the National tional wisdom holds that the greater the number of features Vulnerability Database, individual project repositories and in a system, the greater the risk that these features and their mailing lists, and other relevant sources for eight widely used interactions with other components contain vulnerabilities. cryptographic libraries. Unfortunately, the security community lacks empirical ev- Among our most interesting findings is that only 27.2% of idence supporting the “complexity is the enemy of security” vulnerabilities in cryptographic libraries are cryptographic argument with respect to cryptographic software.
    [Show full text]
  • Xerox® Igen™ 150 Press 3 Party Software License Disclosure
    Xerox® iGen™ 150 Press 3rd Party Software License Disclosure October 2013 The following software packages are copyrighted for use in this product according to the license stated. Full terms and conditions of all 3rd party software licenses are available from the About screen under the Help menu on the Press Interface or by accessing the Support & Drivers page located on the http://www.xerox.com website. Adobe Icons and Web Logos, license: Adobe Icons and Web Logos License Apache log4j 1.2.8, Apache log4j 1.2.9, Apache Web Services XML-RPC 1.2.b1, Apache Lucene Java 1.3, Apache Tomcat 4.1.27, license: Apache License 1.1 Apache Axis 1.x 1.4, Apache Jakarta Commons HttpClient 3.0.alpha1, Apache Jakarta Commons Logging 1.0.4, Apache Jakarta Lucene 1.9.1, Apache XML Security Java 1.3.0, saxpath 1.0 FCS, Skin Look And Feel (skinlf) 1.2.8, Spring Framework Utilities 0.7, Apache Web Services Axis 1.2rc3, Apache Xerces Java XML Parser 2.7.1, Apache XML Xalan-Java 2.7.0, Jetty - Java HTTP Servlet Server 4.0.D0, Lucene Snowball, Streaming API for XML (StAX) - JSR-173 20040819, license: Apache License 2.0 Perl 5.8.5, Perl 5.10.0, AppConfig-1.66, Archive-Tar-1.58, Compress::Zlib-2.020, Expect.pm- 1.21, File-NCopy-0.36, File-NFSLock-1.20, Filesys-Df-0.92, Filesys-DiskFree-0.06, HTML- Parser-3.69, HTML-Tagset-3.20, HTML-Template-2.9, IO-Stty-0.02, IO-Tty-1.08, IO-Zlib- 1.09, libxml-perl-0.08, Net-Netmask-1.9015, Net-Telnet-3.03, perl-5.8.3, perlindex-1.605, Pod- Escapes-1.04, Pod-POM-0.25, Pod-Simple-3.13, Proc-ProcessTable-0.45, Socket6-0.23, Stat-
    [Show full text]
  • Cloudtransport: Using Cloud Storage for Censorship-Resistant Networking
    CloudTransport: Using Cloud Storage for Censorship-Resistant Networking Chad Brubaker1,2, Amir Houmansadr2, and Vitaly Shmatikov2 1 Google 2 The University of Texas at Austin Abstract. Censorship circumvention systems such as Tor are highly vulnerable to network-level filtering. Because the traffic generated by these systems is disjoint from normal network traffic, it is easy to recog- nize and block, and once the censors identify network servers (e.g., Tor bridges) assisting in circumvention, they can locate all of their users. CloudTransport is a new censorship-resistant communication system that hides users’ network traffic by tunneling it through a cloud storage ser- vice such as Amazon S3. The goal of CloudTransport is to increase the censors’ economic and social costs by forcing them to use more expen- sive forms of network filtering, such as large-scale traffic analysis, or else risk disrupting normal cloud-based services and thus causing collateral damage even to the users who are not engaging in circumvention. Cloud- Transport’s novel passive-rendezvous protocol ensures that there are no direct connections between a CloudTransport client and a CloudTrans- port bridge. Therefore, even if the censors identify a CloudTransport connection or the IP address of a CloudTransport bridge, this does not help them block the bridge or identify other connections. CloudTransport can be used as a standalone service, a gateway to an anonymity network like Tor, or a pluggable transport for Tor. It does not require any modifications to the existing cloud storage, is compatible with multiple cloud providers, and hides the user’s Internet destinations even if the provider is compromised.
    [Show full text]
  • Reliable Logging Enhancements in Red Hat Enterprise Linux 6
    Reliable Logging Enhancements in Red Hat Enterprise Linux 6 Rich Jerrido - RHCA, RHCVA – Solutions Architect Logging, why should you care? ● Troubleshooting ● Compliance (PCI, SOX, HIPPA, etc) ● Security ● Auditing ● Because my Red Hat Solutions Architect ™ said so 2 Red Hat Enterprise Linux 6 Rsyslog ● Introduced as optional drop-in replacement for sysklogd in RHEL5.2 ● Default syslog daemon in RHEL6 (version 4.x) ● Designed to be a modern replacement to sysklogd adding features & capabilities 3 Red Hat Enterprise Linux 6 Rsyslog Features ● Rsyslog Features ● Multi-threaded syslog daemon ● TCP, SSL, TLS, RELP ● MySQL, PostgreSQL ● ISO 8601 timestamp support (millisecond granularity and timezone information) ● On-disk queuing ● Componentized design (load only the modules you need) ● Filter any part of syslog message ● Fully configurable output format 4 Red Hat Enterprise Linux 6 RELP ● Reliable Event Logging Protocol ● Not just for syslog ● Similar in purpose to AMQP (Advanced Message Queuing Protocol) - line-level protocol ● Designed to address deficiencies of TCP, mainly that TCP provides reliability at the connection level. RELP provides reliability at the application level. RELP usage implies TCP usage. ● Provided via the rsyslog-relp package. 5 Red Hat Enterprise Linux 6 Security ● GNUTLS ● Provided via the rsyslog-gnutls package ● Provides SSL ● Currently mutually-exclusive with RELP ● Stunnel ● Provides SSL layer encryption of syslog traffic ● Use with rsyslog-relp for best effect (secure + reliable) ● Provides a slew of other features
    [Show full text]
  • Analysis of DTLS Implementations Using Protocol State Fuzzing
    Analysis of DTLS Implementations Using Protocol State Fuzzing Paul Fiterau-Brostean and Bengt Jonsson, Uppsala University; Robert Merget, Ruhr-University Bochum; Joeri de Ruiter, SIDN Labs; Konstantinos Sagonas, Uppsala University; Juraj Somorovsky, Paderborn University https://www.usenix.org/conference/usenixsecurity20/presentation/fiterau-brostean This paper is included in the Proceedings of the 29th USENIX Security Symposium. August 12–14, 2020 978-1-939133-17-5 Open access to the Proceedings of the 29th USENIX Security Symposium is sponsored by USENIX. Analysis of DTLS Implementations Using Protocol State Fuzzing Paul Fiterau-Bro¸stean˘ Bengt Jonsson Robert Merget Joeri de Ruiter Uppsala University Uppsala University Ruhr University Bochum SIDN Labs Konstantinos Sagonas Juraj Somorovsky Uppsala University Paderborn University Abstract reach 11.6 billion by 2021 [26]. This will constitute half of all devices connected to the Internet, with the percentage set to Recent years have witnessed an increasing number of proto- grow in subsequent years. Such trends also increase the need cols relying on UDP. Compared to TCP, UDP offers perfor- to ensure that software designed for these devices is properly mance advantages such as simplicity and lower latency. This scrutinized, particularly with regards to its security. has motivated its adoption in Voice over IP, tunneling techno- DTLS is also used as one of the two security protocols in logies, IoT, and novel Web protocols. To protect sensitive data WebRTC, a framework enabling real-time communication. exchange in these scenarios, the DTLS protocol has been de- WebRTC can be used, for example, to implement video con- veloped as a cryptographic variation of TLS.
    [Show full text]
  • Plaintext-Recovery Attacks Against Datagram TLS
    Plaintext-Recovery Attacks Against Datagram TLS Nadhem J. AlFardan and Kenneth G. Paterson∗ Information Security Group Royal Holloway, University of London, Egham, Surrey TW20 0EX, UK fNadhem.Alfardan.2009, [email protected] Abstract GnuTLS2. Both of these provide source toolkits that imple- ment TLS and DTLS as well as being general purpose cryp- The Datagram Transport Layer Security (DTLS) proto- tographic libraries that software developers can use. The col provides confidentiality and integrity of data exchanged first release of OpenSSL to implement DTLS was 0.9.8. between a client and a server. We describe an efficient and Since its release, DTLS has become a mainstream proto- full plaintext recovery attack against the OpenSSL imple- col in OpenSSL. There are also a number of commercial mentation of DTLS, and a partial plaintext recovery attack products that have taken advantage of DTLS. For example, against the GnuTLS implementation of DTLS. The attack DTLS is used to secure Virtual Private Networks (VPNs)3;4 against the OpenSSL implementation is a variant of Vaude- and wireless traffic5. Platforms such as Microsoft Windows, nay’s padding oracle attack and exploits small timing differ- Microsoft .NET and Linux can also make use of DTLS6. ences arising during the cryptographic processing of DTLS In addition, the number of RFC documents that are be- packets. It would have been prevented if the OpenSSL im- ing published on DTLS is increasing. Recent examples in- plementation had been in accordance with the DTLS RFC. clude RFC 5415 [1], RFC 5953 [8] and RFC 6012 [13]. A In contrast, the GnuTLS implementation does follow the new version of DTLS is currently under development in the DTLS RFC closely, but is still vulnerable to attack.
    [Show full text]
  • The Most Dangerous Code in the World: Validating SSL Certificates In
    The Most Dangerous Code in the World: Validating SSL Certificates in Non-Browser Software Martin Georgiev Subodh Iyengar Suman Jana The University of Texas Stanford University The University of Texas at Austin at Austin Rishita Anubhai Dan Boneh Vitaly Shmatikov Stanford University Stanford University The University of Texas at Austin ABSTRACT cations. The main purpose of SSL is to provide end-to-end security SSL (Secure Sockets Layer) is the de facto standard for secure In- against an active, man-in-the-middle attacker. Even if the network ternet communications. Security of SSL connections against an is completely compromised—DNS is poisoned, access points and active network attacker depends on correctly validating public-key routers are controlled by the adversary, etc.—SSL is intended to certificates presented when the connection is established. guarantee confidentiality, authenticity, and integrity for communi- We demonstrate that SSL certificate validation is completely bro- cations between the client and the server. Authenticating the server is a critical part of SSL connection es- ken in many security-critical applications and libraries. Vulnerable 1 software includes Amazon’s EC2 Java library and all cloud clients tablishment. This authentication takes place during the SSL hand- based on it; Amazon’s and PayPal’s merchant SDKs responsible shake, when the server presents its public-key certificate. In order for transmitting payment details from e-commerce sites to payment for the SSL connection to be secure, the client must carefully verify gateways; integrated shopping carts such as osCommerce, ZenCart, that the certificate has been issued by a valid certificate authority, Ubercart, and PrestaShop; AdMob code used by mobile websites; has not expired (or been revoked), the name(s) listed in the certifi- Chase mobile banking and several other Android apps and libraries; cate match(es) the name of the domain that the client is connecting Java Web-services middleware—including Apache Axis, Axis 2, to, and perform several other checks [14, 15].
    [Show full text]
  • Analysis of Software Vulnerabilities Through Historical Data
    Analysis of software vulnerabilities through historical data Magnus Törnquist [email protected] Department of Electrical and Information Technology Lund University Supervisor: Martin Hell Assistant Supervisor: Jonathan Sönnerup Examiner: Thomas Johansson June 29, 2017 c 2017 Printed in Sweden Tryckeriet i E-huset, Lund Popular science summary Lately there has been increasing media coverage of cyber crime, especially in re- lation to the elections in France and the United States. Every day information is being stolen from governments, businesses and private citizens. Information that can be sold, used for blackmail or for other nefarious purposes. Commonly this information is obtained through exploiting vulnerabilities in software. A vulnera- bility is essentially a bug in the code and they are very hard to avoid, especially in large complex programs. Having vulnerabilities in software is inevitable and software is everywhere: in every computer, router, webcam, mobile device and even in some coffeemakers. As long as these devices are connected an intruder has a wide variety of options on how to attack a network and the fast growth of Internet of Things (IoT) has lead to a huge amount of new devices on networks all over the world. This reality means that larger organizations have to spend a lot of time making sure all their software is updated and keeping track of potential breaches. This also means that it is very important for the software developer to maintain their code and patch any discovered vulnerabilities quickly. So how does an organization, the developer of an IoT product or a regular user choose which software to use if they are concerned about software security and is there a way to help them do it? That is what this thesis explores.
    [Show full text]
  • Samba in Love with Gnutls Samba in Love with Gnutls
    6/6/2019 Samba in love with GnuTLS Samba in love with GnuTLS SambaXP 2019 Andreas Schneider Red Hat Samba Maintainer localhost:8000/?print-pdf#/ 1/51 6/6/2019 Samba in love with GnuTLS About me Free and Open Source Software Developer cmocka - a unit testing framework for C Samba - The domain controller and file server libssh - The SSH Library cwrap - Client/Server testing made easy LineageOS - Android with Privacy Features localhost:8000/?print-pdf#/ 2/51 6/6/2019 Samba in love with GnuTLS 1 What is Samba? localhost:8000/?print-pdf#/ 3/51 6/6/2019 Samba in love with GnuTLS What is Samba? Samba is the software that you probably curse a lot at. localhost:8000/?print-pdf#/ 4/51 6/6/2019 Samba in love with GnuTLS 2 What is GnuTLS? localhost:8000/?print-pdf#/ 5/51 6/6/2019 Samba in love with GnuTLS What is GnuTLS? GnuTLS is the software you will love after this talk. localhost:8000/?print-pdf#/ 6/51 6/6/2019 Samba in love with GnuTLS GnuTLS is ... Secure communication library for C Implements TLS protocol and sourrounding technology Mostly uses the nettle library for low level crypto Provides more hardware-accelerated implementation of different ciphers localhost:8000/?print-pdf#/ 7/51 6/6/2019 Samba in love with GnuTLS 3 Why GnuTLS? localhost:8000/?print-pdf#/ 8/51 6/6/2019 Samba in love with GnuTLS Why do we use GnuTLS? Samba already uses GnuTLS for LDAP over TLS. localhost:8000/?print-pdf#/ 9/51 6/6/2019 Samba in love with GnuTLS Samba crypto Samba implemented own crypto: SHA265, SHA512, HMAC-SHA256 MD5, MD4, HMAC-MD5 AES-CFB, AES-CCM, AES-GCM, AES-CMAC DES, RC4 localhost:8000/?print-pdf#/ 10/51 6/6/2019 Samba in love with GnuTLS 4 Why shouldn't you write your own crypto functions? localhost:8000/?print-pdf#/ 11/51 6/6/2019 Samba in love with GnuTLS Why shouldn't you write your own crypto functions? Implementing crypto algorithms is relatively easy 1.
    [Show full text]