TLS Deep Dive

Total Page:16

File Type:pdf, Size:1020Kb

TLS Deep Dive 12/9/17 TLS Deep Dive Website Security & More Joe Pranevich December 5, 2017 Today’s Session – Overview of TLS – Connection Establishment – Testing Tools – Recent Security Issues 1 12/9/17 What is SSL/TLS? – Core internet protocols (IP, TCP, HTTP) were designed without default security – SSL was invented in 1995 by Netscape to support encryption of web traffic for ecommerce and other uses. – SSL/TLS sits above TCP. It can be used to encrypt many protocols, but mostly used for HTTP. – Over two decades, SSL has been improved (with vulnerabilities discovered in older versions). The name was changed to TLS in 1999. SSL & TLS Timeline Protocol Released Notes SSLv2 1995 Vulnerable, depreciated in 2011 SSLv3 1996 Vulnerable, depreciated in 2015 TLS 1.0 1999 At risk, no longer permitted by PCI TLS 1.1 2006 TLS 1.2 2008 TLS 1.3 TBD Internet Draft 2 12/9/17 But Wait, There’s More! – TLS supports dozens of different encryption methods, compression methods, hashing functions, and other details. – Clients and servers select from a menu of these options to negotiate the best security (more on that later) – Most of these options have their own security histories, some have been deprecated, etc. Key Concepts – Shared Key Cryptography (Symmertric) – Public/Private Key Cryptography (Asymmetric) – Hashing 3 12/9/17 Connection Establishment – TLS Handshake – Cipher negotiation – Certificate Validation – Device Compatibility TLS Handshake – Part One – Client sends a “hello” message saying that they want TLS. – It includes TLS version, ciphers it supports, and other details – Server sends a “hello” message back. – It selects the most secure matching TLS version and ciphers – Connection will fail if client and server cannot agree on protocols and ciphers 4 12/9/17 Client Devices Have Different Capabilities As Do Servers & Load Balancers 5 12/9/17 We Care About The Intersection Backwards Compatibility Warning! – Web browsers and operating systems get updated frequently; you can usually rely on web users having a recent TLS stack when they connect to you. – Mobile devices are updated less frequently. – Making your system “secure” can easily block access to your customers! 6 12/9/17 Android Usage - Sep 2017 Nearly 10% of Android users are running Jelly Bean (4.2.x) or below. No support for TLS 1.1 or 1.2, weak cipher suites. No ALPN support Windows XP It’s not just mobile devices. As of 2017, 7% of PCs still run Windows XP. No TLS 1.1 or 1.2. All supported ciphers are considered insecure. 7 12/9/17 Cipher Suites - The Important Parts – Key Exchange Algorithm - How the client/server will authenticate – RSA, DHE, ECDHE – Block Cipher - Encryption for the data flow – RC4, 3DES, AES – Message Authentication Algorithm - Hashing function used to validate data – MD5, SHA TLS Handshake – Part Two – We know both sides can talk, what next? – If SNI in use, client sends requested hostname. – Server sends its certificate which will be used and validated by the client – Only when the server verifies it can trust the client, can the connection proceed. 8 12/9/17 Certificate Validations – The certificate is the “proof” that we are who we say we are. – Without validating certs, we could have MITM attacks. – Certificates purchased from a trusted vendor (more on that soon!) Trust Chains – Devices have to “trust” the company that we get our cert from. – They do this by pre-storing “root” certificates for major trusted vendors – Different devices trust different certificate vendors. You have to be cautious with new vendors (like LetsEncrypt) on old devices. 9 12/9/17 iOS 9’s Trust Anchors (Partial) Never Break The Chain 10 12/9/17 Intermediate Certificates Even More on Certificate Validations – Certificates are given out to a specific hostname or “wildcard” – Older clients cannot specify what “hostname” is being requested (using SNI), so one IP can only be used for one hostname/set of “alternative names” – Wildcard handling can be inconsistent across devices 11 12/9/17 Oh Boy, Even More… – Certificates include an embedded hash – SHA-1-based certificates are recently considered insecure – Some devices are now rejecting SHA-1 certs. SHA-1 is even being phased out for intermediate certs. What About Extended Validation? – We can purchase “Extended Validation” certificates (for a higher fee). This does more to prove we are who we say we are. – Browsers display EV websites differently, to let consumers know about the increased trust. – TLS-wise, there is no difference. 12 12/9/17 Testing Tools – SSL Labs – NMAP – OpenSSL SSL Labs 13 12/9/17 NMAP jpranevich$ nmap -sV --script ssl-enum-ciphers -p 443 www.cnn.com Starting Nmap 7.60 ( https://nmap.org ) at 2017-12-05 01:08 EST Nmap scan report for www.cnn.com (151.101.117.67) Host is up (0.013s latency). Other addresses for www.cnn.com (not scanned): 2a04:4e42:1c::323 PORT STATE SERVICE VERSION 443/tcp open ssl/http-proxy Varnish |_http-server-header: Varnish | ssl-enum-ciphers: | TLSv1.0: | ciphers: | TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA (rsa 2048) - A | TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA (rsa 2048) - A | TLS_RSA_WITH_AES_128_CBC_SHA (rsa 2048) - A | TLS_RSA_WITH_AES_256_CBC_SHA (rsa 2048) - A | TLS_RSA_WITH_3DES_EDE_CBC_SHA (rsa 2048) - C | compressors: [...] OpenSSL jpranevich$ openssl s_client -connect www.cnn.com:443 CONNECTED(00000003) depth=2 C = BE, O = GlobalSign nv-sa, OU = Root CA, CN = GlobalSign Root CA verify return:1 depth=1 C = BE, O = GlobalSign nv-sa, CN = GlobalSign CloudSSL CA - SHA256 - G3 verify return:1 depth=0 C = US, ST = California, L = San Francisco, O = "Fastly, Inc.", CN = turner-tls.map.fastly.net verify return:1 --- Certificate chain 0 s:/C=US/ST=California/L=San Francisco/O=Fastly, Inc./CN=turner-tls.map.fastly.net i:/C=BE/O=GlobalSign nv-sa/CN=GlobalSign CloudSSL CA - SHA256 - G3 1 s:/C=BE/O=GlobalSign nv-sa/CN=GlobalSign CloudSSL CA - SHA256 - G3 i:/C=BE/O=GlobalSign nv-sa/OU=Root CA/CN=GlobalSign Root CA --- Server certificate -----BEGIN CERTIFICATE----- MIIMwzCCC6ugAwIBAgIMBBfbL+G5qtVTH301MA0GCSqGSIb3DQEBCwUAMFcxCzAJ BgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS0wKwYDVQQDEyRH [...] 14 12/9/17 Recent Security Issues – SHA-1 – POODLE Attack (SSLv3 and TLS 1.0) – DROWN Attack – Google vs. Symantec – Expire Keys Faster SHA-1 – Hashing algorithm designed in 1993. Found insecure in 2005. – Vendors announced cease support. Google Chrome ceased in January 2017 with other vendors following suit. – Old certificates had to be replaced. Even SHA-1 intermediates are no longer being used. (This causes some device incompatibilities!) 15 12/9/17 SSLv3 - POODLE Attack – Attack found against SSLv3 connections in September 2014. – Affects SSLv3 and buggy implementations of TLS 1.0 – SSLv3 is no longer supported by most clients. DROWN Attack – Attack found against current security protocols, if you use SSLv2 anywhere in your network – Attacker piggybacks an attack on an insecure SSLv2 endpoint (with the same certificate) to break encryption on even TLS 1.2 – Disable SSLv2! Flaws have been known since 2011! Get with it! 16 12/9/17 Google vs Symantec – Between 2013 and 2017, Symantec (or their subsidiaries) had multiple instances of certificates being issued incorrectly or to the wrong organization. – More than 30,000 incorrectly issued certificates were identified – In March 2017, Google announced that it would cease trusting Symantec certificates over time – After extensive negotiations with Symantec, Google finalized the “punishment” in September. Google’s Actions – Google and other vendors negotiated with Symantec on their solution – All existing Symantec certs will be distrusted over time. – In December, Symantec will exit the certificate business, instead transitioning responsibilities to a third party, DigiCert – Only DigiCert certificates will be trusted after the sundown period 17 12/9/17 Sunset One: April 2018 – Google will cease trusting all certificates issued before June 1, 2016. – All these certificates must be re-issued between January and March to prevent impact Sunset Two: October 2018 – In October, Google will cease accepting all legacy certificates issued by Symantec – Even a certificate issued today will be distrusted – Any certificates that expired between the announcement and December 2017 must have been reissued twice. 18 12/9/17 So Much More to Talk About – Forward Secrecy – OCSP & OCSP Stapling – DNS CAA Records – Session Tickets – ALPN – And so much more... Questions? THANK YOU 19 .
Recommended publications
  • Technical Report RHUL–ISG–2019–1 27 March 2019
    20 years of Bleichenbacher attacks Gage Boyle Technical Report RHUL–ISG–2019–1 27 March 2019 Information Security Group Royal Holloway University of London Egham, Surrey, TW20 0EX United Kingdom Student Number: 100866673 Gage, Boyle 20 Years of Bleichenbacher Attacks Supervisor: Kenny Paterson Submitted as part of the requirements for the award of the MSc in Information Security at Royal Holloway, University of London. I declare that this assignment is all my own work and that I have acknowledged all quotations from published or unpublished work of other people. I also declare that I have read the statements on plagiarism in Section 1 of the Regulations Governing Examination and Assessment Offences, and in accordance with these regulations I submit this project report as my own work. Signature: Date: Acknowledgements I would first like to thank my project supervisor, Kenny Paterson. This project would not have been possible without his continuous encouragement to push the boundaries of my knowledge, and I am grateful for the commitment and expertise that he has provided throughout. Secondly, I would like to thank Nimrod Aviram for his invaluable advice, particularly with respect to algorithm implementation and understanding the finer details of this project. Further thanks should go to Raja Naeem Akram, Oliver Kunz and David Morrison for taking the time to teach me Python and how to run my source code on an Ubuntu server. I am grateful for the time that David Stranack, Thomas Bingham and James Boyle have spent proof reading this project, and for the continuous support from my part- ner, Lisa Moxham.
    [Show full text]
  • TLS Attacks & DNS Security
    IAIK TLS Attacks & DNS Security Information Security 2019 Johannes Feichtner [email protected] IAIK Outline TCP / IP Model ● Browser Issues Application SSLStrip Transport MITM Attack revisited Network Link layer ● PKI Attacks (Ethernet, WLAN, LTE…) Weaknesses HTTP TLS / SSL FLAME FTP DNS Telnet SSH ● Implementation Attacks ... ● Protocol Attacks ● DNS Security IAIK Review: TLS Services All applications running TLS are provided with three essential services Authentication HTTPS FTPS Verify identity of client and server SMTPS ... Data Integrity Detect message tampering and forgery, TLS e.g. malicious Man-in-the-middle TCP IP Encryption Ensure privacy of exchanged communication Note: Technically, not all services are required to be used Can raise risk for security issues! IAIK Review: TLS Handshake RFC 5246 = Establish parameters for cryptographically secure data channel Full handshake Client Server scenario! Optional: ClientHello 1 Only with ServerHello Client TLS! Certificate 2 ServerKeyExchange Certificate CertificateRequest ClientKeyExchange ServerHelloDone CertificateVerify 3 ChangeCipherSpec Finished ChangeCipherSpec 4 Finished Application Data Application Data IAIK Review: Certificates Source: http://goo.gl/4qYsPz ● Certificate Authority (CA) = Third party, trusted by both the subject (owner) of the certificate and the party (site) relying upon the certificate ● Browsers ship with set of > 130 trust stores (root CAs) IAIK Browser Issues Overview Focus: Relationship between TLS and HTTP Problem? ● Attacker wants to access encrypted data ● Browsers also have to deal with legacy websites Enforcing max. security level would „break“ connectivity to many sites Attack Vectors ● SSLStrip ● MITM Attack …and somehow related: Cookie Stealing due to absent „Secure“ flag… IAIK Review: ARP Poisoning How? Attacker a) Join WLAN, ● Sniff data start ARP Poisoning ● Manipulate data b) Create own AP ● Attack HTTPS connections E.g.
    [Show full text]
  • It-Säkerhet - Examensarbete
    IT-SÄKERHET - EXAMENSARBETE Största IT-säkerhetshoten mot svenska företag och organisationer idag, samt kontemporära metoder och verktyg för bekämpning av dessa IT-säkerhetshot. DEN 29 MARS 2016 BENJAMIN LUNDSTRÖM Examensarbete i Nät- & kommunikationsteknik, Umeå universitet. Löpnummer EL1609. BENJAMIN LUNDSTRÖM 16-03-29 IT-SÄKERHET - EXAMENSARBETE Sammanfattning Olika former av IT-relaterade hot har förekommit sedan internets födelse. Inledningsvis var de harmlösa humoristiska program som över tiden utvecklades till kriminella verktyg med ekonomiska syften. Elakartad programkod benämns under samlingsnamnet Malware. En angripare besitter idag ett stort antal metoder för otillåten tillgång till system, neka legitima användare tillgång till system eller på ett stort antal sätt bedriva kriminell verksamhet av ekonomisk karaktär. Skydds- och bekämpningsmetoderna innefattar brandväggar, olika analys-, detektions- och preventionssystem (IDS/IPS) och kryptering. Men för att komma tillrätta med IT-hoten fullt ut krävs också säkerhetsutbildning och incidenthantering som sker via incidentplanering, rapporter, dokumentation, backup och informationsklassning. Kontemporära IT-säkerhetshot av betydande art belyses i rapporten. Stuxnet (2009), som angrep Irans kärnvapenforskning. Flamer (2011), ett cybervapen vars syfte är spårlös informationsinhämtning. BlackEnergy (2015) och angreppet mot elförsörjningen i Ukraina. DDoS- attacken mot Svenska medier behandlas liksom Petya (2016) som är nya generationens Ransomeware. Det är vitalt för företag och organisationer att skydda sin viktigaste tillgång, informationen. Både mot cyberkriminella element i rent finansiellt syfte men i tilltagande grad också mot olika cybervapen och möjligtvis också mot cyberterrorism. Abstract A number of IT-related threats have emerged since the birth of internet. In the beginning they were harmless but over time they developed into fearsome criminal tools for economic purposes.
    [Show full text]
  • Ethical Hacking : Methodology and Techniques
    Ethical Hacking : Methodology and techniques TEI Heraklion [email protected] November 2017 Prerequisites You should have some knowledge of : 1. Basic network protocols : IP, ICMP, UDP, TCP 2. Network devices : routers, switches, access-points, firewalls, IDS/IPS 3. Basic network security : WiFi security (WPA2), SSL 4. Unsecured protocols VS secured protocols : FTP-SFTP-SCP / HTTP-HTTPS / Telnet- SSH 5. System administration : Basic Linux administration, Windows Active Directory Domains 6. Basic virtualization techniques using Vmware Workstation or Virtualbox Interesting skills if you plan a career in Computer Security : – Programming skills, System administration (Windows, Linux, Vmware, …), Database administration, Networking skills Disclaimer : The methodology, techniques and tools that you will learn must not be used in a production environment… Use these tools only in a protected lab environment 2/34 Hacking phases : RSGMC 1. Reconnaissance 2. Scanning 3. Gain access 4. Maintain access 5. Clear tracks 3/34 1. Reconnaissance Aim : gather info about target Target may be organization, system, employee What kind of info : Employee : linkedin, facebook, … Organization : location, ... Network infrastructure : Network integrator ? Architecture ? IP addresses ? Procedures ? Policies Types of reconnaissance : ACTIVE (= direct contact : social engineering, physical access) PASSIVE (no direct contact, internet queries) Sources of information Internet websites, google hacking, whois database, DNS footprinting, social media job sites
    [Show full text]
  • Comparison of Modern Network Attacks on TLS Protocol
    565 Comparison of Modern Network Attacks on TLS Protocol Oleksandr Ivanov, Victor Ruzhentsev Roman Oliynykov Department of Information Technology Security, Department of Information Systems and Technologies Kharkiv National University of Radio Electronics Security, Kharkiv, Ukraine V.N. Karazin Kharkiv National University [email protected], [email protected] Kharkiv, Ukraine [email protected] Abstract—The Transport Layer Security (TLS) is protocol uses cipher suites, key exchange algorithms and cryptographic protocol that provides confidentiality and certificates to provide privacy, data integrity and integrity of data in untrusted networks connections. The authentication of communicating parties [18, 19, 20]. protocol is composed of two layers: the TLS Record Protocol Originally, TLS was started as the Secure Sockets Layer for encapsulation of various higher-level protocols and the (SSL). Then it was adopted by the Internet Engineering TLS Handshake Protocol for connection security. Nowadays Task Force (IETF) and specified as TLS 1.0 [17]. Many TLS has become the secure standard of choice for Internet modern network protocols (e.g., HTTPS, SMTP, FTP, and mobile applications. There are many attacks on the TLS LDAP) use TLS for securing an application-level traffic protocol that exploit its vulnerabilities: Cipher Block [20]. Chaining (CBC) mode encryption, data compression, using obsolete cypher suites and hash functions. Therefore, it is Since 2011, this protocol is actively being explored. necessary to identify and examine existing threats of TLS. BEAST and CRIME are the first attacks that proposed by The paper explores the TLS protocol versions and main Thai Duong and Juliano Rizzo [21, 22]. These attacks differences between them.
    [Show full text]
  • Supreme Court of the United States
    No. 19-783 IN THE Supreme Court of the United States NATHAN VAN BUREN, Petitioner, v. UNITED STATES, Respondent. ON WRIT OF CERTIORARI TO THE UNITED STATES CouRT OF APPEALS FOR THE ELEVENTH CIRcuIT BRIEF OF AMICI CURIAE COMPUTER SECURITY RESEARCHERS, ELECTRONIC FRONTIER FOUNDATION, CENTER FOR DEMOCRACY & TECHNOLOGY, BUGCROWD, RAPID7, SCYTHE, AND TENABLE IN SUPPORT OF PETITIONER ANDREW CROCKER Counsel of Record NAOMI GILENS ELECTRONic FRONTIER FOUNDATION 815 Eddy Street San Francisco, California 94109 (415) 436-9333 [email protected] Counsel for Amici Curiae 296514 A (800) 274-3321 • (800) 359-6859 i TABLE OF CONTENTS Page TABLE OF CONTENTS..........................i TABLE OF CITED AUTHORITIES ..............iii INTEREST OF AMICI CURIAE ..................1 SUMMARY OF ARGUMENT .....................4 ARGUMENT....................................5 I. The Work of the Computer Security Research Community Is Vital to the Public Interest...................................5 A. Computer Security Benefits from the Involvement of Independent Researchers ...........................5 B. Security Researchers Have Made Important Contributions to the Public Interest by Identifying Security Threats in Essential Infrastructure, Voting Systems, Medical Devices, Vehicle Software, and More ...................10 II. The Broad Interpretation of the CFAA Adopted by the Eleventh Circuit Chills Valuable Security Research. ................16 ii Table of Contents Page A. The Eleventh Circuit’s Interpretation of the CFAA Would Extend to Violations of Website Terms of Service and Other Written Restrictions on Computer Use. .................................16 B. Standard Computer Security Research Methods Can Violate Written Access Restrictions...........................18 C. The Broad Interpretation of the CFAA Discourages Researchers from Pursuing and Disclosing Security Flaws ...............................22 D. Voluntary Disclosure Guidelines and Industry-Sponsored Bug Bounty Programs A re Not Sufficient to Mitigate the Chill .
    [Show full text]
  • Aws Guardduty Unusual Protocol
    Aws Guardduty Unusual Protocol trappeanandIneducable chronologize and Alexis isohyetal gelidlysometimes Jud while answer petting herpetologic some his hot-press shadoofs? Theodor suspiciously wive and arguing. and imbruted How snod so more! is Yigal Erik when is dead-on Aws filebeat module must use this unusual aws config notifies you visibility Select all the value from the world renowned security weekly crew accompanied by the ideal for an australian pms trying many aws guardduty unusual protocol on the findings. Josh Lefkowitz and Chris Camacho of Flashpoint join us for an interview. Ip address will be challenging because once the aws guardduty unusual protocol on the bucket from this behavior they can produce. Xray is aws guardduty unusual protocol are different than seven years old school paper, we kick it detects removeable media installed? What immediate use several for? Horusec is where open source glare that improves identification of vulnerabilities in your brother with smart one command. Special operations in firebase are important to count, and failed aws environment to be careful about bug bounty is aws guardduty unusual protocol traffic. Secrets after a function to perform automatic predictive prioritization to aws guardduty unusual protocol. Force space and resolved at the aws config managed service interface when aws guardduty unusual protocol depending on drone hardware security and five years have updates the guys in our second lieutenant in. Plus sound board really happening in aws guardduty unusual protocol for anomalies and passwords, and john discuss developer tools for each group where are stores each segment about why securing our approach. She was soundly mocked even in plain english, we have to discover haxorthematrix love stories podcast that bucket involved in aws guardduty unusual protocol depending on this.
    [Show full text]
  • Emazzanti Technologies Issues DROWN Attack Warning
    eMazzanti Technologies Issues DROWN Attack Warning NYC area IT security consultant urges organizations to check and update servers to avoid data loss in light of security threat affecting up to 33% of HTTPS servers Hoboken, New Jersey •- (Cision) March 11, 2016 — eMazzanti Technologies, a NYC area IT consultant and MSP, issued a security warning today regarding a threat to encrypted server traffic which is usually considered to be secure. Any data exchanged with vulnerable servers is at risk. The vulnerability, called DROWN, was discovered by an international team of researchers and made public by the Department of Homeland Security, US-CERT or United States Computer Emergency Readiness Team on March 1, 2016. According to the US-Cert notice, DROWN is a potential threat in up to 33% of all HTTPS servers. eMazzanti is urging organizations to check their servers for the vulnerability to prevent hackers from stealing sensitive data. Any data transmitted to or from a vulnerable server can be compromised, including passwords, credit card data, and other sensitive information. “With DROWN out in the open, hackers are sure to exploit it,” stated Almi Dumi, Project Lead, eMazzanti Technologies. “We urge our customers and others to take the necessary steps to prevent hackers from stealing their sensitive data. Every HTTPS server should be checked.” Here is the full text of the warning: DROWN Attack Warning “eMazzanti Technologies wants to bring to your attention a very serious threat, a server vulnerability called DROWN, that puts up to one third of all HTTPS servers at risk. DROWN stands for Decrypting RSA with Obsolete and Weakened eNcryption.
    [Show full text]
  • Applied Crypto Hardening
    Applied Crypto HarDENING WOLFGANG BrEyha, David Durvaux, TOBIAS Dussa, L. AarON Kaplan, Florian Mendel, Christian Mock, Manuel Koschuch, Adi Kriegisch, Ulrich Pöschl, Ramin Sabet, BerG San, Ralf Schlatterbeck, Thomas Schreck, AleXANDER Würstlein, AarON Zauner, Pepi Zawodsky (University OF Vienna, CERT.be, KIT-CERT, CERT.at, A-SIT/IAIK, CORetec.at, FH Campus Wien, VRVis, MilCERT Austria, A-Trust, Runtux.com, Friedrich-AleXANDER University Erlangen-NurEMBERg, azet.org, maclemon.at) NoVEMBER 10, 2016 Do NOT TALK UNENCRYPTED Applied Crypto HarDENING PAGE 2 OF 111 AcknoWLEDGEMENTS WE WOULD LIKE TO EXPRESS OUR THANKS TO THE FOLLOWING REVIEWERS AND PEOPLE WHO HAVE GENEROUSLY OffERED THEIR TIME AND INTEREST (in ALPHABETICAL ORder): BrOwn, Scott Pacher, Christoph Brulebois, Cyril Palfrader, Peter Dirksen-Thedens, Mathis Pape, TOBIAS (layout) DulaunoY, AleXANDRE Petukhova, Anna (Logo) Gühring Philipp Pichler, Patrick Grigg, IAN Riebesel, Nicolas Haslinger, Gunnar Roeckx, Kurt Huebl, AxEL Roesen, Jens Kovacic, Daniel Rublik, Martin Lenzhofer, Stefan Schüpany, Mathias Lorünser, Thomas Schwarz, René («DigNative») Maass, Max Seidl, Eva (PDF layout) Mehlmauer, Christian VAN Horenbeeck, Maarten Millauer, TOBIAS Wagner, Sebastian («sebix») Mirbach, AndrEAS Zangerl, AleXANDER O’Brien, Hugh The REVIEWERS DID REVIEW PARTS OF THE DOCUMENT IN THEIR AREA OF Expertise; ALL REMAINING ERRORS IN THIS DOCUMENT ARE THE SOLE RESPONSIBILITY OF THE PRIMARY authors. Applied Crypto HarDENING PAGE 3 OF 111 AbstrACT “Unfortunately, THE COMPUTER SECURITY AND CRYPTOLOGY COMMUNITIES HAVE DRIFTED APART OVER THE LAST 25 years. Security PEOPLE DON’T ALWAYS UNDERSTAND THE AVAILABLE CRYPTO tools, AND CRYPTO PEOPLE DON’T ALWAYS UNDERSTAND THE Real-world PRoblems.” — Ross Anderson IN [And08] This GUIDE AROSE OUT OF THE NEED FOR SYSTEM ADMINISTRATORS TO HAVE AN updated, solid, WELL Re- SEARCHED AND thought-thrOUGH GUIDE FOR CONfiGURING SSL, PGP, SSH AND OTHER CRYPTOGRAPHIC TOOLS IN THE post-SnoWDEN age.
    [Show full text]
  • Pdf Compiledsquare-Manual0109-Proof
    GNU Essentials GNU Linux Manual of Style for Technical Content Creators 2020 Copyright (c) GNU Essentials ISBN: 978-1-71683-468-4 Manufactured in the United States of America You may distribute the GNU Linux Manual of Style and/or modify the GNU Linux Manual of Style under the following terms: Code GNU General Public License (http://www.gnu.org/licenses/gpl.html), version 3 or later Content Creative Commons Attribution License (http://creativecommons.org/licenses/by/4.0/), version 4.0 or later (Other content used in the book was this license, so this became the preferred license) Trademarks: Respecting the choice to trademark by others, we do not have trademark rules for GNU Essentials, FAQ Linux, R00T magazine or A-Z Technical Writing. Linux® is the registered trademark of Linus Torvalds in the U.S. and other countries. Foreword About the Author Overview Dedication Revision History 1. Documentation Development Life Cycle 1.0 Basics of Technical Authoring...........................................................................................................11 1.1 Documentation Development Life Cycle............................................................................................11 1.2 Example: Get Started Guide..............................................................................................................29 Chapter 2. GNU Linux Style Guidelines 2.0 Headings...........................................................................................................................................35 2.1 Images.............................................................................................................................................
    [Show full text]
  • St Luke's- 192.168.9.0 Vulnerability Scanner
    St Luke's- 192.168.9.0 Vulnerability scanner Report generated by Nessus™ Thu, 05 Dec 2019 13:15:24 GMT Standard Time TABLE OF CONTENTS Hosts Executive Summary • 192.168.9.20.........................................................................................................................................................7 • 192.168.9.23.........................................................................................................................................................8 • 192.168.9.52.........................................................................................................................................................9 • 192.168.9.53.......................................................................................................................................................10 • 192.168.9.56.......................................................................................................................................................11 • 192.168.9.59.......................................................................................................................................................12 • 192.168.9.60.......................................................................................................................................................13 • 192.168.9.61.......................................................................................................................................................14 • 192.168.9.62.......................................................................................................................................................15
    [Show full text]
  • A Security and Privacy Audit of Kakaotalk's End-To-End Encryption
    DEGREE PROJECT IN INFORMATION AND COMMUNICATION TECHNOLOGY, SECOND CYCLE, 30 CREDITS STOCKHOLM, SWEDEN 2016 A Security and Privacy Audit of KakaoTalk’s End-to-End Encryption DAWIN SCHMIDT KTH ROYAL INSTITUTE OF TECHNOLOGY SCHOOL OF ELECTRICAL ENGINEERING KTH Royal Institute of Technology School of Electrical Engineering Double Degree Programme in Security and Mobile Computing ABSTRACT OF (NordSecMob) MASTER'S THESIS Author: Dawin Schmidt Title: A Security and Privacy Audit of KakaoTalk's End-to-End Encryption Date: September 30, 2016 Pages: 165 TRITA: TRITA-EE 2016:131 Code: EP248X Supervisors: Panos Papadimitratos N. Asokan Advisor: Ronald Deibert End-to-end encryption is becoming a standard feature in popular mobile chat appli- cations (apps) with millions of users. In the two years a number of leading chat apps have added end-end encryption features including LINE, KakaoTalk, Viber, Facebook Messenger, and WhatsApp. However, most of these apps are closed-source and there is little to no independent ver- ification of their end-to-end encryption system design. These implementations may be a major concern as proprietary chat apps may make use of non-standard cryptographic algorithms that may not follow cryptography and security best practices. In addition, governments authorities may force chat app providers to add easily decryptable export- grade cryptography to their products. Further, mainstream apps have a large attack surface as they offer a variety of features. As a result, there may be software vulnera- bilities that could be exploited by an attacker in order to compromise user's end-to-end privacy. Another problem is that, despite being closed-source software, providers often market their apps as being so secure that even the provider is not able to decrypt messages.
    [Show full text]