COMPARISON OF THE ACCURACY OF BIVARIATE REGRESSION AND BOX PLOT ANALYSIS IN DETECTING DDOS ATTACKS

Size: px
Start display at page:

Download "COMPARISON OF THE ACCURACY OF BIVARIATE REGRESSION AND BOX PLOT ANALYSIS IN DETECTING DDOS ATTACKS"

Transcription

1 International Journal of Electronics and Communication Engineering & Technology (IJECET) Volume 6, Issue 12, Dec 2015, pp , Article ID: IJECET_06_12_007 Available online at ISSN Print: and ISSN Online: IAEME Publication COMPARISON OF THE ACCURACY OF BIVARIATE REGRESSION AND BOX PLOT ANALYSIS IN DETECTING DDOS ATTACKS Samer Charbaji Department of Electrical and Computer Engineering, Faculty of Engineering and Architecture, American University of Beirut, Lebanon ABSTRACT In this paper, we compare the accuracy of two different host based statistical methods, the univariate box plot and bivariate linear regression, in detecting distributed denial of service (DDOS) attacks. The receiver operating characteristic curves (ROCs) of the two methods are plotted and the comparison is performed based on the two curves. The results of our study show that the two methods have very close results when it comes to their ROC curves and their accuracy in detecting attacks in our data set. Cite this Article: Samer Charbaji. Comparison of the Accuracy of Bivariate Regression and Box Plot Analysis in Detecting DDOS Attacks. International Journal of Electronics and Communication Engineering & Technology, 6(12), 2015, pp INTRODUCTION DDOS attacks pose a serious threat to the security of the internet. DDOS attacks overwhelm online servers and hosts by sending large amounts of packets from many different sources thereby taking them off the network [1]. The effectiveness of DDOS attacks can be attributed to the presence of many simple yet powerful attack tools that automate the attack and that require little knowledge on the side of the attacker. The attack tools themselves carry out different types of attacks which include variants of packet transmission such HTTP request, UDP, and SYN floods [2]. Intrusion Detection Systems (IDSs) are systems used in order to detect attacks. They analyze and process network data in order to detect the presence of any unusual behavior or exploitation attempts on the network and then classify these patterns as either attacks or normal traffic. The main assumption behind IDSs is that there exists a difference between normal and attacker traffic and, as a result, detection can occur 43 editor@iaeme.com

2 Samer Charbaji by capturing normal traffic patterns and comparing them with current network behavior in order to identify and single out anomalous user behavior [3]. This makes detection difficult due to the unpredictability of attacks and normal user behavior. The unpredictability of attacks is due to the different methods and attack patterns used whereas the unpredictability of normal user behavior is attributed to the phenomena of flash-crowds which constitute unpredictable increases in legitimate user traffic in a manner that resembles DDOS attacks [4]. IDS detection methods can be categorized into two general categories: signature and profile based detection [5]. Signature based methods work by collecting data and searching for matches between the data and the signatures of known attacks. Profile based methods, on the other hand, collect data and establish normal user behavior profiles and then search for deviations from these profiles in the network. One of the widely used techniques in profile based detection are statistical techniques [6]. These techniques rely on collecting normal user traffic data over a period of time and then conducting statistical tests in order to single out anomalous activities. The purpose of this paper is compare the accuracy of two different host based statistical techniques in detecting DDOS attacks. The first technique used is a simple univariate statistic, the box plot, which works by detecting outliers and classifying them as attacks [7] whereas the second technique used is bivariate regression analysis which takes in different data in order to predict the occurrence of an attack [8]. The comparison of the accuracy of the two methods is done by comparing the receiver operating characteristic (ROC) curves of the two methods. 2. RELATED WORK Many researchers have adapted statistical techniques for DDOS detection and some have made comparisons between different methods. Feinstein et al [9] used entropy calculation and chi-square statistic on packet header fields such as source and destination address and ports used in order to detect DDOS attacks and compared the two methods. Xiao et al [10] have performed attack detection by using correlation based k-nearest neighbor analysis in order to classify the data into different data sets and new data was compared to the different available data sets and attacks were identified. They generally compared the effectiveness of their method against other statistical methods. Jin et al [11] calculated the correlation between different header fields such as the RST, SYN, and FIN flags in order to detect changes in network behavior. Gautam et al [12] used multivariate linear regression on system log file attributes such as page faults, allocation, and cache bytes in order to detect attacks. Om et al [13] used principle component analysis and Gaussian mixture distributions on system log file attributes such as page writes and cache faults in order to detect anomalous traffic and compared the two. Mok et al [6] used logistical regression on different header fields such as protocol type and TCP flags in order to detect attacks. Wu et al [5] used factor analysis on source and destination IP addresses and ports along with the protocol type and TCP flags and then calculated the Mahalanobis distance in order to perform the detection of anomalous traffic variations. Other researchers have adapted different techniques for DDOS detection. Ye et al [14] used clustering analysis on user session features in order to extract request rates, transition patterns, object requested popularity, and the size of the requested objects. User behaviors are then grouped into different clusters and attacks are detected when they fail to fit in any of the clusters. Lie et al [15] used neural networks taking the traffic duration, intensity, and packet numbers as inputs in order to detect network 44 editor@iaeme.com

3 Comparison of The Accuracy of Bivariate Regression and Box Plot Analysis In Detecting DDOS Attacks attacks. Saied et al [16] used artificial neural networks that were trained with patterns of both normal and abnormal traffic in order to perform detection. 3. IMPLEMENTATION The comparison that was performed consisted of three stages: collecting network data, performing detection accuracy analysis using each method, and then comparing the results. Network data was collected over a time period spanning three weeks on a host using Wireshark. The data was aggregated on an hour by hour basis and exported as a CSV file to Excel where it was subsequently analyzed. The data collected consisted of both normal and malicious network traffic and the analysis consisted of calculating the total number of SYN and FIN packets included within each hour of data. The malicious network traffic was due to distributed SYN flood attacks which were executed using an automated SYN flooding tool, Hyenae FE. After the total SYN and FIN were obtained for every hour and placed in a spreadsheet as seen in Figure 1, the difference between the two was taken. With the data acquisition complete, the statistical methods could now be used and their results compared. Figure 1 SYN and FIN Analyzed 4. BOX PLOT The box plot method works by calculating the average and standard deviation of the data set and then considers data points above a certain threshold of standard deviations away as attacks. In our implementation, the difference of SYN total and FIN total was used as the parameter and its average and standard deviation were calculated. The threshold of standard deviation was changed multiple times and the resulting percentage detection and percentage false positives (false alarm) were calculated according to the equations (1) and (2), where a false positive is considered to occur when normal traffic is considered falsely to be an attack. A plot of the % Detection as a function of % False Alarm was constructed which is the ROC of the box plot method as shown in Figure editor@iaeme.com

