<!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD v1.0 20120330//EN" "JATS-archivearticle1.dtd">
<article xmlns:xlink="http://www.w3.org/1999/xlink">
  <front>
    <journal-meta>
      <journal-title-group>
        <journal-title>The Italian Conference on CyberSecurity, April</journal-title>
      </journal-title-group>
      <issn pub-type="ppub">1613-0073</issn>
    </journal-meta>
    <article-meta>
      <title-group>
        <article-title>Approach for Vulnerability Scanning Detection</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Leonardo Regano</string-name>
          <email>leonardo.regano@unica.it</email>
          <xref ref-type="aff" rid="aff1">1</xref>
          <xref ref-type="aff" rid="aff3">3</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Daniele Canavese</string-name>
          <email>daniele.canavese@irit.fr</email>
          <xref ref-type="aff" rid="aff2">2</xref>
          <xref ref-type="aff" rid="aff3">3</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Luca Mannella</string-name>
          <email>luca.mannella@polito.it</email>
          <xref ref-type="aff" rid="aff0">0</xref>
          <xref ref-type="aff" rid="aff3">3</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Dipartimento di Automatica e Informatica, Politecnico di Torino</institution>
          ,
          <addr-line>Corso Duca degli Abruzzi 24, 10129, Turin</addr-line>
          ,
          <country country="IT">Italy</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>Dipartimento di Ingegneria Elettrica ed Elettronica, Università degli Studi di Cagliari</institution>
          ,
          <addr-line>Piazza d'Armi, 09123, Cagliari</addr-line>
        </aff>
        <aff id="aff2">
          <label>2</label>
          <institution>IRIT</institution>
          ,
          <addr-line>CNRS, 118 Route de Narbonne, CEDEX 9, F-31062 Toulouse</addr-line>
          ,
          <country country="FR">France</country>
        </aff>
        <aff id="aff3">
          <label>3</label>
          <institution>Security</institution>
          ,
          <addr-line>User Privacy, Vulnerability Scanning</addr-line>
        </aff>
      </contrib-group>
      <pub-date>
        <year>2024</year>
      </pub-date>
      <volume>0</volume>
      <fpage>8</fpage>
      <lpage>12</lpage>
      <abstract>
        <p>This paper presents an approach leveraging machine learning techniques to monitor network trafic in search of vulnerability scanning activities. Indeed, attackers typically perform an initial reconnaissance phase to identify the vulnerabilities their target platforms expose, which they can abuse to perform cyberattacks. Classical network monitoring approaches have multiple limitations. Indeed, they are typically hindered by the presence of encrypted trafic, hamper user privacy resorting to Deep Packet Inspection (DPI), and cannot identify advanced scanning techniques such as slow scans. The research presented in this paper overcomes such limitations through machine learning classifiers that can detect vulnerability scans with flow-level granularity, employing statistical features evaluated on Layer 3 and 4 network packet headers. We demonstrate the feasibility of our approach training classifiers able to detect trafic originated by three well-known vulnerability scanning tools: OpenVAS, sqlmap, and Wapiti. The presented Proof-of-Concept classifiers are characterized by a high classification accuracy, with the best classifier reaching a balanced accuracy of 98%.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>-</title>
      <p>CEUR
ceur-ws.org</p>
    </sec>
    <sec id="sec-2">
      <title>1. Introduction</title>
      <p>
        In recent years, cyberattacks have been steadily on the rise. In particular, interactive intrusion
techniques, where human malicious actors manually interact with target hosts instead of
depending on malware, are becoming widespread, as reported by Crowdstrike in a recent
report [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]. Indeed, these intrusion techniques typically leverage the vulnerabilities of hosts,
exposing the services targeted by the malicious actors. These cyberattacks typically start with
a reconnaissance phase, where attackers employ automated scanners to detect vulnerabilities,
misconfigurations, or weaknesses of the target host or network, which they could exploit to
(L. Mannella)
https://web.unica.it/unica/page/it/leonardo_regano (L. Regano); https://github.com/daniele-canavese
obtain entry points to take control of their target. Thus, promptly identifying vulnerability
scans is paramount when protecting corporate networks with their associated services.
      </p>
      <p>
        Attackers can count on many tools to conduct vulnerability scans, both general-purpose
