999精品在线视频,手机成人午夜在线视频,久久不卡国产精品无码,中日无码在线观看,成人av手机在线观看,日韩精品亚洲一区中文字幕,亚洲av无码人妻,四虎国产在线观看 ?

A Stacking-Based Deep Neural Network Approach for Effective Network Anomaly Detection

2021-12-15 12:49:24LewisNkenyereyeBayuAdhiTamaandSunghoonLim
Computers Materials&Continua 2021年2期

Lewis Nkenyereye, Bayu Adhi Tama and Sunghoon Lim

1Department of Computer and Information Security, Sejong University, Seoul,05006,Korea

2Data Science Group, Institute for Basic Science (IBS), Daejeon, 34126,Korea

3Department of Industrial Engineering, Ulsan National Institute of Science and Technology, Ulsan, 44919,Korea

Abstract:An anomaly-based intrusion detection system(A-IDS)provides a critical aspect in a modern computing infrastructure since new types of attacks can be discovered.It prevalently utilizes several machine learning algorithms (ML) for detecting and classifying network traffic.To date,lots of algorithms have been proposed to improve the detection performance of A-IDS, either using individual or ensemble learners.In particular, ensemble learners have shown remarkable performance over individual learners in many applications, including in cybersecurity domain.However, most existing works still suffer from unsatisfactory results due to improper ensemble design.The aim of this study is to emphasize the effectiveness of stacking ensemble-based model for A-IDS,where deep learning(e.g.,deep neural network[DNN])is used as base learner model.The effectiveness of the proposed model and base DNN model are benchmarked empirically in terms of several performance metrics, i.e., Matthew’s correlation coefficient, accuracy, and false alarm rate.The results indicate that the proposed model is superior to the base DNN model as well as other existing ML algorithms found in the literature.

Keywords: Anomaly detection;deep neural network;intrusion detection system;stacking ensemble

1 Introduction

Intrusion detection system (IDS) has been an active research in the cybersecurity domain recently.It contributes a critical role to a modern computing infrastructure in repealing any malicious activities in the network.In addition, as a protection mechanism, an IDS is accountable for taking preventive action to overcome any malignant acts in the computer network.By examining network access logs, audit trails,and other security-relevant information within an organization, an IDS detects and blocks attack without human intervention[1].

An IDS is typically split into two main techniques,i.e.,anomaly and misuse.The differences lie in the number of attack classes to be predicted.An anomaly-based IDS (A-IDS) attempts to solve a binary classification problem, where the classifier is trained so that it is able to distinguish anomaly traffic from normal traffic.Since the trained model is only capable in handling two classes, a new type of attack can be discovered by A-IDS.Apart from this merit, this technique always suffers from high false alarm rate(FAR), thus bringing the network into vulnerable state.In contrast to A-IDS, a misuse-based IDS (MIDS) attempts to solve multiclass classification problem, where a future attack could be detected by comparing it with some known attacks signatures stored in knowledge-based system.It results shows a lower FAR, however,unknown attacks cannot be easily detected [2].

Owing to the fact that A-IDS are powerful to find new types of attacks, it is more adopted in IDS research.Even though it offers a small improvement in the performance, such A-IDS would be a significant asset for an organization.For instance, it could help an organization to get rid of successful attack, e.g., service inaccessibility and performance breakdown, that might result into huge financial loss.However, maintaining a lower FAR while increasing the detection accuracy is also a challenging task.This trade-off is prevalently solved using the combination of feature selection and classification algorithms.Feature selection or feature importance methods are crucial as some irrelevant features might contribute to degrading classifier’s performance.

To develop an A-IDS that is able to learn anomaly or normal pattern within the network,a classification algorithm is trained using publicly available network traffic log datasets such as NSL-KDD[3],UNSW-NB-15[4],and more recently,CICIDS-2017[5].These datasets are commonly used in the current literature for benchmarking the proposed A-IDS model.To improve an A-IDS, a considerable number of classification algorithms have been carried out, ranging from shallow machine learning models to deep neural network(DNN) models [6,7].Besides, some ensemble learners are also taken into account due to their performance advantages over individual classification algorithms [8,9].