4 % Detection Samer Charbaji ROC Curve - Box Plot % False Alarm Figure 2 ROC of Box Plot 5. BIVARIATE REGRESSION Regression is an explanatory and predictive technique that enables us to predict a dependent variable using independent variable(s). In our implementation we used bivariate regression with the difference between SYN total and FIN total as the independent variable and the Attack/No-Attack as our dependent variable placing a 0 for No-Attack and 1 for Attack. We then perform the analysis and get the predictions as shown in Figure 3. The predictions fall between 0 and 1 and according to the threshold placed between 0 and 1 we consider the data point to be an attack or normal traffic. We vary the aforementioned threshold and calculate the % Detection and % False Alarm as in Equation (1) and (2) for each threshold. This gives us the ROC of the bivariate regression shown in Figure 4. Figure 3 Regression Analysis 46 editor@iaeme.com

5 % Detection Comparison of The Accuracy of Bivariate Regression and Box Plot Analysis In Detecting DDOS Attacks 100 ROC Curve-Bivariate Regression % False Alarm Figure 4 ROC-Bivariate Regression 6. RESULTS In comparing the ROC curves of the two methods, we find that both curves are very similar. We notice a large increase in % Detection at first as we increase the %False Alarm slightly. The % Detection than reaches a plateau until it then continues to increase linearly with the %False Alarm. The above comparison shows us that the bivariate regression which is more computationally intensive gives results comparable to that of the simple box plot method when performed on our data set. This shows that the complexity of the method used in this study did not affect the accuracy of the results obtained where the simpler method gave a slightly better detection capability sacrificing a smaller false alarm percentage to reach the same percentage detection. 7. CONCLUSION Both bivariate regression analysis and the univariate box plot can be used in order to detect attacks with variable sensitivity. The results of our study show that even with its simplicity and small computational requirement the box plot method is able to provide the same, albeit slightly better results, than the more computationally intensive and complicated bivariate regression and as such we can see that the complexity of a method and its computation intensity may not always give us better results. Future research should implement both methods on different data sets in order to track the difference and give a more generalized comparison between the two by choosing more encompassing data sets. REFERENCES [1] No, Giseop, and Ilkyeun Ra. An efficient and reliable DDoS attack detection using a fast entropy computation method. Communications and Information Technology, ISCIT th International Symposium on. IEEE, [2] Chen, Yonghong, Xinlei Ma, and Xinya Wu. "DDoS detection algorithm based on preprocessing network traffic predicted method and chaos theory."communications Letters, IEEE 17.5 (2013): [3] Tan, Zhiyuan, et al. Triangle-area-based multivariate correlation analysis for effective denial-of-service attack detection. Trust, Security and Privacy in Computing and Communications (TrustCom), 2012 IEEE 11th International Conference on. IEEE, editor@iaeme.com

6 Samer Charbaji [4] Thapngam, Theerasak, et al. Distributed Denial of Service (DDoS) detection by traffic pattern analysis. Peer-to-peer networking and applications 7.4 (2014): [5] Wu, Ningning, and Jing Zhang. Factor analysis based anomaly detection."information Assurance Workshop, IEEE Systems, Man and Cybernetics Society. IEEE, [6] Mok, Min Seok, So Young Sohn, and Yong Han Ju. Random effects logistic regression model for anomaly detection. Expert Systems with Applications37.10 (2010): [7] Williamson, David F., Robert A. Parker, and Juliette S. Kendrick. The box plot: a simple visual method to interpret data. Annals of internal medicine (1989): [8] Retherford, Robert D., and Minja Kim Choe. Bivariate linear regression."statistical Models for Causal Analysis (1993): [9] Feinstein, Laura, et al. "Statistical approaches to DDoS attack detection and response. DARPA Information Survivability Conference and Exposition, Proceedings. Vol. 1. IEEE, [10] Xiao, Peng, et al. Detecting DDoS attacks against data center with correlation analysis." Computer Communications 67 (2015): [11] Jin, Shuyuan, and Daniel S. Yeung. A covariance analysis model for DDoS attack detection. Communications, 2004 IEEE International Conference on. Vol. 4. IEEE, [12] Gautam, Sunil Kumar, and Hari Om. Multivariate Linear Regression Model for Host Based Intrusion Detection. Computational Intelligence in Data Mining- Volume 3. Springer India, [13] Om, Hari, and Tanmoy Hazra. Statistical Techniques in Anomaly Intrusion Detection System. International Journal of Advances in Engineering and Technology (2012). [14] Ye, Chengxu, Kesong Zheng, and Chuyu She. Application layer DDoS detection using clustering analysis. Computer Science and Network Technology (ICCSNT), nd International Conference on. IEEE, [15] Dr. Imad S. Alshawi, Dr. Kareem R. Alsaiedy, Ms.Vinita Yadav and Ms. Rashmi Ravat. Defense Framework (Stream) For Stream-Based DDOS Attacks on Manet. International Journal of Electronics and Communication Engineering & Technology, 5(1), 2014, pp [16] Liu, Lei, et al. Anomaly diagnosis based on regression and classification analysis of statistical traffic features. Security and Communication Networks7.9 (2014): [17] Saied, Alan, Richard E. Overill, and Tomasz Radzik. Detection of known and unknown DDoS attacks using Artificial Neural Networks. Neurocomputing 172 (2016): editor@iaeme.com

A SURVEY TO ANALYSE MITIGATION TECHNIQUES FOR DISTRIBUTED DENIAL OF SERVICE ATTACKS

A SURVEY TO ANALYSE MITIGATION TECHNIQUES FOR DISTRIBUTED DENIAL OF SERVICE ATTACKS International Journal of Civil Engineering and Technology (IJCIET) Volume 9, Issue 11, November 2018, pp. 1437 1446, Article ID: IJCIET_09_11_139 Available online at http://www.iaeme.com/ijciet/issues.asp?jtype=ijciet&vtype=9&itype=10

More information

ANALYSIS AND EVALUATION OF DISTRIBUTED DENIAL OF SERVICE ATTACKS IDENTIFICATION METHODS

ANALYSIS AND EVALUATION OF DISTRIBUTED DENIAL OF SERVICE ATTACKS IDENTIFICATION METHODS ANALYSIS AND EVALUATION OF DISTRIBUTED DENIAL OF SERVICE ATTACKS IDENTIFICATION METHODS Saulius Grusnys, Ingrida Lagzdinyte Kaunas University of Technology, Department of Computer Networks, Studentu 50,