or specifically tailored to test multiple components of corporate networks, e.g., DBMSs, web
servers, and network security appliances. For example, the OWASP foundation maintains an
extensive list1 of vulnerability scanning tools targeting web applications. Traditional defense
techniques for vulnerability scan detection typically rely on identifying patterns, anomalies, and
deviations from established baselines in the monitored network trafic. For example, volumetric
trafic monitors are typically triggered when an abnormal number of requests in a short period
originate from the same network client. This may indicate a vulnerability scan due to the
large number of vulnerability tests executed by automated tools. Nevertheless, volumetric
techniques are often unable to identify slow vulnerability scans properly [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ], where attackers
deliberately extend the scanning process, reducing the rate of requests to the target host to
avoid suspicious trafic peaks that network trafic monitors may identify. Other approaches
rely on Deep Packet Inspection (DPI) to identify known patterns in the trafic packets’ payload.
However, resorting to DPI techniques is becoming increasingly dificult due to the widespread
adoption of end-to-end encryption. Furthermore, DPI raises concerns about user privacy and
may not be compatible with related regulations like the European General Data Protection
Regulation (GDPR).
      </p>
      <p>This paper proposes a novel approach for automatically detecting vulnerability scans that can
address the aforementioned challenges. In particular, we employ machine learning algorithms
trained on network trafic statistics evaluated exclusively on Layer 3 and 4 header data. By
avoiding DPI, our approach safeguards user privacy. Furthermore, since each TCP flow is
evaluated separately, our approach overcomes the limitations of traditional volumetric trafic
monitoring techniques, avoiding detection evasion from attackers employing slow scanning
techniques. We demonstrate the feasibility of our approach by describing two machine learning
models, employing respectively random forests and fully connected neural networks, trained on
a data set we have built starting from network trafic captures of vulnerability scans executed on
both vulnerable and secure websites using three well-known vulnerability scanners: OpenVAS,
sqlmap, and Wapiti.</p>
      <p>The rest of the paper is organized as follows. Section 2 presents the most relevant works
applying Machine Learning techniques for trafic classification. Section 3 provides an overview
of the vulnerability scanning tools we investigate in this study. Section 4 illustrates the dataset
we have built to train the machine learning models, while Section 5 elaborates on their accuracy
in detecting vulnerability scans. Finally, Section 6 concludes the paper, providing some insights
into the future work we plan to conduct in this field.</p>
    </sec>
    <sec id="sec-3">
      <title>2. Related Work</title>
      <p>The simplest method of trafic classification relies on port numbers. However, using dynamic
ports rendered this approach less efective, leading to the adoption of Deep Packet Inspection
(DPI) techniques. Subsequently, the rise of encrypted trafic reduced the accuracy of DPI. As a
1https://owasp.org/www-community/Vulnerability_Scanning_Tools, last visited on February 25, 2024.
result, Machine Learning-based methods to classify packets have recently gained prominence.
These methods only require unencrypted headers or information from encrypted data.</p>
      <p>
        This paper presents an ML-based approach to detect vulnerability scanning, which could
be integrated into the existing Intrusion Detection/Prevention System (IDS/IPS). IDS and IPS
recognize possible security violations and anomalies by analyzing network packets. Some
IDS/IPS software, such as Suricata 2, Snort3, and Zeek4, can detect scanners. However, they have
limitations. For example, they may not be able to recognize the nature of very long scans [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ] or
identify the phenomenon collectively when multiple IPs perform scans simultaneously. Our
proposed solution overcomes the aforementioned problems by analyzing TCP flow regardless
of length and without relying on metrics such as IP address. Instead, the analysis is based solely
on metrics extracted from packet headers.
      </p>
      <p>To the best of our knowledge, this paper proposes the first general-purpose tool for detecting
any type of vulnerability scanning. The closest work in literature, albeit limited to the detection
of SQL injection attacks, is the one from Crespo et al. [4]. The authors created a dataset by
executing SQL injection, capturing the related trafic alongside benign trafic, and calculating
network trafic statistics employing Cisco Netflow [ 5]. They consequently trained multiple
Machine Learning models, including k-Nearest Neighbour (KNN) and Random Forests (RF),
achieving an accuracy score higher than 96%. In the remainder of this section, we present the
most relevant works applying Machine Learning techniques to detect cyberattacks.</p>
      <p>Wang et al. [6] introduced the end-to-end learning paradigm for protocol classification. They
