Machine Learning Algorithms for the Analysis and Detection of Network Attacks

Total Page:16

File Type:pdf, Size:1020Kb

Machine Learning Algorithms for the Analysis and Detection of Network Attacks MACHINE LEARNING ALGORITHMS FOR THE ANALYSIS AND DETECTION OF NETWORK ATTACKS by Maryam Mousaarab Najafabadi A Dissertation Submitted to the Faculty of The College of Engineering and Computer Science in Partial Fulfillment of the Requirements for the Degree of Doctor of Philosophy Florida Atlantic University Boca Raton, FL August 2017 Copyright 2017 by Maryam Mousaarab Najafabadi ii ACKNOWLEDGEMENTS First and foremost, I would like to acknowledge my graduate advisor and men- tor, Dr. Taghi M. Khoshgoftaar. His unwavering support, patience, and knowledge have helped me to become the researcher I am today. I would also like to thank Dr. Bassem Alhalabi, Dr. Xingquan Zhu, and Dr. Hanqi Zhuang, for being on my PhD supervisory committee. I want to thank the members of FAU security analytic group, Mr. Richard Zuech and especially Mr. Chad Calvert and Mr. Clifford Kemp for their data collection efforts. I would like to acknowledge NSF I/UCRC which provided a framework for interaction between FAU faculty and industry, as well as the LexisNexis company for supporting my research assistantship position during my PhD studies. I want to thank Mr. Richard Bauder, from FAU Data Mining and Machine Learning Laboratory, for his constructive reviews of this dissertation. My thanks also go to the other members of the FAU Data Mining and Machine Learning Laboratory at Florida Atlantic University for their continued feedback and support. I also gratefully acknowledge partial support by the National Science Founda- tion, under grant number CNS- 1427536. Any opinions, findings, and conclusions or recommendations expressed in this dissertation are those of the author and do not necessarily reflect the views of the National Science Foundation. iv ABSTRACT Author: MaryamMousaarabNajafabadi Title: Machinelearningalgorithmsfortheanalysisanddetection of network attacks Institution: Florida Atlantic University Dissertation Advisor: Dr. Taghi M. Khoshgoftaar Degree: DoctorofPhilosophy Year: 2017 The Internet and computer networks have become an important part of our organizations and everyday life. With the increase in our dependence on computers and communication networks, malicious activities have become increasingly prevalent. Network attacks are an important problem in today’s communication environments. The network traffic must be monitored and analyzed to detect malicious activities and attacks to ensure reliable functionality of the networks and security of users’ information. Recently, machine learning techniques have been applied toward the detection of network attacks. Machine learning models are able to extract similarities and patterns in the network traffic. Unlike signature based methods, there is no need for manual analyses to extract attack patterns. Applying machine learning algorithms can automatically build predictive models for the detection of network attacks. This dissertation reports an empirical analysis of the usage of machine learning methods for the detection of network attacks. For this purpose, we study the detection of three common attacks in computer networks: SSH brute force, Man In The Middle (MITM) and application layer Distributed Denial of Service (DDoS) attacks. Using outdated and non-representative benchmark data, such as the DARPA dataset, in the v intrusion detection domain, has caused a practical gap between building detection models and their actual deployment in a real computer network. To alleviate this limitation, we collect representative network data from a real production network for each attack type. Our analysis of each attack includes a detailed study of the usage of machine learning methods for its detection. This includes the motivation behind the proposed machine learning based detection approach, the data collection process, feature engineering, building predictive models and evaluating their performance. We also investigate the application of feature selection in building detection models for network attacks. Overall, this dissertation presents a thorough analysis on how machine learning techniques can be used to detect network attacks. We not only study a broad range of network attacks, but also study the application of different machine learning methods including classification, anomaly detection and feature selection for their detection at the host level and the network level. vi To my beloved family, my parents, Mostafa and Manije, my sisters, Anna and Elahe and my brother, Ehsan. You are the greatest treasure in my life. None of my success would be possible without your endless love and support. MACHINE LEARNING ALGORITHMS FOR THE ANALYSIS AND DETECTION OF NETWORK ATTACKS List of Tables .............................. xi List of Figures ............................. xii 1 Introduction .............................. 1 1.1 Motivation ................................. 1 1.1.1 Intrusion Detection ........................ 1 1.1.2 Machine Learning for the Detection of Network Attacks . 2 1.1.3 Lack of Proper Intrusion Detection Public Data . 3 1.2 Contributions ............................... 6 1.3 Dissertation Structure .......................... 7 2 Methodology .............................. 8 3 SSH Brute Force Attacks ....................... 15 3.1 Background and Motivation ....................... 15 3.2 Related Work ............................... 19 3.3 Data Collection .............................. 20 3.4 Detection of SSH Brute Force Attacks ................. 23 3.5 Experimental Results and Analysis ................... 28 3.6 Chapter Summary ............................ 29 4 Man In The Middle Attacks ..................... 31 4.1 Background and Motivation ....................... 31 viii 4.2 Related Work ............................... 35 4.3 Data Collection .............................. 38 4.4 Detection of Man In The Middle Traffic ................. 42 4.4.1 General Approach ......................... 42 4.4.2 Selecting a Subset of Packet Header Fields ........... 46 4.5 Experimental Results and Analysis ................... 49 4.6 Chapter Summary ............................ 54 5 Application Layer DDoS Attacks ................... 56 5.1 Background and Motivation ....................... 56 5.2 Related Work ............................... 63 5.3 Data Collection .............................. 65 5.4 User Behavior Anomaly Detection .................... 69 5.4.1 Defining User Behavior ...................... 71 5.4.2 Detecting Anomalous User Behaviors .............. 74 5.5 Experimental Results and Analysis ................... 78 5.5.1 Results for PCA-subspace Anomaly Detection ......... 78 5.5.2 Results for One-class SVM Anomaly Detection ......... 80 5.5.3 Comparison analysis ....................... 82 5.6 Chapter Summary ............................ 84 6 Feature Selection ............................ 86 6.1 Background and Motivation ....................... 86 6.2 Related Work ............................... 88 6.3 Methodology ............................... 91 6.3.1 Evaluating Feature Selection Methods for Detection of Network Attacks .............................. 91 6.3.2 Ensemble of Feature Selection Methods for Analyzing Impor- tant Features ........................... 95 6.4 Experimental Results and Analysis ................... 100 ix 6.4.1 Results for Evaluating Feature Selection Methods for Detection of Network Attacks ........................ 100 6.4.2 Results for Ensemble of Feature Selection Methods for Analyz- ing Important Features ...................... 107 6.5 Chapter Summary ............................ 109 7 Conclusion and Future Works .................... 112 7.1 Conclusions ................................ 113 7.1.1 Data Collection .......................... 113 7.1.2 Machine Learning Methods for The Detection of Network Attacks 115 7.1.3 Future Work ............................ 118 Bibliography .............................. 119 x LIST OF TABLES 3.1 Description of features extracted from aggregated data ........ 24 3.2 Cross validation results .......................... 29 4.1 Collected data information ........................ 40 4.2 Selected header fields for each attack and the whole data ....... 51 4.3 Selected header fields for each attack and the whole data when check- sum and length-related fields are removed ............... 51 4.4 Performance results for different subsets of packet header fields and different datasets ............................. 52 5.1 Attack variants .............................. 70 5.2 Number of instances in each dataset ................... 78 5.3 AUC and number of instance for each attack type ........... 82 6.1 Details of the dataset ........................... 92 6.2 Description of features extracted from sessions ............. 98 6.3 AUC values for different combination of feature selection and classifi- cation methods. .............................. 103 6.4 ANOVA Results .............................. 104 6.5 Selected features by the ensemble of rankers. .............. 107 6.6 Cross validation results on the whole feature set ............ 108 6.7 Cross validation results on the selected feature set with 7 features . 108 6.8 ANOVA Results .............................. 109 xi LIST OF FIGURES 2.1 General methodology ........................... 8 2.2 Network topology ............................. 11 4.1 Man In The Middle (MITM) Attack .................. 32 4.2 Half-duplex Man In The Middle ..................... 43 4.3 Full-duplex Man In The Middle ..................... 43 4.4 Plotted TPR results for Table 4.4 .................... 53 5.1 Distributed Denial of Service
Recommended publications
  • Impact of Distributed Denial-Of-Service Attack On
    View metadata, citation and similar papers at core.ac.uk brought to you by CORE provided by Sheffield Hallam University Research Archive Impact of Distributed Denial-of-Service Attack on Advanced Metering Infrastructure Satin Asri1 and Bernardi Pranggono2 1Department of Computer Science and Engineering Manipal Institute of Technology Manipal, India Email: [email protected] 2School of Engineering and Built Environment Glasgow Caledonian University Glasgow, UK Email: [email protected] Abstract The age of Internet of Things (IoT) has brought in new challenges specifically in areas such as security. The evolution of classic power grids to smart grids is a prime example of how everything is now being connected to the Internet. With the power grid becoming smart, the information and communication systems supporting it is subject to both classical and emerging cyber-attacks. The article investigates the vulnerabilities caused by distributed denial-of-service (DDoS) attack on the smart grid advanced metering infrastructure (AMI). Attack simulations have been conducted on a realistic electrical grid topology. The simulated network consisted of smart meters, power plant and utility servers. Finally, the impact of large scale DDoS attacks on the distribution system’s reliability is discussed. Keywords advanced metering infrastructure (AMI); distributed denial-of- service (DDoS); smart grid; smart meter 1 Introduction In 2011 McAfee reported over 60% of critical infrastructure companies regularly found malware designed to attack their systems. Smart grid is arguably the most fundamental cyber-physical infrastructures of the humankind and modern society. Smart grid and advanced metering infrastructure (AMI) or commonly known as the smart meter are considered as the main signs of classical electrical grids evolution toward smarter grids.
    [Show full text]
  • Guide to Ddos Attacks November 2017
    TLP: WHITE Guide to DDoS Attacks November 2017 This Multi-State Information Sharing and Analysis Center (MS-ISAC) document is a guide to aid partners in their remediation efforts of Distributed Denial of Service (DDoS) attacks. This guide is not inclusive of all DDoS attack types and references only the types of attacks partners of the MS-ISAC have reported experiencing. Table Of Contents Introduction .................................................................................................................................................................. 1 Standard DDoS Attack Types ................................................................................................................................... 4 SYN Flood ................................................................................................................................................................ 4 UDP Flood................................................................................................................................................................ 5 SMBLoris .................................................................................................................................................................. 7 ICMP Flood .............................................................................................................................................................. 8 HTTP GET Flood .................................................................................................................................................
    [Show full text]
  • A Contemporary Survey and Taxonomy of the Distributed Denial-Of- Service Attack in Server
    International Journal of Computer Trends and Technology (IJCTT) – Volume 63 Number 1 – September 2018 A Contemporary Survey and Taxonomy of the Distributed Denial-of- Service Attack in Server B.Hemalatha#1, Dr.N.Sumathi#2 #1 Research Scholar, Department of Information Technology,Ramakrishna College of Arts and Science, Coimbatore,Tamil Nadu, India #2 Head ,Department of Information Technology,Ramakrishna College of Arts and Science, Coimbatore,Tamil Nadu, India Abstract Distributed Denial-of-service (DDoS) attack is instigate DDoS attacks from number of compromised one of the most perilous threats that could cause host and take down virtually any connection, any overwhelming effects on the web. The name entails, it’s network on the Internet or web by just a little command an attack with the purpose of denying service to keystrokes. legitimate users, Distributed Denial of Service (DDoS) is defined as an attack in which several conciliation DDoS attack works in different faces like flooding systems are made to attack and make the targeted attack or SYN flooding attack, logic attack and systems services unavailable, this attack deliberately protocol-based attack. designed to render a system or network incapable of providing normal services. DDoS attack affects the (a)Flooding attack or SYN flooding attack is an computing environment, communication and server attack in which it sends unwanted malicious packets to resources such as connectivity sockets, processing the network, i.e. either the node may send duplicated elements, memory, data bandwidth, network routing packets or the node systems may send the unique process etc for mutually connected system environment packets which exceed its appropriate limit.
    [Show full text]
  • Distributed Denial of Service Attacks, Tools and Defence Mechanisms
    International Journal of Pure and Applied Mathematics Volume 120 No. 6 2018, 3423-3437 ISSN: 1314-3395 (on-line version) url: http://www.acadpubl.eu/hub/ Special Issue http://www.acadpubl.eu/hub/ DISTRIBUTED DENIAL OF SERVICE ATTACKS, TOOLS AND DEFENCE MECHANISMS Mr. KISHORE BABU DASARI1, Dr. D NAGARAJU2, ASST. PROFESSOR, DEPT OF CSE, KMIT PROFESSOR HOD, DEPT OF IT, LBRCE [email protected] dnagaraj [email protected] June 11, 2018 Abstract Denial Of Service (DOS) attacks are the eminent network attacks in todays internet world. Their target is to wreck the resources of the victim machine. A DOS is assayed by a person, the DOS attack essayed by apportioned persons, is called Distributed Denial Of Service (DDOS). This paper evinces, the DDOS attack architecture, DDOS attack types, DDOS attack tools, and DDoS attack defence mechanisms. This paper, essentially unveils the DDoS attack defence, based on location posit and on activity deployment. This paper presents the boon and bane, of the different DDoS defence mechanisms. The desired objective of this paper, is to sort and properly organize the attacks and existing mechanisms, in codified order, for a better know-how and understanding, of DDOS attacks. Keywords: Denial Of Service; Distributed Denial Of Service; DDOS tools; DDOS Defence. 1 3423 International Journal of Pure and Applied Mathematics Special Issue 1 INTRODUCTION Networks attacks, repudiate the access of computer network resources by using malignant node, known as availability based network attacks. Denial Of Service(DOS)[1][5][23], is sort of an active information security attack, which is an emphatic trial to squander the victim resources, like a machine or network resource provisionally or perpetually, for legitimate users by an enormous amount of pernicious packets which are sent from a single machine.
    [Show full text]
  • S. Shiaeles: Real Time Detection and Response of Distributed Denial of Service Attacks for Web Services
    Contents Real time detection and response of distributed denial of service attacks for web services A thesis submitted for the degree of Doctor of Philosophy by Stavros Shiaeles Democritus University of Thrace Department of Electrical and Computer Engineering Xanthi, October 2013 i Contents Copyright ©2013 Stavros Shiaeles Democritus University of Thrace Department of Electrical and Computer Engineering Building A, ECE, University Campus – Kimmeria, 67100 Xanthi, Greece All rights reserved. No parts of this book may be reproduced or transmitted in any form or by any means, electronic, mechanical, photocopying, recording, or otherwise, without the prior written permission of the author. ii Contents I would like to dedicate this thesis to my parents. iii Contents iv Contents Contents Advising Committee of this Doctoral Thesis .................................... ix Approved by the Examining Committee .......................................... xi Acknowledgements ........................................................................ xiii Abstract ......................................................................................... xv Extended Abstract in Greek (Περίληψη) ......................................... xvii List of Figures ................................................................................ xxiii List of Tables .................................................................................. xxv Abbreviations ................................................................................. xxvii Chapter 1: Introduction
    [Show full text]
  • Distributed Denial of Service Attacks on the Rise: What Community Bank Ceos Should Know
    Illinois Department of Financial and Professional Regulation Division of Banking PAT QUINN MANUEL FLORES Governor Acting Secretary Memorandum To: All Illinois Financial Institutions From: Manny Flores, Acting Secretary Subject: Distributed Denial of Service Attacks planned for May 7, 2013 As you are probably aware, cyber thieves and hacktivist groups (hackers that disrupt online services for social causes) are increasingly in the news for their use of distributed denial of service (DDoS) attacks on the banking system. Recently a group of hacktivists announced on Pastebin (a publicly available website where hacktivists post announcements) that they plan to initiate a campaign of cyber-attacks, named OpUSA, against U.S. financial institutions’ websites beginning today, May 7th. Previous efforts by this group have had limited impact; however, there have been additional Pastebin postings inviting other hacktivists groups to join or support the planned attacks. The FBI has been reaching out to financial institutions directly to inform them of these postings. I’ve enclosed information about Distributed Denial of Service Attacks and the steps you can take to help minimize the risk of an attack. Please share this information with your institutions Incident Response Team. Also enclosed you will find the latest FBI Liaison Alert System (FLASH Message) message. FLASH message contains critical technical information collected by the FBI for use by both interagency and private sector partners. This report is intended for liberal distribution throughout the financial sector to provide recipients with actionable intelligence, which will aid in timely victim notification and response. Every FLASH Message has a unique alpha-numeric tag, which can be located at the top of each report.
    [Show full text]
  • Ddos Handbook.Pdf
    DDoS HANDBOOK THE ULTIMATE GUIDE TO EVERYTHING YOU NEED TO KNOW ABOUT DDoS ATTACKS SHARE THE DDoS HANDBOOK © 2015 Radware, Ltd. All Rights Reserved. Radware and all other Radware product and service names are registered trademarks of Radware in the U.S. and other countries. All other trademarks and names are the property of their respective owners. DDoS Handbook Table of Contents 1 Introduction ...........................................................................................................4 2 A Quick Look Back .................................................................................................5 3 Recent History: Notable Cyber-Attacks of 2014 ......................................................8 4 Attack Types ........................................................................................................10 5 Attack Tools .........................................................................................................19 6 Enterprise Security: Then and Now.......................................................................24 7 What Lies Ahead: Predictions for 2015 and Beyond ..............................................29 8 DDoS Mitigation Considerations ...........................................................................31 9 Checklist: How to Evaluate a Vendor for DDoS & Cyber-Attack Mitigation .............35 10 DDoS Dictionary ..................................................................................................37 1 Introduction Since the first denial of service (DoS) was
    [Show full text]
  • A Comprehensive Study on Distributed Denial of Service Attacks and Defense Mechanisms
    International Journal of Computer Applications (0975 – 8887) International Conference on Information and Communication Technologies (ICICT- 2014) A Comprehensive Study on Distributed Denial of Service Attacks and Defense Mechanisms Pavithra K.C Snitha Shetty Dr. Nagesh H.R IV Semester, M.Tech. IV Semester, M Tech. Professor & Head Dept. of CSE Dept. of CSE Dept. of CSE MITE, Moodabidri MITE, Moodabidri MITE, Moodabidri ABSTRACT Service (DDoS) attack. The result of a DDoS attack is The advances in information technologies in the internet are amplified and the problem of defence is made tougher by increasing the possibility of attacks exponentially. Denial of using multiple attackers. In such cases, it is harder to detect Service (DoS) and Distributed Denial of Service (DDoS) and block attackers manually, so special defences are needed attacks are increasing rapidly across the internet world. Denial to detect and defend against such large-scale attacks. of Service (DoS) is an attack on availability of a service. The Attackers infect thousands of computers spread across the attack aims at denying of an approved service to a legitimate world with sophisticated malware technologies in order to user. When a group of attackers perform DoS attack on a gain unauthorized access to such systems. Attackers do not common target, the attack is known as DDoS. The most really control their attacking machines.Thousands of common method of performing a DoS or a DDoS attacks is to compromised machines act as an army under the command of flood the target or network with unwanted traffic, causing one attacker. Such a collection of thousands of machines is interruptions to the communication of legitimate users.
    [Show full text]
  • The Ultimate Guide to Everything You Need to Know About Ddos Attacks
    DDoS SURVIVAL HANDBOOK The Ultimate Guide to Everything You Need To Know About DDoS Attacks How to: » Identify Attack Types and Understand Their Effects » Recognize Attack Tools » Protect Your Organization Against DoS and DDoS Attacks SHARE THE DDoS SURVIVAL HANDBOOK 1 © 2013 Radware, Ltd. All Rights Reserved. Radware and all other Radware product and service names are registered trademarks of Radware in the U.S. and other countries. All other trademarks and names are the property of their respective owners. Table of Contents 1 Introduction ................................................................................... 4 2 Understanding DoS and DDoS Attacks .......................................... 6 3 Evolution of DDoS .......................................................................12 4 Who is Behind the Attacks and What are the Motives? ................16 5 What It’s Like to Get Hit With a DDoS Attack – An Inside View ......20 6 Attack Types and Their Effects ......................................................25 7 Attack Tools .................................................................................38 8 Protecting Your Organization from DDoS Attacks ..........................43 9 Conclusion ..................................................................................52 Introduction 1 Although the Internet was designed to allow for easy sharing of information between various interconnected computers and networks, it was not designed with security in mind. The digital equivalents of viruses, pathogens, and
    [Show full text]
  • Methods and Techniques for Dynamic Deployability of Software-Defined
    ALMA MATER STUDIORUM · UNIVERSITA` DI BOLOGNA Dottorato di Ricerca in Ingegneria Elettronica, Telecomunicazioni e Tecnologie dell’Informazione Ciclo XXXII Settore concorsuale: 09/F2 - TELECOMUNICAZIONI Settore scientifico disciplinare: ING-INF/03 - TELECOMUNICAZIONI METHODS AND TECHNIQUES FOR DYNAMIC DEPLOYABILITY OF SOFTWARE-DEFINED SECURITY SERVICES Presentata da: Roberto Doriguzzi Corin Coordinatore dottorato: Supervisori: Prof. Alessandra Costanzo Prof. Franco Callegati Dr. Domenico Siracusa Dipartimento di Ingegneria dell’Energia Elettrica e dell’Informazione “Guglielmo Marconi” Esame finale anno 2020 1 Abstract ith the recent trend of “network softwarisation”, enabled by emerging tech- W nologies such as Software-Defined Networking (SDN) and Network Func- tion Virtualisation (NFV), system administrators of data centres and enterprise net- works have started replacing dedicated hardware-based middleboxes with virtualised network functions running on servers and end hosts. This radical change has facili- tated the provisioning of advanced and flexible network services, ultimately helping system administrators and network operators to cope with the rapid changes in service requirements and networking workloads. This thesis investigates the challenges of provisioning network security services in “softwarised” networks, where the security of residential and business users can be provided by means of sets of software-based network functions running on high performance servers or on commodity compute devices. The study is approached from the perspective of the telecom operator, whose goal is to protect the customers from network threats and, at the same time, maximize the number of provisioned services, and thereby revenue. Specifically, the overall aim of the research presented in this thesis is proposing novel techniques for optimising the resource usage of software-based security services, hence for increasing the chances for the operator to accommodate more service requests while respecting the desired level of network security of its customers.
    [Show full text]
  • Security Best Practices for Non-Voting Election Technology
    October 2019 v1.1 Security Best Practices Network & Hosting for Non-Voting Election Technology Recommendations: ★ ★ ★ ★★ ★ ★ ★ ★ Security Best Practices for Non-Voting Election Technology About CIS Center for Internet Security, Inc. (CIS®) is a forward-thinking, non-profit entity that harnesses the power of a global IT community to safeguard private and public organizations against cyber threats. Our CIS Controls® and CIS Benchmarks™ are the global standard and recognized best practices for securing IT systems and data against the most pervasive attacks. These proven guidelines are continuously refined and verified by a volunteer, global community of experienced IT professionals. CIS is home to the Multi-State Information Sharing and Analysis Center® (MS-ISAC®), the go-to resource for cyber threat prevention, protection, response, and recovery for U.S. State, Local, Tribal, and Territorial government entities, and the Elections Infrastructure Information Sharing and Analysis Center® (EI-ISAC®), which supports the cybersecurity needs of U.S. State, Local and Territorial elections offices. Except as otherwise specified herein, the content of this publication is licensed under Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (CC-BY-NC-SA-4.0). https://creativecommons.org/licenses/by-nc-sa/4.0/ 31 Tech Valley Drive East Greenbush, New York 12061 T: 518.266.3460 F: 518.266.2085 www.cisecurity.org Follow us on Twitter @CISecurity Security Best Practices for Non-Voting Election Technology Table of Contents 1 Acknowledgments
    [Show full text]
  • Towards Iot-Ddos Prevention Using Edge Computing
    Towards IoT-DDoS Prevention Using Edge Computing Ketan Bhardwaj, Joaquin Chung Miranda, Ada Gavrilovska Georgia Institute of Technology Abstract Google’s Project Shield [9], Akamai [11] or CloudFlare [12], Application-level DDoS attacks mounted using compro- who offer on-demand DDoS protection as a service. mised IoT devices are emerging as a critical problem. The Can the Edge Help? In this paper, we explore an approach application-level and seemingly legitimate nature of traffic which leverages computational resources in the edge of the in such attacks renders most existing solutions ineffective, network to accelerate the defense from IoT-DDoS attacks, and and the sheer amount and distribution of the generated traffic arrest them before they can cause considerable damage to both make mitigation extremely costly. This paper proposes a new the attack target as well the Internet infrastructure itself. approach which leverages edge computing to deploy edge We are motivated by the following observations. First, de- functions that gather information about incoming traffic and tection of a DDoS is best done close to the victim, whereas its communicate that information via a fast-path with a nearby mitigation and prevention are most effective close to the attack detection service. This accelerates the detection and the arrest source. Second, the emergence of a new infrastructure tier of such attacks, limiting their damaging impact. Preliminary at the edge of the network, including mobile edge computing investigation shows promise for up to 10x faster detection that (MEC) access points [33], fog computing gateways [26], and reduces up to 82% of the Internet traffic due to IoT-DDoS.
    [Show full text]