In an ensemble learner,multiple classification algorithms are trained to predict the same problem.Over the last few decades, ensemble learners have shown remarkable performance in various applications,including cybersecurity field.However, there still exist several research challenges while utilizing ensemble learners.For instance, the selection of the mixture technique for combining the base learner’s predictions and the multifariousness of classifiers in the wild.Thus, this study focuses on the development of an A-IDS technique using stacking-based deep neural network (DNN).Stacking is chosen due to its flexibility in combining multiple classifiers in heterogeneous way.The contributions of this paper lie in two different angles:(i) An ensemble approach of DNN is proposed, instead of just using DNN as an individual classifier; and (ii) A two-step significance test is employed to prove the effectiveness of the proposed model over individual model.

2 Related Work

In this section, a brief review of existing A-IDS techniques is discussed.Since A-IDS is an active research field, we only provide the proposed techniques published in the last two years, e.g.,2018 and 2019 and studies that employed at least one classifier ensemble in their experiment.This is also to show the position of this paper in comparison with other state- of-the-art techniques.We summarize and classify the trend of A-IDS research in Tab.1.Interested readers might refer to recently survey papers[10-14].

Table 1:Classification of A-IDS w.r.t detection approaches and other important categories

Table 1 (continued).

3 Material and Methods

This section describes several publicly available datasets used in the experiment.The remaining part of this section details the proposed A-IDS model.

3.1 Intrusion Datasets

The following datasets are very common in IDS community.NSL-KDD and UNSW-NB15 are considered for network packets-based analysis, while CICIDS 2017 is used for Web traffic-based analysis.The datasets are described chronologically as follows.

NSL-KDD [3]:

It is an improved version of long-standing intrusion dataset,called KDD Cup 99.Unlike its predecessor,NSL-KDD possesses no redundant samples, providing more realistic and reliable dataset while applying machine learning algorithm to develop an IDS model.A number of training samples (e.g.,125,973 instances) are used for creating the classification model, where the number of samples representing anomaly and normal class is 67,343 and 58,630 samples, respectively.In addition, for the sake of the evaluation procedure, an independent testing set (e.g., KDDTest+) is taking into consideration.The testing set consists of 22,544 instances.

UNSW-NB15 [4]:

It was built by generating real-life normal network packets as well as synthetic attacks using IXIA PerfectStorm tool.A training set consisting of 37,000 normal and 45,332 attack samples is used in our experiment.In addition, an independent test set, called UNSW-NB15 test (e.g., 175,341 samples) is also used for evaluating the proposed classification model.The number of input feature is 42 with 1 class label attribute.

CICIDS 2017[5]:

B-profile system was used to generate realistic benign background traffic.Moreover, several network protocols such as HTTP, HTTPS, FTP, SSH, etc.were also taken into consideration, providing a complete network traffic dataset with a diverse attack profiles.There are 78 input features, while the number of benign and malicious samples is 168,186 and 2,180 samples, respectively.Since an independent dataset is not provided, we simply apply a train-test split with a ratio of 80% and 20% for training and testing set, respectively.

3.2 Proposed Method

The idea of our proposed model is briefly presented in the following subsections:

3.2.1 Deep Neural Network

Since the advent of artificial neural networks(ANNs)that mimic human thought,deep neural networks(DNNs) (e.g., deep learning) is one of the most effective tools in comparison with other machine learning algorithms in the wild.DNN is built based on the initial ANN architecture that has a multilayer structure,activation and optimization functions.It is highly recognized due to the advancement of computing hardware.Fig.1 denotes a base DNN model.The base DNN architecture consists of one input layer,three hidden layer, and one output layer.All features are fed into input layer, in which some nonlinear operations are then performed to provide the final class prediction in the output layer.

