Arxiv:1905.10311V4 [Cs.CR] 10 Mar 2020

Total Page:16

File Type:pdf, Size:1020Kb

Arxiv:1905.10311V4 [Cs.CR] 10 Mar 2020 SpecFuzz Bringing Spectre-type vulnerabilities to the surface Oleksii Oleksenko†, Bohdan Trach†, Mark Silberstein‡, and Christof Fetzer† †TU Dresden, ‡ Technion Abstract This observation led to the development of software tools SpecFuzz is the first tool that enables dynamic testing for for Spectre mitigation. They identify the code snippets pur- speculative execution vulnerabilities (e.g., Spectre). The key ported to be vulnerable to the Spectre attacks and instrument is a novel concept of speculation exposure: The program is them to prevent or eliminate unsafe speculation. Inherently, instrumented to simulate speculative execution in software by the instrumentation incurs runtime overheads, thereby leading forcefully executing the code paths that could be triggered due to the apparent tradeoff between security and performance. to mispredictions, thereby making the speculative memory Currently, all the existing tools exercise only the extreme accesses visible to integrity checkers (e.g., AddressSanitizer). points in this tradeoff, offering either poor performance with Combined with the conventional fuzzing techniques, specula- high security, or poor security with high performance. tion exposure enables more precise identification of potential Specifically, conservative techniques [3, 21, 28, 53] pes- vulnerabilities compared to state-of-the-art static analyzers. simistically harden every speculatable instruction (e.g., every Our prototype for detecting Spectre V1 vulnerabilities suc- conditional branch) to either prevent the speculation or make cessfully identifies all known variations of Spectre V1 and it provably benign. This approach is secure, but may signifi- decreases the mitigation overheads across the evaluated appli- cantly hurt program performance [44]. cations, reducing the amount of instrumented branches by up On the other hand, static analysis tools [17, 27, 41] reduce to 77% given a sufficient test coverage. the performance costs by instrumenting only known Spectre gadgets—the code patterns that are typical for the attacks. 1 Introduction However, the analysis is imprecise and may overlook vulner- abilities, either because the vulnerable code does not match Spectre [22, 33, 34, 48] is a class of attacks that poses a sig- the expected patterns [32], or due to the limitations of the nificant threat to system security. It is a microarchitectural analysis itself (e.g., considers each function only in isolation). attack, an attack where a malicious actor extracts secrets by We seek to build a tool that exercises a different point on exploiting security flaws in the CPU architecture rather than the security-performance tradeoff curve by eliding unneces- in software. Such attacks are particularly dangerous as they sary instrumentation without restricting ourselves to specific compromise the security of bug-free programs. gadgets. Arguably, a key challenge is to precisely identify arXiv:1905.10311v4 [cs.CR] 10 Mar 2020 Spectre-type microarchitectural attacks exploit branch spec- vulnerable code regions, yet this task is hard to achieve via ulations to access victim’s memory. For example, if an array static analysis. Instead, in this work we harness dynamic access is guarded by an index bounds check, the CPU branch testing (e.g., fuzzing) to detect Spectre-type vulnerabilities. predictor might speculate that the check will pass and thus Fuzzing [63] is a well-established testing technique. The perform the memory access before the index is validated. If basic idea of fuzzing is simple: Add integrity checks to the the speculation turns out to be wrong, the CPU rolls back the tested software (e.g., with AddressSanitizer [49]) and feed it respective changes in the architectural state (e.g., in registers), with randomized inputs to find cases that trigger a bug. This but it does not cleanse its microarchitectural state (e.g., cached technique is commonly used to detect stability issues and data). Spectre-type attacks use this property to exfiltrate the memory errors [50]. results of computations executed on this mispredicted path. In principle, Spectre-type attacks effectively perform unau- Unfortunately, many variants of Spectre hardware vulner- thorized accesses to data via out-of-bound reads, thus they abilities are not expected to be fixed by hardware vendors, are supposed to be caught via fuzzing. Unfortunately, this is most notably Intel [18]. Therefore, the burden of protecting not the case because the accesses are invoked speculatively, programs lies entirely on software developers [40]. on a mispredicted path, therefore are discarded by hardware 1 i = input[0]; without being exposed to software. As a result, they remain 2 if (i < size) { invisible to runtime integrity checkers. 3 secret = foo[i]; We introduce speculation exposure, the first technique to 4 baz = bar[secret]; } enable dynamic testing for Spectre-type vulnerabilities. Spec- ulation exposure leverages software simulation of speculative Figure 1: A potential Bounds Check Bypass vulnerability. paths to turn speculative vulnerabilities into conventional ones and, thus, make them detectable by memory safety checkers. The concept is generic and can be applied to different Spectre brary, and improves the performance of hardened OpenSSL attacks. RSA function, resulting in only 3% slowdown over its vanilla Speculation exposure consists of four phases executed for version, compared to the 22% slower conservative hardening. every speculatable instruction: 1 take a checkpoint of the Our contributions include: process state, 2 simulate a misprediction, 3 execute the speculative path, and 4 rollback the process to the checkpoint • Speculation exposure, a generic simulation method for and continue normal execution. This way, we temporarily Spectre-type vulnerabilities that makes them detectable redirect the normal application flow into the speculative path through dynamic testing. so that all invalid memory accesses on it become visible to • SpecFuzz, an implementation of the method applied to software. This method simulates the worst-case scenario by detection of Bounds Check Bypass vulnerabilities. examining each possible mispredicted path, without making • A fuzzing strategy that makes nested speculative expo- assumptions about the way the underlying hardware decides sure feasible by prioritizing the paths that are the most whether to speculate or not. likely to contain vulnerabilities. We further extend speculation exposure to nested specu- lation, which occurs when a CPU begins a new speculation • An analysis technique for processing and ranking the before resolving the previous one. To simulate it, for each results of dynamic testing with SpecFuzz. speculatable instruction, we dynamically generate a tree of • Evaluation of SpecFuzz on a set of popular libraries. all possible speculative paths starting from this instruction and branching on every next speculatable instruction. The complete nested simulation, however, has proven to be too 2 Background slow. To make fuzzing practical we develop a heuristic which prioritizes traversal of the speculation sub-trees with high 2.1 Speculative Execution and Attacks likelihood of detecting new vulnerabilities. To showcase our method, we implement SpecFuzz, a tool Speculative Execution. In modern processors, execution of for detecting Bounds Check Bypass (BCB) vulnerabilities. a single instruction is carried out in several stages, such as SpecFuzz simulates conditional jump mispredictions by plac- fetching, decoding, and reading. To improve performance, ing an additional jump with an inverted condition before every nearly all modern CPUs execute them in a pipelined fashion: conditional jump. During the simulation it executes the in- When one instruction passes a stage, the next instruction can verted jump and then rolls back to return to the original control enter the stage without waiting for the first one to pass all the flow. To detect invalid accesses on the simulated speculative following stages. This allows for much higher levels of in- path, SpecFuzz relies on AddressSanitizer [49]. struction parallelism and for better utilization of the hardware SpecFuzz may serve as a tool for both offensive and de- resources. fensive security. For the former (e.g., penetration testing), However, in certain situations—called hazards—it is not it finds vulnerabilities in software, records their parameters, possible to begin executing the next instruction immediately. and generates test cases. For the latter, the fuzzing results are A hazard may happen in three cases: a structural hazard passed to automated hardening tools (e.g., Speculative Load appears when there are no available execution units, a data Hardening [3]) to elide unnecessary instrumentation of the hazard—when there is a data dependency between the instruc- instructions deemed safe. Note that the code not covered by tions, and control hazard—when the first instruction modifies fuzzing remains instrumented and protected conservatively the control flow (e.g., at a conditional branch) and the CPU as before, hence lower fuzzing coverage might affect perfor- does not know what instruction will run next. As the haz- mance but not security. ards are stalling the CPU, they can significantly reduce its Our evaluation shows that SpecFuzz successfully detects performance. vulnerable gadgets in all test programs. It detects more po- To deal with control hazards (and sometimes, with data tential vulnerabilities than the state-of-the-art and reduces the hazards), modern CPUs try to predict the
Recommended publications
  • Mitigation Overview for Potential Side- Channel Cache Exploits in Linux* White Paper
    Mitigation Overview for Potential Side- Channel Cache Exploits in Linux* White Paper Revision 2.0 May, 2018 Any future revisions to this content can be found at https://software.intel.com/security-software- guidance/insights/deep-dive-mitigation-overview-side- channel-exploits-linux when new information is available. This archival document is no longer being updated. Document Number: 337034-002 Intel technologies’ features and benefits depend on system configuration and may require enabled hardware, software, or service activation. Performance varies depending on system configuration. Check with your system manufacturer or retailer or learn more at www.intel.com. All information provided here is subject to change without notice. Contact your Intel representative to obtain the latest Intel product specifications and roadmaps. The products and services described may contain defects or errors known as errata which may cause deviations from published specifications. Current characterized errata are available on request. Intel provides these materials as-is, with no express or implied warranties. Intel, the Intel logo, Intel Core, Intel Atom, Intel Xeon, Intel Xeon Phi, Intel® C Compiler, Intel Software Guard Extensions, and Intel® Trusted Execution Engine are trademarks of Intel Corporation in the U.S. and/or other countries. *Other names and brands may be claimed as the property of others. Copyright © 2018, Intel Corporation. All rights reserved. Mitigation Overview for Potential Side-Channel Cache Exploits in Linux* White Paper May 2018
    [Show full text]
  • Managed Runtime Speculative Execution Side Channel Mitigations White Paper
    Managed Runtime Speculative Execution Side Channel Mitigations White Paper Revision 001 June 2018 Document Number: 337313-001 No license (express or implied, by estoppel or otherwise) to any intellectual property rights is granted by this document; however, the information reported herein is available for use in connection with the mitigation of the security vulnerabilities described. Intel disclaims all express and implied warranties, including without limitation, the implied warranties of merchantability, fitness for a particular purpose, and non-infringement, as well as any warranty arising from course of performance, course of dealing, or usage in trade. This document contains information on products, services and/or processes in development. All information provided here is subject to change without notice. Contact your Intel representative to obtain the latest forecast, schedule, specifications and roadmaps. The products and services described may contain defects or errors known as errata which may cause deviations from published specifications. Current characterized errata are available on request. Copies of documents which have an order number and are referenced in this document may be obtained by calling 1-800-548-4725 or by visiting www.intel.com/design/literature.htm. Intel and the Intel logo are trademarks of Intel Corporation or its subsidiaries in the U.S. and/or other countries. *Other names and brands may be claimed as the property of others © Intel Corporation. Managed Runtime Speculative Execution Side Channel Mitigations
    [Show full text]
  • Public Vulnerability Research Market in 2014
    Public Vulnerability Research Market in 2014 The Evolving Threat Environment During the Internet of Things Era NFDF-74 November 2015 Research Team Lead Analyst Contributing Analyst Pamela Tufegdzic Chris Kissel Industry Analyst Industry Analyst ICT – Network Security ICT – Network Security (248) 259-2053 (623) 910-7986 [email protected] [email protected] Vice President of Research Research Director Michael Suby Frank Dickson VP of Research Research Director Stratecast/Frost & Sullivan ICT — Network Security (720) 344-4860 (469) 387-0256 [email protected] [email protected] NFDF-74 2 List of Exhibits Section Slide Number Executive Summary 8 Market Overview 10 • Market Overview – Research Objectives 11 • Market Overview (continued) 12 • Market Overview—Best Practices Public Vulnerability Disclosure 17 • Market Overview—The Evolving Attacker 18 • Market Overview—Terminology and Definitions 19 • Market Overview—Key Questions This Insight Answers 22 Research Methodology 23 Cyber Threat Analysis and Reporting 26 Introduction to Cyber Threat Analysis and Reporting 27 The Internet of Things 28 The Internet of Things—(continued) 29 NFDF-74 3 List of Exhibits (continued) Section Slide Number • SCADA 31 • Software―Java 33 • Malware 34 • Mobile Malware 37 Market Trends in Public Vulnerabilities 38 • Vulnerabilities Reported by Year 39 • Vulnerabilities Reported by Quarter 40 • Market Trends 41 • Vulnerability Disclosure 43 • Vulnerability Disclosure by Organization Type 46 • Analysis of Vulnerabilities by Severity 49 NFDF-74
    [Show full text]
  • Apple Iphones Hacked by Websites Exploiting Zero-Day Flaws Govinfosecurity.Com/Apple-Iphones-Hacked-By-Websites-Exploiting-Zero-Day-Flaws-A-13001
    Apple iPhones Hacked by Websites Exploiting Zero-Day Flaws govinfosecurity.com/apple-iphones-hacked-by-websites-exploiting-zero-day-flaws-a-13001 See related story with an update on the latest developments. See Also: Live Webinar | Scaling Security at the Internet Edge with Stateless Technology Since at least 2016, hacked websites have targeted zero-day flaws in the latest versions of Apple iOS to surreptitiously hack iPhones, new research from Google shows. The attack campaign has been revealed by Google's Project Zero team, which searches for zero- day flaws. It says the attack campaign was used to infect iOS devices with an implant - aka malware - that could steal private data, including photos and messages in Telegram, iMessages and Gmail, as well as send GPS data to a command-and-control server for tracking users in real time, provided they're online. "Earlier this year Google's Threat Analysis Group discovered a small collection of hacked websites. The hacked sites were being used in indiscriminate watering hole attacks against their visitors, using iPhone 0-day," Ian Beer of the Project Zero team says in a blog post published Thursday. "There was no target discrimination; simply visiting the hacked site was enough for the exploit server to attack your device, and if it was successful, install a monitoring implant," he says. "We estimate that these sites receive thousands of visitors per week." Google's test of the implant - malware - installed by the websites found that it could exfiltrate numerous types of personal data, including iMessages (Source: Google Project Zero) Apple did not immediately respond to a request for comment.
    [Show full text]
  • Eternal War in XNU Kernel Objects
    Eternal War in XNU Kernel Objects Min(Spark) Zheng, Xiaolong Bai, Hunter Alibaba Orion Security Lab whoami • SparkZheng @ Twitter,蒸米spark @ Weibo • Alibaba Security Expert • CUHK PhD, Blue-lotus and Insight-labs • Gave talks at RSA, BlackHat, DEFCON, HITB, ISC, etc • Xiaolong Bai (bxl1989 @ Twitter&Weibo) • Alibaba Security Engineer • Ph.D. graduated from Tsinghua University • Published papers on S&P, Usenix Security, CCS, NDSS Apple Devices & Jailbreaking • Jailbreaking in general means breaking the device out of its “jail”. • Apple devices (e.g., iPhone, iPad) are most famous “jail” devices among the world. • iOS, macOS, watchOS, and tvOS are operating systems developed by Apple Inc and used in Apple devices. XNU • All systems deploy a same hybrid kernel structure called XNU. • There are cases that kernel vulnerabilities have been used to escalate the privileges of attackers and get full control of the system (hence jailbreak the device). • Accordingly, Apple has deployed multiple security mechanisms that make the exploitation of the device harder. Mitigation - DEP/KASLR • Apple deployed Data Execution Prevention (DEP) and Kernel Address Space Layout Randomization (KASLR) from iOS 6 and macOS 10.8. • DEP enables the system to mark relevant pages of memory as non-executable to prevent code injection attack. To break the DEP protection, code-reuse attacks (e.g., ROP) were proposed. • To make these addresses hard to predict, KASLR memory protection randomizes the locations of various memory segments. To bypass KASLR, attackers usually need to leverage information leakage bugs. Mitigation - Freelist Randomization • In previous XNU, the freelist that contains all the freed kernel objects inside a zone uses the LIFO (last-in-first-out) policy.
    [Show full text]
  • Pwc Weekly Cyber Security
    Threats and Threats and Malware Top story vulnerabilities vulnerabilities PwC Weekly Security Report This is a weekly digest of security news and events from around the world. Excerpts from news items are presented and web links are provided for further information. Malware Windows botnet spreads Mirai malware Threats and vulnerabilities Internet users urged to change passwords after Cloudbleed Threats and vulnerabilities Google’s Project Zero reveals vulnerability in Internet Explorer and Microsoft Edge Top story Crypto specialists break SHA-1 security standard Threats and Threats and Top story Malware vulnerabilities vulnerabilities Windows botnet spreads Mirai malware Security researchers from Kaspersky Lab are currently investigating the first Windows-based spreader for the Mirai malware, something that can have huge implications for companies that invested heavily in IoT. The spreader was apparently built by someone with "more advanced skills" than those that had created the original Mirai malware. This, Kaspersky Lab says, has "worrying implications for the future use and targets of Mirai-based attacks." It is richer and more robust than the original Mirai codebase, even though many of its components are "several years old." Its spreading capabilities are limited, as it can only deliver from an infected Windows host to a vulnerable Linux-powered IoT device. Even that -- if it can brute-force a remote telnet. It was also said that the author is likely Chinese- speaking, more experienced, but probably new to Mirai. "The appearance of a Mirai crossover between the Linux platform and the Windows platform is a real concern, as is the arrival on the scene of more experienced developers.
    [Show full text]
  • Project Zero
    Project Zero MAKE 0DAY HARD MAKE 0DAY HARD 1. Founding Principles 2. Team Operation 3. Classic Hits 4. Measuring Success 5. Lessons Learned 6. Next Steps Confidential + Proprietary 1. Founding Principles 2. Team Operation 3. Classic Hits 4. Measuring Success 5. Lessons Learned 6. Next Steps Confidential + Proprietary Good defense requires a detailed knowledge of offense. Attackers target the weakest link in the chain. Openness benefits defenders more than it benefits attackers. Challenging industry norms leads to improved security. 1. Founding Principles 2. Team Operation 3. Classic Hits 4. Measuring Success 5. Lessons Learned 6. Next Steps Confidential + Proprietary ○ Vulnerability research ○ Exploit development ○ Methodology building ○ Technical writing ○ Exploratory reading ○ Chatting with peers ○ Working with vendors/OSS projects ○ Software engineering ○ Presenting at conferences New methodologies for vulnerability discovery should either: a. Find bugs faster than we currently are, or b. Find bugs that we can't currently surface. Exploit Development 1. Ensures that the security impact of the bug is well understood 2. Establishes an equivalence class of similarly exploitable vulnerabilities 3. Surfaces new and improved exploit techniques 4. Generates appropriate amounts of urgency 5. Allows us to find areas of "fragility" in the exploit Structural Change ○ Attack surface reduction ○ Fixing bug classes ○ Better sandboxing ○ Process improvements ○ Exploit mitigations ○ Improved documentation advocates more than decision makers 1. Founding Principles 2. Team Operation 3. Classic Hits 4. Measuring Success 5. Lessons Learned 6. Next Steps Confidential + Proprietary Project Zero by the numbers 100+ technical blog posts 1500+ vulnerability reports 11,500,000+ blog page views 100,000,000+ disclosure debates cause effect Spectre and Meltdown -- by Jann Horn et al.
    [Show full text]
  • What the Experts Are Saying About Meltdown and Spectre
    What the experts are saying about Meltdown and Spectre The start of 2018 has been nothing short of exciting for the cybersecurity industry after Google Project Zero's infamous report on two existing CPU bugs. Spectre and Meltdown, two major processor flaws discovered in Intel, AMD, and ARM processors, allow attackers to access sensitive data that is handled by the CPU. While there are number of articles, blogs, white papers, and e-books available on these processor bugs, ManageEngine is bringing you this vendor-neutral digest on leading IT security and cybersecurity researchers' thoughts and advice on Meltdown and Spectre. Hear what the experts have to say on how these flaws can impact businesses, and what IT professionals need to do to mitigate Meltdown and Spectre. Harjit Dhaliwal (Microsoft MVP, senior systems administrator) If you've been closely following the news, especially news related to technology, then you're probably already aware of the Meltdown and Spectre security vulnerabilities, which were disclosed at the beginning of this year. You can read more details about these flaws and how they work on Google’s Project Zero. Basically, the flaws exploits what is technically a feature of modern processors to allow faster processing computation known as speculative execution, which is when a processor guesses your next operation based on previously cached iterations before it even happens. Typically, programs are not permitted to read or access data from other programs, however malicious attackers could take advantage and exploit the sensitive information stored in your memory, including passwords, banking information, and much more. Security researchers have revealed that nearly every computer chip manufactured in the last 20 years contains this fundamental security flaw, which affects personal computers, servers, mobile devices, and cloud computing.
    [Show full text]
  • Meltdown and Spectre Meltdown and Spectre Vulnerabilities in Modern Computers Leak Passwords and Sensitive Data
    6/17/2019 Meltdown and Spectre Meltdown and Spectre Vulnerabilities in modern computers leak passwords and sensitive data. Meltdown and Spectre exploit critical vulnerabilities in modern processors (The main part of every computer). These hardware vulnerabilities allow programs to steal data which is currently processed on the computer. While programs are typically not permitted to read data from other programs, a malicious program can exploit Meltdown and Spectre to get hold of secrets stored in the memory of other running programs. This might include your passwords stored in a password manager or browser, your personal photos, emails, instant messages and even business-critical documents. Meltdown and Spectre work on personal computers, mobile devices, and in the cloud. Depending on the cloud provider's infrastructure, it might be possible to steal data from other customers. Meltdown Meltdown breaks the most fundamental isolation between user applications and the operating system. This attack allows a program to access the memory, and thus also the secrets, of other programs and the operating system. https://meltdownattack.com 1/9 6/17/2019 Meltdown and Spectre If your computer has a vulnerable processor and runs an unpatched operating system, it is not safe to work with sensitive information without the chance of leaking the information. This applies both to personal computers as well as cloud infrastructure. Luckily, there are software patches against Meltdown. Meltdown Paper Cite arXiv Spectre Spectre breaks the isolation between different applications. It allows an attacker to trick error-free programs, which follow best practices, into leaking their secrets. In fact, the safety checks of said best practices actually increase the attack surface and may make applications more susceptible to Spectre Spectre is harder to exploit than Meltdown, but it is also harder to mitigate.
    [Show full text]
  • Exploiting Speculative Execution
    Spectre Attacks: Exploiting Speculative Execution Paul Kocher1, Jann Horn2, Anders Fogh3, Daniel Genkin4, Daniel Gruss5, Werner Haas6, Mike Hamburg7, Moritz Lipp5, Stefan Mangard5, Thomas Prescher6, Michael Schwarz5, Yuval Yarom8 1 Independent (www.paulkocher.com), 2 Google Project Zero, 3 G DATA Advanced Analytics, 4 University of Pennsylvania and University of Maryland, 5 Graz University of Technology, 6 Cyberus Technology, 7 Rambus, Cryptography Research Division, 8 University of Adelaide and Data61 Abstract—Modern processors use branch prediction and spec- leverage hardware vulnerabilities to leak sensitive information. ulative execution to maximize performance. For example, if the Attacks of the latter type include microarchitectural attacks destination of a branch depends on a memory value that is in the exploiting cache timing [8, 30, 48, 52, 55, 69, 74], branch process of being read, CPUs will try to guess the destination and attempt to execute ahead. When the memory value finally arrives, prediction history [1, 2], branch target buffers [14, 44] or open the CPU either discards or commits the speculative computation. DRAM rows [56]. Software-based techniques have also been Speculative logic is unfaithful in how it executes, can access the used to mount fault attacks that alter physical memory [39] or victim’s memory and registers, and can perform operations with internal CPU values [65]. measurable side effects. Several microarchitectural design techniques have facilitated Spectre attacks involve inducing a victim to speculatively perform operations that would not occur during correct program the increase in processor speed over the past decades. One such execution and which leak the victim’s confidential information via advancement is speculative execution, which is widely used a side channel to the adversary.
    [Show full text]
  • Google's Project Zero and the Future of Altruistic Internet Security
    Google’s Project Zero and the Future of altruistic Internet Security By Katie Kurtz Abstract Google announced its new, web security initiative known as Project Zero in July 2014. Project Zero aims to address security flaws in popular third­party software that may be utilized by the networking giant. The goal is to identify and alert these companies to any vulnerabilities that could put internet users at risk. Zero­day vulnerabilities, or when unnoticed bugs allow attackers the chance to target thousands of users, are one of the biggest threats to web users. These vulnerabilities have been exploited by predators, state­sponsored hackers, and government agencies alike. Project Zero is the first example of a single team attempting to secure the entire web for primarily altruistic reasons. This paper will examine the risks of the current every­man­for­himself system of cyber security and the steps already taken by Google and Project Zero to secure the web, as well as the future implications of altruistic and universal web security and threat analysis. Introduction A brief look at the security structure of the internet The security of the internet has no form of regulation. At this point, safety and security is up to individual vendors. This system has not left internet users very secure. Google recently made the first step toward a perceived change. The internet giant announced in July that it created a team with the single responsibility of discovering zero­day vulnerabilities in third party software. They claim that they hope to offer a more secure browsing experience for Google users, but that their motivation is primarily altruistic.
    [Show full text]
  • Content Delivery Network By: Julian G., Ali N
    Content Delivery Network By: Julian G., Ali N. and Siddharth B. Presentation Structure What is CDN? Moving Forward... Why is it important ? and What do 01 04 Addressing the Issue and you need to know? preventing them from happening. Defences Issues with CDN Here you could describe Different types of Attack Surfaces 02 05 the topic of the section and Vectors, Case Studies CDN Security Breaches, Attacker 03 Strategies and its Effect What is CDN? Is a system of distributed servers (network) that deliver webpages and other web content to a user based on geographical locations of a user, origin of the webpage and a content delivery server. Consists of: Edge locations: Location at which Content is Cached. Object based storage & Object are cached for TTL. Origin:The origin of all files that the CDN will distribute. Distribution: Name given to CDN which consists of a collection of Edge locations. 2 Main Type of Distributions: 1) Web Distribution- Typically for Websites 2) RTMP - Used for Media Streaming (Adobe Flash Flies) Overlay Network? Growing Traffic Means Growing Vulnerabilities! Why Should you care about CDN? CDN is the Middleman in All of This! Applications of CDN SECURE FAST & COST-EFFECTIVE ACCESSIBLE & RELIABLE Improves website security Improves website load Increases content times and Reduces availability and redundancy bandwidth costs The popularity of CDN services continues to grow, and today the majority of web traffic is served through CDNs, including traffic from major sites like Facebook, Netflix, Instagram, Meme sites and Porn
    [Show full text]