More information

Basic Concepts in Intrusion Detection

Basic Concepts in Intrusion Detection Technology Technical Information Services Security Engineering Roma, L Università Roma Tor Vergata, 23 Aprile 2007 Basic Concepts in Intrusion Detection JOVAN GOLIĆ Outline 2 Introduction Classification

More information

Enhanced Multivariate Correlation Analysis (MCA) Based Denialof-Service

Enhanced Multivariate Correlation Analysis (MCA) Based Denialof-Service International Journal of Computer Science & Mechatronics A peer reviewed International Journal Article Available online www.ijcsm.in smsamspublications.com Vol.1.Issue 2. 2015 Enhanced Multivariate Correlation

More information

Combining Cross-Correlation and Fuzzy Classification to Detect Distributed Denial-of-Service Attacks*

Combining Cross-Correlation and Fuzzy Classification to Detect Distributed Denial-of-Service Attacks* Combining Cross-Correlation and Fuzzy Classification to Detect Distributed Denial-of-Service Attacks* Wei Wei 1, Yabo Dong 1, Dongming Lu 1, and Guang Jin 2 1 College of Compute Science and Technology,

More information

CSE 565 Computer Security Fall 2018

CSE 565 Computer Security Fall 2018 CSE 565 Computer Security Fall 2018 Lecture 19: Intrusion Detection Department of Computer Science and Engineering University at Buffalo 1 Lecture Outline Intruders Intrusion detection host-based network-based

More information

Modeling Intrusion Detection Systems With Machine Learning And Selected Attributes

Modeling Intrusion Detection Systems With Machine Learning And Selected Attributes Modeling Intrusion Detection Systems With Machine Learning And Selected Attributes Thaksen J. Parvat USET G.G.S.Indratrastha University Dwarka, New Delhi 78 pthaksen.sit@sinhgad.edu Abstract Intrusion

More information

INTRUSION DETECTION SYSTEM USING BIG DATA FRAMEWORK

INTRUSION DETECTION SYSTEM USING BIG DATA FRAMEWORK INTRUSION DETECTION SYSTEM USING BIG DATA FRAMEWORK Abinesh Kamal K. U. and Shiju Sathyadevan Amrita Center for Cyber Security Systems and Networks, Amrita School of Engineering, Amritapuri, Amrita Vishwa

More information

ANOMALY DETECTION IN COMMUNICTION NETWORKS