utilized a 1D CNN on raw data from the SCX VPN-nonVPN dataset. The authors did not
report training or evaluation times or provide a complete comparison against traditional ML
techniques. In their study, Lopez-Martin et al. [7] utilized Deep Learning (DL) techniques with
time-series features to analyze trafic captures of the RedIRIS network. They proposed several
classifiers based on either CNN or Recurrent Neural Network (RNN), or a combination of the
two. Although they achieved good results, the authors did not compare their findings to classical
machine learning algorithms.</p>
      <p>In their study on app fingerprinting, Taylor et al. [ 8] proposed AppScanner, a framework
capable of classifying trafic generated by 100 diferent applications. They employed either
Support Vector Classifiers (SVC) or random forests for each trafic flow. Chen et al [ 9]
demonstrated the suitability of Deep Neural Networks (DNN) for app fingerprinting. The pipeline was
tested to classify the application on the first dataset and the protocol on the second dataset,
which was used to generate the trafic data. A classic 2D CNN was used after projecting six
time-series features into a multi-channel image.</p>
      <p>Vargas et al. [10] developed a Bayesian Network model to classify attack types, such as
worms and (Distributed) Denial of Service (DDoS/DoS) attacks, using time series. The reported
accuracy is notably high. However, the model only considers terminated flows, making it
unsuitable for real-time applications.</p>
      <p>Naseer et al. [11] investigated the suitability of DL for anomaly detection. The authors trained
several Deep Learning architectures on the NLS-KDD dataset, including Auto Encoders (AE),
2https://suricata.io, last visited on February 15, 2024.
3https://www.snort.org, last visited on February 15, 2024.
4https://zeek.org, last visited on February 15, 2024.</p>
      <p>CNN, and Long Short-Term Memory (LSTM). This dataset comprises four attack typologies:
DoS, User to Root (U2R), Root to Local (R2L), and Probe. Their comparison with traditional
machine learning techniques showed that DL techniques improve accuracy by a few percentage
points, albeit at the cost of a training time at least three orders of magnitude longer.</p>
      <p>Wang et al. [12] proposed an approach where they constructed a dataset consisting of both
malware and real trafic data. They used this dataset to train a CNN model. Although the
authors claimed that their framework has early-stage detection capability, they did not provide
the evaluation time of the overall pipeline. Therefore, it is uncertain whether such a framework
can be used for real-time detection.</p>
      <p>More recently, a systematic literature review by Abdulganiyu et al. [13] includes a section
on applications of ML techniques to increase accuracy in Intrusion Detection Systems (IDS).
Interestingly, we could not find any works related to vulnerability scanning detection in this
review, excluding one from Vijayanand et al. [14]. In the latter, the authors develop an Intrusion
Detection System tailored for wireless mesh networks based on Support Vector Machines (SVM).
The authors employ a feature selection strategy based on a genetic algorithm and train their
classifiers on the CICIDS2017 dataset 5. The latter includes, among various attacks, also port
scans executed with Nmap6.</p>
    </sec>
    <sec id="sec-4">
      <title>3. Vulnerability Scanning Tools</title>
      <p>This Section presents the vulnerability scanning tools adopted to train our solution. A
vulnerability scanner is a tool that can identify potential weaknesses in a system or network
through automated rules and analysis. The primary objective of this software is to generate a
comprehensive evaluation report or assessment that accurately reflects the current state of the
system. On the contrary, the process of conducting a simulated and authorized computer attack
is commonly referred to as a penetration test. This test enables the identification of potential
vulnerabilities from the perspective of a potential attacker. The most common vulnerabilities,
related to both popular software and diferent operating systems, are collected and cataloged by
type and version of the program in various public lists, such as the Common Vulnerabilities and
Exposures (CVE)7. It is important to stay informed about these vulnerabilities, periodically verify
if they are afecting machines under our control, and take appropriate measures to mitigate any
potential risks.</p>
      <p>To identify these vulnerabilities, network administrators can use vulnerability scanner tools
such as Burpsuite, Nmap, Nessus, OpenVAS, Qualys VMDR, sqlmap, Wapiti, and many more.
Among all the available vulnerability scanners, those selected for the study are OpenVAS, sqlmap,
and Wapiti. These tools were chosen due to their widespread use and open-source nature, in
contrast to enterprise solutions like Nessus8 and QualysVMDR9 which require commercial
relationships between companies (and are less likely to be used for malicious use). Burpsuite10
5https://www.unb.ca/cic/datasets/ids-2017.html, last visited on February 16, 2024.
6https://nmap.org, last visited on February 16, 2024.
7https://cve.mitre.org/, last visited on February 23, 2024.
8https://www.tenable.com/products/nessus, last visited on February 23, 2024.
9https://www.qualys.com, last visited on February 23, 2024.
10https://portswigger.net/burp, last visited on February 23, 2024.
is another example of free and open-source software, but its main function is to be used as an
application proxy, thus moving away from the purpose of the study.</p>
      <p>OpenVAS11 (Open Vulnerability Assessment System) is a framework for vulnerability analysis