3.2.2 Stacking Ensemble

Stacking was firstly introduced by the researcher in[28].Despite the fact that it was originally invented by Wolpert, the present-day stacking that uses internal k-fold cross-validation was Breiman’s contribution.Our proposed stacking-based deep learning model is detailed in Algorithm 1.In this study, five different DNN base models are taken into account.The goal of using such different models is to maximize the diversity of the ensemble.This is quite essential since without diversity, an ensemble is deemed to be unsuccessful as it is [29].Diversity can be achieved in several ways:By using different base learners for constructing the ensemble (e.g., heterogeneous) and by using different training set.This paper is emphasized on the first strategy, specifically, different learning parameters of each base DNN are used.Moreover,a gradient boosting machine learning (GBM)[30]is considered as meta-learning classifier.

Algorithm 1:Proposed stacking-based deep neural network for A-IDS

Algorithm 1 (continued).

4 Results and Discussion

In this section,the experimental results of staking-based deep neural network for an A-IDS is described.First of all,learning parameters of each base DNN model are specified in Tab.2.As mentioned previously,by specifying different learning parameters, our objective is to maximize the diversity and we expect that an improved final ensemble prediction could be obtained.To evaluate the proposed model and baseline models, a Matthews correlation coefficient (MCC) is considered.The metric is found to be meaningful to measure the performance of classifier applied to imbalance datasets.Furthermore, two other metrics, i.e.,accuracy and false alarm rate (FPR) that are commonly used in IDS research are also taken into consideration.Those three performance measures can be obtained as follows Fig.2:

Figure 1:Architecture of a base DNN model

Figure 2:Proposed stacking-based DNN for anomaly-based IDS

A deep learning framework, i.e., H2O was utilized for running classification task.All codes were implemented in R on a machine with Linux operating system, 32 GB memory, and Intel Xeon processor.First of all, the performance of all classifiers with respect to MCC metric are presented in Fig.3.It is clear that for all IDS datasets, the proposed stacking-based DNN outperforms all baseline models, except for UNSW-NB15.Using NSL-KDD, the proposed model (MCC = 0.7994) has achieved better than DNN1 (MCC = 0.7189), DNN2 (MCC = 0.7737), DNN3 (MCC = 0.6893), DNN4 (MCC = 0.6724), and DNN5 (MCC = 0.6675).Similarly, the proposed model has a significant improvement over the baseline models when it is applied to CICIDS 2017.Tab.3 compares relative performance between the proposed model and baseline models.

Table 2:Learning parameters for each DNN base model

Figure 3:Performance of stacking-based DNN and baseline models w.r.t MCC score

Table 3:Relative performance differences(%)between the proposed model and the base-lines.For example,the proposed model performance on NSL-KDD is 11.20%higher than DNN1

Table 4:Results of all pair-wise comparisons using Quade post hoc test (bold indicates significance)

Table 5:Performance comparison between the proposed model and some state-of-the-art techniques(bold indicates best value)

Table 5 (continued).

For the sake of completeness, an empirical comparison using statistical significance tests is also provided in this section.For this purpose, a two-fold Quade-Quadepost hoctest [36] is employed.Quade test is deemed to be more powerful than other tests when comparing five or less different classifiers.The two or more classifiers are significantly different ifp-value is less than a threshold (0.5 in our case).First of all, an omnibus test using Quade test yieldsp-value = 0.067, with degree of freedom, d f = 5 is conducted.Therefore, it can be inferred that at least one classifier has performed differently than others.Since the test demonstrates its contribution, Quadepost hoctest is carried out.Tab.4 exhibits thepvalues of all pair-wise comparisons using Quadepost hoctest.It conveys an information that the proposed model is statistically significant than DNN3, DNN4, and DNN5.Finally, in order to ensure the comprehensiveness of this study, it is compulsory to benchmark the proposed model and other existing approaches.Tab.5 depicts such a fairer comparison with the state-of-the-arts in terms of accuracy and FPR.It proves that the proposed model is obviously superior to every other approach published in some major outlets.