ANOMALY DETECTION IN COMMUNICTION NETWORKS Anomaly Detection Summer School Lecture 2014 ANOMALY DETECTION IN COMMUNICTION NETWORKS Prof. D.J.Parish and Francisco Aparicio-Navarro Loughborough University (School of Electronic, Electrical and Systems

More information

SECURED KEY MANAGEMENT ALGORITHM FOR DATA TRANSMISSION IN MOBILE ADHOC NETWORKS

SECURED KEY MANAGEMENT ALGORITHM FOR DATA TRANSMISSION IN MOBILE ADHOC NETWORKS International Journal of Electronics and Communication Engineering and Technology (IJECET) Volume 7, Issue 6, November-December 2016, pp. 96 100, Article ID: IJECET_07_06_014 Available online at http://www.iaeme.com/ijecet/issues.asp?jtype=ijecet&vtype=7&itype=6

More information

DDoS Attack Detection Using Moment in Statistics with Discriminant Analysis

DDoS Attack Detection Using Moment in Statistics with Discriminant Analysis DDoS Attack Detection Using Moment in Statistics with Discriminant Analysis Pradit Pitaksathienkul 1 and Pongpisit Wuttidittachotti 2 King Mongkut s University of Technology North Bangkok, Thailand 1 praditp9@gmail.com

More information

DDOS Attack Prevention Technique in Cloud

DDOS Attack Prevention Technique in Cloud DDOS Attack Prevention Technique in Cloud Priyanka Dembla, Chander Diwaker CSE Department, U.I.E.T Kurukshetra University Kurukshetra, Haryana, India Email: priyankadembla05@gmail.com Abstract Cloud computing

More information

DDoS Attacks Classification using Numeric Attribute-based Gaussian Naive Bayes

DDoS Attacks Classification using Numeric Attribute-based Gaussian Naive Bayes DDoS Attacks Classification using Numeric Attribute-based Gaussian Naive Bayes Abdul Fadlil Department of Electrical Engineering Ahmad Dahlan University Yogyakarta, Indonesia Imam Riadi Department of Information

More information

A SYSTEM FOR DETECTION AND PRVENTION OF PATH BASED DENIAL OF SERVICE ATTACK

A SYSTEM FOR DETECTION AND PRVENTION OF PATH BASED DENIAL OF SERVICE ATTACK A SYSTEM FOR DETECTION AND PRVENTION OF PATH BASED DENIAL OF SERVICE ATTACK P.Priya 1, S.Tamilvanan 2 1 M.E-Computer Science and Engineering Student, Bharathidasan Engineering College, Nattrampalli. 2

More information

Intrusion Detection and Malware Analysis

Intrusion Detection and Malware Analysis Intrusion Detection and Malware Analysis Anomaly-based IDS Pavel Laskov Wilhelm Schickard Institute for Computer Science Taxonomy of anomaly-based IDS Features: Packet headers Byte streams Syntactic events

More information

Distributed Denial of Service (DDoS)

Distributed Denial of Service (DDoS) Distributed Denial of Service (DDoS) Defending against Flooding-Based DDoS Attacks: A Tutorial Rocky K. C. Chang Presented by Adwait Belsare (adwait@wpi.edu) Suvesh Pratapa (suveshp@wpi.edu) Modified by

More information

Flowzilla: A Methodology for Detecting Data Transfer Anomalies in Research Networks. Anna Giannakou, Daniel Gunter, Sean Peisert

Flowzilla: A Methodology for Detecting Data Transfer Anomalies in Research Networks. Anna Giannakou, Daniel Gunter, Sean Peisert Flowzilla: A Methodology for Detecting Data Transfer Anomalies in Research Networks Anna Giannakou, Daniel Gunter, Sean Peisert Research Networks Scientific applications that process large amounts of data

More information

Towards Traffic Anomaly Detection via Reinforcement Learning and Data Flow

Towards Traffic Anomaly Detection via Reinforcement Learning and Data Flow Towards Traffic Anomaly Detection via Reinforcement Learning and Data Flow Arturo Servin Computer Science, University of York aservin@cs.york.ac.uk Abstract. Protection of computer networks against security

More information

A TWO LEVEL ARCHITECTURE USING CONSENSUS METHOD FOR GLOBAL DECISION MAKING AGAINST DDoS ATTACKS

A TWO LEVEL ARCHITECTURE USING CONSENSUS METHOD FOR GLOBAL DECISION MAKING AGAINST DDoS ATTACKS ISSN: 2229-6948 (ONLINE) ICTACT JOURNAL OF COMMUNICATION TECHNOLOGY, JUNE 2010, VOLUME: 01, ISSUE: 02 DOI: 10.21917/ijct.2010.0013 A TWO LEVEL ARCHITECTURE USING CONSENSUS METHOD FOR GLOBAL DECISION MAKING

More information

Detection of Anomalies using Online Oversampling PCA

Detection of Anomalies using Online Oversampling PCA Detection of Anomalies using Online Oversampling PCA Miss Supriya A. Bagane, Prof. Sonali Patil Abstract Anomaly detection is the process of identifying unexpected behavior and it is an important research

More information

Denial of Service (DoS) Attack Detection by Using Fuzzy Logic over Network Flows

Denial of Service (DoS) Attack Detection by Using Fuzzy Logic over Network Flows Denial of Service (DoS) Attack Detection by Using Fuzzy Logic over Network Flows S. Farzaneh Tabatabaei 1, Mazleena Salleh 2, MohammadReza Abbasy 3 and MohammadReza NajafTorkaman 4 Faculty of Computer

More information

Multivariate Correlation Analysis based detection of DOS with Tracebacking

Multivariate Correlation Analysis based detection of DOS with Tracebacking 1 Multivariate Correlation Analysis based detection of DOS with Tracebacking Jasheeda P Student Department of CSE Kathir College of Engineering Coimbatore jashi108@gmail.com T.K.P.Rajagopal Associate Professor

More information

Developing the Sensor Capability in Cyber Security

Developing the Sensor Capability in Cyber Security Developing the Sensor Capability in Cyber Security Tero Kokkonen, Ph.D. +358504385317 tero.kokkonen@jamk.fi JYVSECTEC JYVSECTEC - Jyväskylä Security Technology - is the cyber security research, development

More information

Discriminating DDoS Attacks from Flash Crowds in IPv6 networks using Entropy Variations and Sibson distance metric

Discriminating DDoS Attacks from Flash Crowds in IPv6 networks using Entropy Variations and Sibson distance metric Discriminating DDoS Attacks from Flash Crowds in IPv6 networks using Entropy Variations and Sibson distance metric HeyShanthiniPandiyaKumari.S 1, Rajitha Nair.P 2 1 (Department of Computer Science &Engineering,

More information

Evidence Gathering for Network Security and Forensics DFRWS EU Dinil Mon Divakaran, Fok Kar Wai, Ido Nevat, Vrizlynn L. L.

Evidence Gathering for Network Security and Forensics DFRWS EU Dinil Mon Divakaran, Fok Kar Wai, Ido Nevat, Vrizlynn L. L. Evidence Gathering for Network Security and Forensics DFRWS EU 2017 Dinil Mon Divakaran, Fok Kar Wai, Ido Nevat, Vrizlynn L. L. Thing Talk outline Context and problem Objective Evidence gathering framework

More information

MCA-based DoS attack detection system using principle of anomaly based detection in attack recognition.

MCA-based DoS attack detection system using principle of anomaly based detection in attack recognition. MCA-based DoS attack detection system using principle of anomaly based detection in attack recognition. Mohd Ayaz Uddin Associate Professor Department of IT Nawab Shah Alam Khan College of Engineering

More information

Anomaly Detection in Communication Networks

Anomaly Detection in Communication Networks Anomaly Detection in Communication Networks Prof. D. J. Parish High Speed networks Group Department of Electronic and Electrical Engineering D.J.Parish@lboro.ac.uk Loughborough University Overview u u

More information

Detection of DDoS Attack on the Client Side Using Support Vector Machine

Detection of DDoS Attack on the Client Side Using Support Vector Machine Detection of DDoS Attack on the Client Side Using Support Vector Machine Donghoon Kim * and Ki Young Lee** *Department of Information and Telecommunication Engineering, Incheon National University, Incheon,

More information

Approach Using Genetic Algorithm for Intrusion Detection System

Approach Using Genetic Algorithm for Intrusion Detection System Approach Using Genetic Algorithm for Intrusion Detection System 544 Abhijeet Karve Government College of Engineering, Aurangabad, Dr. Babasaheb Ambedkar Marathwada University, Aurangabad, Maharashtra-

More information

ISSN INTRODUCTION

ISSN INTRODUCTION A Novel Syn Flood Detection Mechanism for Wireless Network Neethu Raj P, Dr. S Suresh Babu, Prof. Nishanth N PG student, TKM college of engineering, Kollam, Kerala University, India, neethurajpunathil@gmail.coml

More information

Prediction of Network Anomaly Detection through Statistical Analysis

Prediction of Network Anomaly Detection through Statistical Analysis International Conference on Computer, Networks and Communication Engineering (ICCNCE 203) Prediction of Network Anomaly Detection through Statistical Analysis Abrar A. Qureshia,, Kamel Rekabb a Department

More information

Review on Data Mining Techniques for Intrusion Detection System

Review on Data Mining Techniques for Intrusion Detection System Review on Data Mining Techniques for Intrusion Detection System Sandeep D 1, M. S. Chaudhari 2 Research Scholar, Dept. of Computer Science, P.B.C.E, Nagpur, India 1 HoD, Dept. of Computer Science, P.B.C.E,

More information

Performance of data mining algorithms in unauthorized intrusion detection systems in computer networks

Performance of data mining algorithms in unauthorized intrusion detection systems in computer networks RESEARCH ARTICLE Performance of data mining algorithms in unauthorized intrusion detection systems in computer networks Hadi Ghadimkhani, Ali Habiboghli*, Rouhollah Mostafaei Department of Computer Science

More information

INTERNATIONAL JOURNAL OF INNOVATIVE TECHNOLOGIES, VOL. 02, ISSUE 01, JAN 2014

INTERNATIONAL JOURNAL OF INNOVATIVE TECHNOLOGIES, VOL. 02, ISSUE 01, JAN 2014 INTERNATIONAL JOURNAL OF INNOVATIVE TECHNOLOGIES, VOL. 02, ISSUE 01, JAN 2014 ISSN 2321 8665 LOW BANDWIDTH DDOS ATTACK DETECTION IN THE NETWORK 1 L. SHIVAKUMAR, 2 G. ANIL KUMAR 1 M.Tech CSC Dept, RVRIET,

More information

Xiang, Yang and Zhou, Wanlei 2005, Mark-aided distributed filtering by using neural network for DDoS defense, in GLOBECOM '05 : IEEE Global

Xiang, Yang and Zhou, Wanlei 2005, Mark-aided distributed filtering by using neural network for DDoS defense, in GLOBECOM '05 : IEEE Global Xiang, Yang and Zhou, Wanlei 25, Mark-aided distributed filtering by using neural network for DDoS defense, in GLOBECOM '5 : IEEE Global Telecommunications Conference, 28 November-2 December 25 St. Louis,

More information

Improved MCA Based DoS Attack Detection

Improved MCA Based DoS Attack Detection Improved MCA Based DoS Attack Detection Lakshmi Prasanna Kumar Relangi 1, M. Krishna Satya Varma 2 1 M.Tech (IT), S.R.K.R.Engineering College, Bhimavaram, A.P., India. 2 Asst Professor, Dept. of Information

More information

Review of Detection DDOS Attack Detection Using Naive Bayes Classifier for Network Forensics

Review of Detection DDOS Attack Detection Using Naive Bayes Classifier for Network Forensics Bulletin of Electrical Engineering and Informatics ISSN: 2302-9285 Vol. 6, No. 2, June 2017, pp. 140~148, DOI: 10.11591/eei.v6i2.605 140 Review of Detection DDOS Attack Detection Using Naive Bayes Classifier

More information

The Subspace Method for Diagnosing Network-Wide Traffic Anomalies. Anukool Lakhina, Mark Crovella, Christophe Diot

The Subspace Method for Diagnosing Network-Wide Traffic Anomalies. Anukool Lakhina, Mark Crovella, Christophe Diot The Subspace Method for Diagnosing Network-Wide Traffic Anomalies Anukool Lakhina, Mark Crovella, Christophe Diot What s happening in my network? Is my customer being attacked? probed? infected? Is there

More information

(2½ hours) Total Marks: 75

(2½ hours) Total Marks: 75 (2½ hours) Total Marks: 75 N. B.: (1) All questions are compulsory. (2) Makesuitable assumptions wherever necessary and state the assumptions made. (3) Answers to the same question must be written together.

More information

Configuring attack detection and prevention 1

Configuring attack detection and prevention 1 Contents Configuring attack detection and prevention 1 Overview 1 Attacks that the device can prevent 1 Single-packet attacks 1 Scanning attacks 2 Flood attacks 3 TCP fragment attack 4 Login DoS attack

More information

Dixit Verma Characterization and Implications of Flash Crowds and DoS attacks on websites

Dixit Verma Characterization and Implications of Flash Crowds and DoS attacks on websites Characterization and Implications of Flash Crowds and DoS attacks on websites Dixit Verma Department of Electrical & Computer Engineering Missouri University of Science and Technology dv6cb@mst.edu 9 Feb

More information

Improved Detection of Low-Profile Probes and Denial-of-Service Attacks*

Improved Detection of Low-Profile Probes and Denial-of-Service Attacks* Improved Detection of Low-Profile Probes and Denial-of-Service Attacks* William W. Streilein Rob K. Cunningham, Seth E. Webster Workshop on Statistical and Machine Learning Techniques in Computer Intrusion

More information

Study of Machine Learning Based Intrusion Detection System

Study of Machine Learning Based Intrusion Detection System ISSN 2395-1621 Study of Machine Learning Based Intrusion Detection System #1 Prashant Wakhare, #2 Dr S.T.Singh 1 Prashant_mitr@rediffmail.com 2 stsingh47@gmail.com Computer Engineering, Savitribai Phule

More information

Spoofing Detection in Wireless Networks

Spoofing Detection in Wireless Networks RESEARCH ARTICLE OPEN ACCESS Spoofing Detection in Wireless Networks S.Manikandan 1,C.Murugesh 2 1 PG Scholar, Department of CSE, National College of Engineering, India.mkmanikndn86@gmail.com 2 Associate

More information

MCA: MULTIVARIATE CORRELATION ANALYSIS FOR ATTACKS

MCA: MULTIVARIATE CORRELATION ANALYSIS FOR ATTACKS INTERNATIONAL JOURNAL OF RESEARCH IN COMPUTER APPLICATIONS AND ROBOTICS ISSN 2320-7345 MCA: MULTIVARIATE CORRELATION ANALYSIS FOR ATTACKS A.SaiSakthi 1, R.VijayaLakshmi 2 1 B.E (CSE), Krishnaswamy College

More information

CLASSIFICATION OF LINK BASED IDENTIFICATION RESISTANT TO DRDOS ATTACKS

CLASSIFICATION OF LINK BASED IDENTIFICATION RESISTANT TO DRDOS ATTACKS CLASSIFICATION OF LINK BASED IDENTIFICATION RESISTANT TO DRDOS ATTACKS 1 S M ZAHEER, 2 V.VENKATAIAH 1 M.Tech, Department of CSE, CMR College Of Engineering & Technology, Kandlakoya Village, Medchal Mandal,

More information

DETECTION OF PHYSICAL LAYER BASED SPOOFING ATTACK IN WIRELESS NETWORK

DETECTION OF PHYSICAL LAYER BASED SPOOFING ATTACK IN WIRELESS NETWORK DETECTION OF PHYSICAL LAYER BASED SPOOFING ATTACK IN WIRELESS NETWORK *Corresponding Author: M. Rajesh E-mail:jishnukannan00@gmail.com, Jishnu T M, Lijo john, Sreekanth C, M. Rajesh * Department of computer

More information

Firewalls, Tunnels, and Network Intrusion Detection

Firewalls, Tunnels, and Network Intrusion Detection Firewalls, Tunnels, and Network Intrusion Detection 1 Intrusion Detection Systems Intrusion Actions aimed at compromising the security of the target (confidentiality, integrity, availability of computing/networking

More information

Anomaly Detection on Data Streams with High Dimensional Data Environment

Anomaly Detection on Data Streams with High Dimensional Data Environment Anomaly Detection on Data Streams with High Dimensional Data Environment Mr. D. Gokul Prasath 1, Dr. R. Sivaraj, M.E, Ph.D., 2 Department of CSE, Velalar College of Engineering & Technology, Erode 1 Assistant

More information

Chapter 7. Denial of Service Attacks

Chapter 7. Denial of Service Attacks Chapter 7 Denial of Service Attacks DoS attack: An action that prevents or impairs the authorized use of networks, systems, or applications by exhausting resources such as central processing units (CPU),

More information

Means for Intrusion Detection. Intrusion Detection. INFO404 - Lecture 13. Content

Means for Intrusion Detection. Intrusion Detection. INFO404 - Lecture 13. Content Intrusion Detection INFO404 - Lecture 13 21.04.2009 nfoukia@infoscience.otago.ac.nz Content Definition Network vs. Host IDS Misuse vs. Behavior Based IDS Means for Intrusion Detection Definitions (1) Intrusion:

More information

Fuzzy Intrusion Detection

Fuzzy Intrusion Detection Fuzzy Intrusion Detection John E. Dickerson, Jukka Juslin, Ourania Koukousoula, Julie A. Dickerson Electrical and Computer Engineering Department Iowa State University Ames, IA, USA {jedicker,juslin,koukouso,julied}@iastate.edu

More information

Double Guard: Detecting intrusions in Multitier web applications with Security

Double Guard: Detecting intrusions in Multitier web applications with Security ISSN 2395-1621 Double Guard: Detecting intrusions in Multitier web applications with Security #1 Amit Patil, #2 Vishal Thorat, #3 Amit Mane 1 amitpatil1810@gmail.com 2 vishalthorat5233@gmail.com 3 amitmane9975@gmail.com

More information

Model Based Prediction Technique for Denial of Service Attack Detection

Model Based Prediction Technique for Denial of Service Attack Detection Model Based Prediction Technique for Denial of Service Attack Detection Tinju Grace Varghese, 4 th Semester Mtech Student, Caarmel Engineering College, Perunad Salitha M.K, Assistant Professor, Caarmel

More information

Determining the Number of Hidden Neurons in a Multi Layer Feed Forward Neural Network

Determining the Number of Hidden Neurons in a Multi Layer Feed Forward Neural Network Determining the Number of Hidden Neurons in a Multi Layer Feed Forward Neural Network Lynn Ray University of Maryland University College 3501 University Blvd East Adelphi, MD 20783. USA ABSTRACT: A neural

More information

Detecting Anomalies in Network Traffic Using Maximum Entropy Estimation

Detecting Anomalies in Network Traffic Using Maximum Entropy Estimation Detecting Anomalies in Network Traffic Using Maximum Entropy Estimation Yu Gu, Andrew McCallum, Don Towsley Department of Computer Science, University of Massachusetts, Amherst, MA 01003 Abstract We develop

More information

EVALUATIONS OF THE EFFECTIVENESS OF ANOMALY BASED INTRUSION DETECTION SYSTEMS BASED ON AN ADAPTIVE KNN ALGORITHM

EVALUATIONS OF THE EFFECTIVENESS OF ANOMALY BASED INTRUSION DETECTION SYSTEMS BASED ON AN ADAPTIVE KNN ALGORITHM EVALUATIONS OF THE EFFECTIVENESS OF ANOMALY BASED INTRUSION DETECTION SYSTEMS BASED ON AN ADAPTIVE KNN ALGORITHM Assosiate professor, PhD Evgeniya Nikolova, BFU Assosiate professor, PhD Veselina Jecheva,

More information

An Abnormal Data Detection Method Based on the Temporal-spatial Correlation in Wireless Sensor Networks

An Abnormal Data Detection Method Based on the Temporal-spatial Correlation in Wireless Sensor Networks An Based on the Temporal-spatial Correlation in Wireless Sensor Networks 1 Department of Computer Science & Technology, Harbin Institute of Technology at Weihai,Weihai, 264209, China E-mail: Liuyang322@hit.edu.cn

More information

Activating Intrusion Prevention Service

Activating Intrusion Prevention Service Activating Intrusion Prevention Service Intrusion Prevention Service Overview Configuring Intrusion Prevention Service Intrusion Prevention Service Overview Intrusion Prevention Service (IPS) delivers

More information

Provision of Quality of Service with Router Support

Provision of Quality of Service with Router Support Provision of Quality of Service with Router Support Hongli Luo Department of Computer and Electrical Engineering Technology and Information System and Technology Indiana University Purdue University Fort

More information

DETECTING SYBIL ATTACK USING HYBRID FUZZY K-MEANS ALGORITHM IN WSN

DETECTING SYBIL ATTACK USING HYBRID FUZZY K-MEANS ALGORITHM IN WSN DETECTING SYBIL ATTACK USING HYBRID FUZZY K-MEANS ALGORITHM IN WSN 1 Shipra Diwakar, 2 Dr. R. Kashyup 1 Research Scholar, 2 HOD ECE Rayat Bahara University Ropar, Punjab ABSTRACT Security in Wireless Sensor

More information

International Journal of Informative & Futuristic Research ISSN (Online):

International Journal of Informative & Futuristic Research ISSN (Online): Reviewed Paper Volume 2 Issue 3 November 2014 International Journal of Informative & Futuristic Research ISSN (Online): 2347-1697 A System For Denial-Of-Service Attack Detection Based On Multivariate Correlation

More information

McPAD and HMM-Web: two different approaches for the detection of attacks against Web applications

McPAD and HMM-Web: two different approaches for the detection of attacks against Web applications McPAD and HMM-Web: two different approaches for the detection of attacks against Web applications Davide Ariu, Igino Corona, Giorgio Giacinto, Fabio Roli University of Cagliari, Dept. of Electrical and

More information

Early detection of Crossfire attacks using deep learning

Early detection of Crossfire attacks using deep learning Early detection of Crossfire attacks using deep learning Saurabh Misra, Mengxuan Tan, Mostafa Rezazad, Ngai-Man Cheung Singapore University of Technology and Design Content The Crossfire Attack A brief

More information

DDoS Attacks Detection Using GA based Optimized Traffic Matrix

DDoS Attacks Detection Using GA based Optimized Traffic Matrix 2011 Fifth International Conference on Innovative Mobile and Internet Services in Ubiquitous Computing DDoS Attacks Detection Using GA based Optimized Traffic Matrix Je Hak Lee yitsup2u@gmail.com Dong

More information

Configuring attack detection and prevention 1

Configuring attack detection and prevention 1 Contents Configuring attack detection and prevention 1 Overview 1 Attacks that the device can prevent 1 Single-packet attacks 1 Scanning attacks 2 Flood attacks 3 TCP fragment attack 4 Login DoS attack

More information

Anomaly Detection Based on Access Behavior and Document Rank Algorithm

Anomaly Detection Based on Access Behavior and Document Rank Algorithm Anomaly Detection Based on Access Behavior and Document Rank Algorithm Prajwal R Thakare, M.Tech IT Dept, ASTRA, Bandlaguda, Abstract:-Distributed denial of service (DDoS) attack is ongoing dangerous threat

More information

A Comparison Between the Silhouette Index and the Davies-Bouldin Index in Labelling IDS Clusters

A Comparison Between the Silhouette Index and the Davies-Bouldin Index in Labelling IDS Clusters A Comparison Between the Silhouette Index and the Davies-Bouldin Index in Labelling IDS Clusters Slobodan Petrović NISlab, Department of Computer Science and Media Technology, Gjøvik University College,

More information

Defending against Flooding-Based Distributed Denial-of-Service Attacks: A Tutorial

Defending against Flooding-Based Distributed Denial-of-Service Attacks: A Tutorial Defending against Flooding-Based Distributed Denial-of-Service Attacks: A Tutorial Paper by Rocky K C Chang, The Hong Kong Polytechnic University Published in the October 2002 issue of IEEE Communications

More information

Low-rate and High-rate Distributed DoS Attack Detection Using Partial Rank Correlation

Low-rate and High-rate Distributed DoS Attack Detection Using Partial Rank Correlation Low-rate and High-rate Distributed DoS Attack Detection Using Partial Rank Correlation Monowar H. Bhuyan and Abhishek Kalwar Dept. of Computer Science & Engg. Kaziranga University, Jorhat-785006, Assam

More information

Cross Layer Detection of Wormhole In MANET Using FIS

Cross Layer Detection of Wormhole In MANET Using FIS Cross Layer Detection of Wormhole In MANET Using FIS P. Revathi, M. M. Sahana & Vydeki Dharmar Department of ECE, Easwari Engineering College, Chennai, India. E-mail : revathipancha@yahoo.com, sahanapandian@yahoo.com

More information

UNCOVERING OF ANONYMOUS ATTACKS BY DISCOVERING VALID PATTERNS OF NETWORK

UNCOVERING OF ANONYMOUS ATTACKS BY DISCOVERING VALID PATTERNS OF NETWORK UNCOVERING OF ANONYMOUS ATTACKS BY DISCOVERING VALID PATTERNS OF NETWORK Dr G.Charles Babu Professor MRE College Secunderabad, India. charlesbabu26@gmail.com N.Chennakesavulu Assoc.Professor Wesley PG

More information

Flow-based Anomaly Intrusion Detection System Using Neural Network

Flow-based Anomaly Intrusion Detection System Using Neural Network Flow-based Anomaly Intrusion Detection System Using Neural Network tational power to analyze only the basic characteristics of network flow, so as to Intrusion Detection systems (KBIDES) classify the data

More information

An Anomaly-Based Intrusion Detection System for the Smart Grid Based on CART Decision Tree

An Anomaly-Based Intrusion Detection System for the Smart Grid Based on CART Decision Tree An Anomaly-Based Intrusion Detection System for the Smart Grid Based on CART Decision Tree P. Radoglou-Grammatikis and P. Sarigiannidis* University of Western Macedonia Department of Informatics & Telecommunications

More information

Network Traffic Measurements and Analysis

Network Traffic Measurements and Analysis DEIB - Politecnico di Milano Fall, 2017 Introduction Often, we have only a set of features x = x 1, x 2,, x n, but no associated response y. Therefore we are not interested in prediction nor classification,

More information

Novel Method For Low-Rate Ddos Attack Detection

Novel Method For Low-Rate Ddos Attack Detection Journal of Physics: Conference Series PAPER OPEN ACCESS Novel Method For Low-Rate Ddos Attack Detection To cite this article: A A Chistokhodova and I D Sidorov 2018 J. Phys.: Conf. Ser. 1015 032024 View

More information

Anomaly Intrusion Detection System Using Hierarchical Gaussian Mixture Model

Anomaly Intrusion Detection System Using Hierarchical Gaussian Mixture Model 264 IJCSNS International Journal of Computer Science and Network Security, VOL.8 No.8, August 2008 Anomaly Intrusion Detection System Using Hierarchical Gaussian Mixture Model M. Bahrololum and M. Khaleghi

More information

Artificial Neural Network To Detect Know And Unknown DDOS Attack

Artificial Neural Network To Detect Know And Unknown DDOS Attack IOSR Journal of Computer Engineering (IOSR-JCE) e-issn: 2278-0661,p-ISSN: 2278-8727, Volume 19, Issue 2, Ver. II (Mar.-Apr. 2017), PP 56-61 www.iosrjournals.org Artificial Neural Network To Detect Know

More information

A Hybrid Approach for Misbehavior Detection in Wireless Ad-Hoc Networks

A Hybrid Approach for Misbehavior Detection in Wireless Ad-Hoc Networks A Hybrid Approach for Misbehavior Detection in Wireless Ad-Hoc Networks S. Balachandran, D. Dasgupta, L. Wang Intelligent Security Systems Research Lab Department of Computer Science The University of

More information

Intrusions Detection System Based on Ubiquitous Network Nodes

Intrusions Detection System Based on Ubiquitous Network Nodes Intrusions Detection System Based on Ubiquitous Network Nodes Lynda Sellami Djilali Idoughi Abderrahmane Baadache Department of Computer Science Laboratory of Applied Mathematics Laboratory of Modeling

More information

INTERNATIONAL JOURNAL OF INNOVATIVE TECHNOLOGIES, VOL. 02, ISSUE 01, JAN 2014 ISSN

INTERNATIONAL JOURNAL OF INNOVATIVE TECHNOLOGIES, VOL. 02, ISSUE 01, JAN 2014 ISSN CONSTANT INCREASE RATE DDOS ATTACKS DETECTION USING IP TRACE BACK AND INFORMATION DISTANCE METRICS 1 VEMULA GANESH, 2 B. VAMSI KRISHNA 1 M.Tech CSE Dept, MRCET, Hyderabad, Email: vmlganesh@gmail.com. 2

More information

Bayesian Learning Networks Approach to Cybercrime Detection

Bayesian Learning Networks Approach to Cybercrime Detection Bayesian Learning Networks Approach to Cybercrime Detection N S ABOUZAKHAR, A GANI and G MANSON The Centre for Mobile Communications Research (C4MCR), University of Sheffield, Sheffield Regent Court, 211

More information

Detection Techniques in MANET

Detection Techniques in MANET Detection Techniques in MANET Asma Ahmed 1, S. Razak 2, A. Hanan 2, Izzeldin Osman 3 1 Faculty of Computer Science and Information System, Universiti Technologi Malaysia, Johor, Malaysia 2 Department of

More information

Performance Analysis of various classifiers using Benchmark Datasets in Weka tools

Performance Analysis of various classifiers using Benchmark Datasets in Weka tools Performance Analysis of various classifiers using Benchmark Datasets in Weka tools Abstract Intrusion occurs in the network due to redundant and irrelevant data that cause problem in network traffic classification.

More information

CS395/495 Computer Security Project #2

CS395/495 Computer Security Project #2 CS395/495 Computer Security Project #2 Important Dates Out: 1/19/2005 Due: 2/15/2005 11:59pm Winter 2005 Project Overview Intrusion Detection System (IDS) is a common tool to detect the malicious activity

More information

Detecting Botnets Using Cisco NetFlow Protocol

Detecting Botnets Using Cisco NetFlow Protocol Detecting Botnets Using Cisco NetFlow Protocol Royce Clarenz C. Ocampo 1, *, and Gregory G. Cu 2 1 Computer Technology Department, College of Computer Studies, De La Salle University, Manila 2 Software

More information

AUTOMATED SECURITY ASSESSMENT AND MANAGEMENT OF THE ELECTRIC POWER GRID

AUTOMATED SECURITY ASSESSMENT AND MANAGEMENT OF THE ELECTRIC POWER GRID AUTOMATED SECURITY ASSESSMENT AND MANAGEMENT OF THE ELECTRIC POWER GRID Sherif Abdelwahed Department of Electrical and Computer Engineering Mississippi State University Autonomic Security Management Modern

More information

Role of big data in classification and novel class detection in data streams

Role of big data in classification and novel class detection in data streams DOI 10.1186/s40537-016-0040-9 METHODOLOGY Open Access Role of big data in classification and novel class detection in data streams M. B. Chandak * *Correspondence: hodcs@rknec.edu; chandakmb@gmail.com

More information

Correlation Based Approach with a Sliding Window Model to Detect and Mitigate Ddos Attacks

Correlation Based Approach with a Sliding Window Model to Detect and Mitigate Ddos Attacks Journal of Computer Science Original Research Paper Correlation Based Approach with a Sliding Window Model to Detect and Mitigate Ddos Attacks 1 Ayyamuthukumar, D. and 2 S. Karthik 1 Department of CSE,

More information

Application of the Generic Feature Selection Measure in Detection of Web Attacks

Application of the Generic Feature Selection Measure in Detection of Web Attacks Application of the Generic Feature Selection Measure in Detection of Web Attacks Hai Thanh Nguyen 1, Carmen Torrano-Gimenez 2, Gonzalo Alvarez 2 Slobodan Petrović 1, and Katrin Franke 1 1 Norwegian Information

More information

Application Layer DDOS Attack Detection Using Hybrid Machine Learning Approach

Application Layer DDOS Attack Detection Using Hybrid Machine Learning Approach , pp.85-96 http://dx.doi.org/10.14257/ijsia.2017.11.4.07 Application Layer DDOS Attack Detection Using Hybrid Machine Learning Approach Rizwan ur Rahman, Deepak Singh Tomar and Jijin A.V. Maulana Azad

More information

IPv6 Firewall Support for Prevention of Distributed Denial of Service Attacks and Resource Management

IPv6 Firewall Support for Prevention of Distributed Denial of Service Attacks and Resource Management IPv6 Firewall Support for Prevention of Distributed Denial of Service Attacks and Resource Management IPv6 zone-based firewalls support the Protection of Distributed Denial of Service Attacks and the Firewall

More information

Mahalanobis Distance Map Approach for Anomaly Detection

Mahalanobis Distance Map Approach for Anomaly Detection Edith Cowan University Research Online Australian Information Security Management Conference Conferences, Symposia and Campus Events 2010 Mahalanobis Distance Map Approach for Anomaly Detection Aruna Jamdagnil

More information

Data Mining for Improving Intrusion Detection

Data Mining for Improving Intrusion Detection Data Mining for Improving Intrusion Detection presented by: Dr. Eric Bloedorn Team members: Bill Hill (PI) Dr. Alan Christiansen, Dr. Clem Skorupka, Dr. Lisa Talbot, Jonathan Tivel 12/6/00 Overview Background

More information

Pramod Bide 1, Rajashree Shedge 2 1,2 Department of Computer Engg, Ramrao Adik Institute of technology/mumbai University, India

Pramod Bide 1, Rajashree Shedge 2 1,2 Department of Computer Engg, Ramrao Adik Institute of technology/mumbai University, India Comparative Study and Analysis of Cloud Intrusion Detection System Pramod Bide 1, Rajashree Shedge 2 1,2 Department of Computer Engg, Ramrao Adik Institute of technology/mumbai University, India ABSTRACT

More information

1.1 SYMPTOMS OF DDoS ATTACK:

1.1 SYMPTOMS OF DDoS ATTACK: 2018 IJSRSET Volume 4 Issue 4 Print ISSN: 2395-1990 Online ISSN : 2394-4099 Themed Section : Engineering and Technology An Efficient Entropy Based Approach for the Detection of DDOS Attack Abhilash Singh,

More information

UNSUPERVISED LEARNING FOR ANOMALY INTRUSION DETECTION Presented by: Mohamed EL Fadly

UNSUPERVISED LEARNING FOR ANOMALY INTRUSION DETECTION Presented by: Mohamed EL Fadly UNSUPERVISED LEARNING FOR ANOMALY INTRUSION DETECTION Presented by: Mohamed EL Fadly Outline Introduction Motivation Problem Definition Objective Challenges Approach Related Work Introduction Anomaly detection

More information

Anomaly detection using adaptive resonance theory

Anomaly detection using adaptive resonance theory Boston University OpenBU Theses & Dissertations http://open.bu.edu Boston University Theses & Dissertations 2013 Anomaly detection using adaptive resonance theory Rossell, Daniel Boston University https://hdl.handle.net/2144/12205

More information

Intrusion Detection by Combining and Clustering Diverse Monitor Data

Intrusion Detection by Combining and Clustering Diverse Monitor Data Intrusion Detection by Combining and Clustering Diverse Monitor Data TSS/ACC Seminar April 5, 26 Atul Bohara and Uttam Thakore PI: Bill Sanders Outline Motivation Overview of the approach Feature extraction

More information

Intrusion Detection Systems

Intrusion Detection Systems Intrusion Detection Systems Dr. Ahmad Almulhem Computer Engineering Department, KFUPM Spring 2008 Ahmad Almulhem - Network Security Engineering - 2008 1 / 15 Outline 1 Introduction Overview History 2 Types

More information