and management. OpenVAS empowers users to perform a wide range of tests starting from
the low level, analyzing the various network protocols, up to web applications and their
functionalities. OpenVAS integrates the Nmap software from which it is possible to perform scans
of TCP and UDP ports as a preliminary operation before testing for vulnerabilities. OpenVAS
can monitor and generate system reports to identify weak points and improve system status.
OpenVAS also enables automation and integration with other vulnerability assessment tools.
OpenVAS maintains its own database, which is regularly updated with newly discovered CVEs
and scripts capable of identifying them, along with a danger classification. This ensures that
the resulting reports are as up-to-date as possible and enables the identification of the most
critical vulnerabilities through vulnerability assessment.</p>
      <p>sqlmap12 is an open-source penetration testing tool that automates the process of identifying
SQL injection vulnerabilities. An SQL injection is a particular case of injection technique that
uses SQL instructions, a type of attack that usually allows discovering the structure of an
application’s database and retrieving sensitive information [15]. The use of this vulnerability is
possible due to poor control of the data received as input that is used within SQL queries.</p>
      <p>Wapiti13 is a vulnerability analysis tool for web applications. It automates security checks
of sites and performs black-box analysis which means it conducts non-specific tests for the
victim, as it is not possible to know its source code. Through bots and scripts that read web
pages, Wapiti tries to inject data into URLs and forms to uncover cross-site scripting (XSS)
vulnerabilities [16]. An XSS vulnerability is made possible by poor control and/or poor handling
of the data that a user can enter by interacting with the site.</p>
    </sec>
    <sec id="sec-5">
      <title>4. Data Set Construction</title>
      <p>This section reports how we built our data set for the analysis of vulnerability scanning.</p>
      <sec id="sec-5-1">
        <title>4.1. Trafic acquisition</title>
        <p>We designed a simple but efective scenario for capturing the vulnerability scanning trafic.
In our scenario, we have only two end-points: a web server (the victim) and the attacker
conducting the vulnerability scans. To achieve more realistic data, both the victim and attacker
are connected through the Internet.</p>
        <p>We tested three of the most used vulnerability scanners: OpenVAS14, sqlmap, and Wapiti.
Table 1 shows our attack machine’s hardware and software specifications.</p>
        <p>On the other hand, for the victim, we decided to test a variety of vulnerable websites (i.e.,
Juice Shop and DVWA) mixed with several traditional websites found on GitHub15 running
11https://www.openvas.org/, last visited on February 23, 2024.
12http://sqlmap.org/, last visited on February 23, 2024.
13http://wapiti.sourceforge.net/, last visited on February 23, 2024.
14We performed the scanning on the target websites using the default Full and Fast Scan configuration.
15We downloaded several websites from https://github.com/search?q=website&amp;type=repositories.
component</p>
        <p>specifications
CPU
RAM
operating system
kernel
OpenVAS
sqlmap
Wapiti</p>
        <sec id="sec-5-1-1">
          <title>GNU/Linux Ubuntu 20.04.1</title>
          <p>5.15.0-72-generic
22.6.2
1.7
3.1.6
on Apache and nginx. We used Tshark to record all the incoming vulnerability scans from the
attacker. Table 2 reports the victim node’s specifications instead.</p>
          <p>For the benign trafic, we used some trafic captures that we had previously gathered for
another work [17, 18]. These captures include human browsing trafic performed under Linux
and Windows with Firefox, Chrome, and Edge on various websites.</p>
          <p>Table 3 lists how many packets and TCP web flows we gathered. The benign class is the