5 Conclusion

Anomaly detection in computer network has always been an active research in cybersecurity domain.Many studies have been implemented to address network traffic logs as a binary classification problem.In the current literature, there is no available stacking-based deep neural network approach applied to anomaly-based IDS thus far.In this study, a stacking-based deep neural network is designed for anomaly detection, coping with a two-class detection problem, i.e., normal and malicious.To evaluate the effectiveness of the proposed model, the experiments were performed on three different intrusion datasets such as NSL-KDD, UNSW- NB15, and CICIDS 2017.Experimental results demonstrate that the proposed model is a first-rate method for anomaly detection with a detection accuracy of 89.97%,92/83%, and 99.65% when dealing with specified training sets of KDDTest+, UNSW-NB15test, and CICIDS 2017, respectively.

Funding Statement:This work was supported by the National Research Foundation of Korea(NRF)grant funded by the Korea government(MSIT)(No.2019R1F1A1059346).This work was supported by the 2020 Research Fund(Project No.1.180090.01)of UNIST(Ulsan National Institute of Science and Technology).

Conflict of Interest:The authors declare that they have no conflicts of interest to report regarding the present study.

主站蜘蛛池模板: 国产在线精彩视频二区| 色网站免费在线观看| 波多野结衣一区二区三区四区视频| 亚洲高清国产拍精品26u| 波多野结衣一二三| 69国产精品视频免费| 亚洲日韩在线满18点击进入| 国产精品自在在线午夜区app| 伊人久久久久久久久久| 亚洲成人网在线播放| 国产精品白浆在线播放| 国产香蕉一区二区在线网站| 日韩免费视频播播| www中文字幕在线观看| 亚洲人成网站色7777| 国产主播一区二区三区| 97在线视频免费观看| 98精品全国免费观看视频| 亚洲妓女综合网995久久| 2020国产精品视频| 三区在线视频| 制服无码网站| 国产微拍一区二区三区四区| 国产福利拍拍拍| 精品视频在线观看你懂的一区| 国产真实乱子伦视频播放| 毛片a级毛片免费观看免下载| 四虎影视国产精品| 午夜视频免费一区二区在线看| 国产亚洲一区二区三区在线| 日韩免费毛片| 中国精品自拍| 国产精品视频999| 朝桐光一区二区| 国产午夜一级毛片| 在线中文字幕日韩| 操美女免费网站| 精品福利视频网| a毛片在线免费观看| 国产97视频在线| 99视频在线精品免费观看6| 日本久久网站| 五月天福利视频| 国产中文一区二区苍井空| 天堂成人av| 99视频全部免费| 亚洲最大看欧美片网站地址| 福利国产在线| 免费观看男人免费桶女人视频| 国产综合另类小说色区色噜噜| 亚洲成网777777国产精品| 国语少妇高潮| 久久国产av麻豆| 成人久久精品一区二区三区| 无码一区二区三区视频在线播放| 国产喷水视频| 欧美日韩一区二区三区四区在线观看| 午夜a视频| 欧美成a人片在线观看| 四虎精品国产永久在线观看| 国产日本一区二区三区| 视频一本大道香蕉久在线播放| 东京热一区二区三区无码视频| 亚洲视频四区| 亚洲天堂免费在线视频| 国产精品妖精视频| 精品国产污污免费网站| 久久精品视频亚洲| 日本一本在线视频| 香蕉eeww99国产在线观看| 国产成人久久777777| 国产精品国产主播在线观看| 成人中文字幕在线| 国内嫩模私拍精品视频| 国产地址二永久伊甸园| 欧美高清国产| 成人噜噜噜视频在线观看| 日本免费福利视频| 2021国产精品自产拍在线观看| 99免费视频观看| 国产成人8x视频一区二区| 无码一区中文字幕|