majority since it also includes multimedia trafic, which transports more data than traditional
web pages and textual data. It is important to emphasize that, in our study, we are mostly
interested in the flows since they represent our observations for the machine learning models.
component
CPU
RAM
operating system
kernel
Juice Shop
DVWA
Apache
nginx
Tshark
specifications
GNU/Linux Ubuntu 20.04.1
5.15.0-72-generic
8.7.2
1.10
2.3.4
1.22
4.2.2</p>
        </sec>
      </sec>
      <sec id="sec-5-2">
        <title>4.2. Data analysis</title>
        <p>Once we gathered the trafic, we created a Python script with scapy 16 to extract the statistics
for each flow.</p>
        <p>These metrics represent the classification features we used to categorize the data using our
machine-learning algorithms. The features marked with ‘both directions’ (e.g., the number
16https://scapy.net/, last visited on February 28, 2024.</p>
        <p>class
benign
OpenVAS
sqlmap
Wapiti
packets
of sent packets) include two values: one from the attacker to the victim and vice versa. We
purposely ignored the IP addresses and the ports since they are easy to spoof.</p>
        <p>We then randomly split our data set into three sub-sets: the training set (containing 70 % of
the samples), the development set for the hyperparameter optimization (15 % of the samples),
and the test set (the remaining 15 % of the observations). Table 4 lists the number of samples
(TCP flows) per set, while Table 5 enumerates the flow statistics we employed.</p>
        <p>name
training set
development set
test set
total
fraction [ %] samples</p>
      </sec>
    </sec>
    <sec id="sec-6">
      <title>5. Classification Results</title>
      <p>We trained two machine learning models for detecting vulnerability scanning: a random
forest and a fully connected neural network. We opted for these models since, based on our
experience, they generally ofer high accuracy for detecting anomalous trafic conditions. We
decided to avoid a cross-validation phase since we considered the size and variability of the
dataset suficient.</p>
      <sec id="sec-6-1">
        <title>5.1. Random Forest</title>
        <p>We used scikit-learn17 to train a multiclass random forest, and we used a grid search for the
hyperparameter optimization to maximize the accuracy. Table 6 reports the optimal parameters
of our random forest.</p>
        <p>Table 7 shows several classification metrics of our final optimized random forest. Our
model performs excellently, reaching a balanced accuracy of nearly 99 %. SQLmap is the less
recognizable class by the model; this is better emphasized in the confusion matrix, reported in
17https://scikit-learn.org/, last visited on February 28, 2024.</p>
        <p>feature
unit
# transmitted packets (both directions) packet
# packets with payload (both directions) packet
# retransmitted packets (both directions) packet
# out of sequence packets (both directions) packet
# packets with RST set (both directions) packet
# packets with ACK set (both directions) packet
# packets with ACK set and no payload (both directions) packet
# packets with SYN set (both directions) packet
# packets with FIN set (both directions) packet
# packets with PSH set (both directions) packet
# packets with URG set (both directions) packet
# packets with ECE set (both directions) packet
# packets with CWR set (both directions) packet
# packets with NR set (both directions) packet
# payload bytes excluding retransmissions (both directions)B
# payload bytes including retransmissions (both directions)B
# retransmitted bytes (both directions) B
flow duration ms
relative time of first payload packet (both directions) ms
relative time of last payload packet (both directions) ms
relative time of first ACK packet (both directions) ms
criterion for measuring the quality of the tree splits
maximum number of features per tree
maximum tree depth
number of trees
value</p>
        <p>name
total</p>
        <p>Wapiti
balanced accuracy 98.791
accuracy 97.581
(macro) AUC 96.787
(macro) F1-score 81.488
(macro) recall 94.288
(macro) precision 74.953
sqlmap</p>
        <p>benign</p>
      </sec>
      <sec id="sec-6-2">
        <title>5.2. Neural Network</title>
        <p>In addition to the random forest, we also trained a fully connected neural network with skorch18.
The hyperparameter optimization phase selected the values shown in Table 8.
name</p>
        <p>value
learning rate (for Adam)
neurons per layer
activation function</p>
        <p>0.0007
512, 256, 128, and 64</p>
        <p>ReLU
18https://github.com/skorch-dev/skorch, last visited on February 25, 2024.</p>
        <p>name
total</p>
        <sec id="sec-6-2-1">
          <title>OpenVAS sqlmap Wapiti benign</title>
          <p>sqlmap</p>
        </sec>
      </sec>
    </sec>
    <sec id="sec-7">
      <title>6. Conclusions</title>
      <p>In this paper, we presented a novel approach for detecting vulnerability scans. In particular, our
approach can discriminate legitimate trafic from vulnerability scans by employing machine
learning models using a set of trafic statistics computed on the IP and TCP headers as features.
The Proof-of-Concept classifiers presented in this paper, based respectively on random forests
and neural networks, can, in most cases, correctly classify vulnerability scans executed using
three well-known tools: OpenVAS, sqlmap, and Wapiti. The random forests classifier performs
best, with a balanced accuracy of 98.7%. The presented approach does not resort to DPI
techniques, thus being fully compatible with encrypted trafic and respecting user privacy. Both
classifiers can react swiftly to attempted vulnerability scans, needing only 5 packets in a flow to
classify it accurately.</p>
      <p>In the future, we plan to conduct an ad-hoc study targeting vulnerability scanning tools
specifically tailored for IoT scenarios. Indeed, one of the vulnerability scanners we studied
in this paper, OpenVAS, includes vulnerability scans tailored for IoT devices19. In previous
work, we presented the IoT proxy [19], an architectural component to ofload security controls
from IoT devices, which typically have limited computational resources. The IoT proxy has a
modular approach that permits the stacking of multiple security controls as virtual Network
Security Functions (vNSF). We plan to investigate the feasibility of the approach presented in
this paper for IoT vulnerability scanners and their efectiveness in bolstering the security of
IoT architectures (e.g., Industrial Control Systems) when deployed as vNSF running on the IoT
proxy.</p>
    </sec>
    <sec id="sec-8">
      <title>Acknowledgments</title>
      <p>The authors thank Alberto Solaro for his valuable contributions to this research activity during
his master’s thesis.</p>
      <p>This work was partially supported by project SERICS (PE00000014) under the NRRP MUR
program funded by the EU - NGEU.</p>
      <p>New York, NY, USA, 2021, p. 14–20. URL: https://doi.org/10.1145/3442520.3442525. doi:10.
1145/3442520.3442525.
[4] I. S. Crespo-Martínez, A. Campazas-Vega, Ángel Manuel Guerrero-Higueras, V.
RiegoDelCastillo, C. Álvarez Aparicio, C. Fernández-Llamas, Sql injection attack
detection in network flow data, Computers &amp; Security 127 (2023) 103093. URL: https:
//www.sciencedirect.com/science/article/pii/S0167404823000032. doi:https://doi.org/
10.1016/j.cose.2023.103093.
[5] B. Claise, Cisco systems netflow services export version 9, Technical Report, Cisco System,</p>
      <p>Inc., 2004.
[6] W. Wang, M. Zhu, J. Wang, X. Zeng, Z. Yang, End-to-end encrypted trafic classification
with one-dimensional convolution neural networks, in: 2017 IEEE Int. Conf. on Intell. and
Secur. Inform., 2017, pp. 43–48.
[7] M. Lopez-Martin, B. Carro, A. Sanchez-Esguevillas, J. Lloret, Network Trafic Classifier
with Convolutional and Recurrent Neural Networks for Internet of Things, IEEE Access 5
(2017) 18042–18050. doi:10.1109/ACCESS.2017.2747560.
[8] V. F. Taylor, R. Spolaor, M. Conti, I. Martinovic, Appscanner: Automatic fingerprinting of
smartphone apps from encrypted network trafic, in: 2016 IEEE Eur. Symp. on Secur. and
Privacy, 2016, pp. 439–454.
[9] Z. Chen, K. He, J. Li, Y. Geng, Seq2img: A sequence-to-image based approach towards ip
trafic classification using convolutional neural networks, in: 2017 IEEE Int. Conf. on Big
Data, 2017, pp. 1271–1276. doi:10.1109/BigData.2017.8258054.
[10] M. J. Vargas-Munoz, R. Martinez-Pelaez, P. Velarde-Alvarado, E. Moreno-Garcia, D. L.</p>
      <p>Torres-Roman, J. J. Ceballos-Mejia, Classification of network anomalies in flow level
network trafic using Bayesian networks, in: 2018 28th Int. Conf. on Electron., Commun.
and Comput., volume 2018-Janua, 2018, pp. 238–243. doi:10.1109/CONIELECOMP.2018.
8327205.
[11] S. Naseer, Y. Saleem, S. Khalid, M. K. Bashir, J. Han, M. M. Iqbal, K. Han, Enhanced network
anomaly detection based on deep neural networks, IEEE Access 6 (2018) 48231–48246.
doi:10.1109/ACCESS.2018.2863036.
[12] W. Wang, M. Zhu, X. Zeng, X. Ye, Y. Sheng, Malware trafic classification using
convolutional neural network for representation learning, in: Int. Conf. on Inf. Networking, IEEE,
2017, pp. 712–717. doi:10.1109/ICOIN.2017.7899588.
[13] O. H. Abdulganiyu, T. Ait Tchakoucht, Y. K. Saheed, A systematic literature
review for network intrusion detection system (IDS), International Journal of
Information Security 22 (2023) 1125–1162. URL: https://doi.org/10.1007/s10207-023-00682-2.
doi:10.1007/s10207-023-00682-2.
[14] R. Vijayanand, D. Devaraj, B. Kannapiran, Intrusion detection system for
wireless mesh network using multiple support vector machine classifiers with
geneticalgorithm-based feature selection, Computers &amp; Security 77 (2018) 304–314. URL:
https://www.sciencedirect.com/science/article/pii/S0167404818303766. doi:https://doi.
org/10.1016/j.cose.2018.04.010.
[15] L. K. Shar, H. B. K. Tan, Defeating sql injection, Computer 46 (2013) 69–77. doi:10.1109/</p>
      <p>MC.2012.283.
[16] S. Gupta, B. B. Gupta, Cross-site scripting (xss) attacks and defense mechanisms:
classification and state-of-the-art, International Journal of System Assurance
Engineering and Management 8 (2017) 512–530. URL: https://doi.org/10.1007/s13198-015-0376-0.
doi:10.1007/s13198-015-0376-0.
[17] D. Canavese, L. Regano, C. Basile, G. Ciravegna, A. Lioy, Encryption-agnostic classifiers
of trafic originators and their application to anomaly detection, Computers &amp; Electrical
Engineering 97 (2022) 107621. URL: https://www.sciencedirect.com/science/article/pii/
S0045790621005528. doi:https://doi.org/10.1016/j.compeleceng.2021.107621.
[18] D. Canavese, L. Regano, C. Basile, G. Ciravegna, A. Lioy, Data set and machine learning
models for the classification of network trafic originators, Data in Brief 41 (2022).
URL: https://www.scopus.com/inward/record.uri?eid=2-s2.0-85126104702&amp;doi=10.
1016%2fj.dib.2022.107968&amp;partnerID=40&amp;md5=d74892c6b0daf14665ac5d4457e8aa19.
doi:10.1016/j.dib.2022.107968, cited by: 3; All Open Access, Gold Open Access,
Green Open Access.
[19] D. Canavese, L. Mannella, L. Regano, C. Basile, Security at the edge for resource-limited
iot devices, Sensors 24 (2024). URL: https://www.mdpi.com/1424-8220/24/2/590. doi:10.
3390/s24020590.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>CrowdStrike</given-names>
            <surname>2024 Global Threat</surname>
          </string-name>
          <string-name>
            <surname>Report</surname>
          </string-name>
          ,
          <source>Technical Report, CrowdStrike</source>
          ,
          <year>2024</year>
          . URL: https: //go.crowdstrike.
          <source>com/global-threat-report-2024</source>
          .html.
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>T.</given-names>
            <surname>Yamashita</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Miyamoto</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Sekiya</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Nakamura</surname>
          </string-name>
          ,
          <article-title>Slow scan attack detection based on communication behavior</article-title>
          ,
          <source>in: Proceedings of the 2020 10th International Conference on Communication and Network Security</source>
          , ICCNS '20,
          <string-name>
            <surname>Association</surname>
          </string-name>
          for Computing Machinery, New York, NY, USA,
          <year>2021</year>
          , p.
          <fpage>14</fpage>
          -
          <lpage>20</lpage>
          . URL: https://doi.org/10.1145/3442520.3442525. doi:
          <volume>10</volume>
          . 1145/3442520.3442525.
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>T.</given-names>
            <surname>Yamashita</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Miyamoto</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Sekiya</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Nakamura</surname>
          </string-name>
          ,
          <article-title>Slow scan attack detection based on communication behavior</article-title>
          ,
          <source>in: Proceedings of the 2020 10th International Conference on Communication and Network Security</source>
          , ICCNS '20,
          <string-name>
            <surname>Association</surname>
          </string-name>
          for Computing Machinery, 19https://www.greenbone.net/wp-content/uploads/solution_comparison_EN.pdf,
          <source>last visited on February 22</source>
          ,
          <year>2024</year>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>