Preprint
Article

This version is not peer-reviewed.

Longitudinal Behavioural Analysis of Industrial IoT Network Traffic Using Passive Monitoring

Submitted:

18 May 2026

Posted:

22 May 2026

You are already at the latest version

Abstract
Industrial Internet of Things (IIoT) production environments rely on automated communication between control systems and embedded devices while operating under strict availability constraints that limit the deployment of conventional IT security controls. Despite extensive research on intrusion detection systems, empirical studies based on long-term observations of real industrial networks remain scarce. This paper presents a three-month passive monitoring study of a production-line IIoT network in a factory environment. A containerised instance of Zeek was deployed in promiscuous mode to collect flow-level and application-layer telemetry without interfering with operations. The results reveal highly deterministic communication patterns dominated by periodic HTTP polling between a central server and distributed devices. Analysis of connection and HTTP logs shows strong temporal regularity, low variability, and stable communication regimes. Although no confirmed malicious activity was observed, transient deviations were identified and attributed to operational events such as production stoppages. These findings demonstrate that production-line IIoT networks can exhibit predictable behaviour suitable for statistical anomaly detection. The main contributions are a longitudinal empirical characterisation of a real-world IIoT network, a methodology for behavioural baseline extraction using passive monitoring, and practical insights for safe deployment in operational environments.
Keywords: 
;  ;  ;  ;  ;  ;  ;  
Subject: 
Engineering  -   Other

1. Introduction

Cybersecurity has become a critical concern for modern industrial production systems, particularly as the rapid evolution toward the Industry 4.0 paradigm continues [1]. This transformation is characterised by the widespread adoption of advanced digital technologies, including the Internet of Things (IoT), which enables the interconnection of machinery, sensors, and control systems within industrial production lines (also known as Industrial IoT, or IIoT). As a result, organisations can collect and process large volumes of real-time operational data, leading to increased automation, improved efficiency, and more informed decision-making processes. However, this increased connectivity also introduces significant cybersecurity risks [2].
Traditionally, Information Technology (IT) and Operational Technology (OT) environments have been designed and managed with distinct objectives. While IT systems prioritise confidentiality and data integrity, OT systems primarily focus on availability and the safe operation of physical processes [3]. Historically, these environments were often isolated, sometimes described as “air-gapped” systems. However, the convergence between IT and OT, driven by the integration of IIoT devices, cloud-based services, and AI technologies, is progressively dissolving these boundaries. This convergence, combined with increasing system complexity and expanding attack surfaces, creates new security challenges that traditional approaches are not fully equipped to address [4,5,6].
In this context, ensuring the security and resilience of industrial networks is particularly critical, as cyber incidents may lead not only to data breaches but also to production disruptions and potential safety hazards for human operators. Despite the existence of various security controls, many industrial environments still exhibit limited cybersecurity maturity and awareness, especially within OT domains. This reinforces the need for effective monitoring and detection mechanisms capable of operating under the specific constraints of industrial systems [7,8].
Intrusion Detection Systems (IDS) play a key role in monitoring and analysing network activity to identify potential security incidents [9]. These systems are generally classified into signature-based and anomaly-based approaches. Signature-based systems are effective in detecting known threats but are inherently limited when facing novel or previously unseen attacks. In contrast, anomaly-based systems aim to identify deviations from established normal behaviour, making them particularly suitable for detecting unknown attacks [10,11]. However, their practical adoption is often hindered by high FP rates, which can reduce operational trust and increase the burden on security analysts.
A fundamental challenge in designing effective anomaly-based detection systems for industrial environments lies in the lack of empirical knowledge about the normal behaviour of real-world production networks. Most existing studies rely on laboratory setups, short-term captures, or datasets with artificially injected attacks, which may not accurately reflect the characteristics of operational industrial systems. In contrast, production environments—especially highly automated IIoT-based lines—are expected to exhibit stable and deterministic communication patterns over time [12,13,14].
To address this gap, this paper presents a longitudinal study of network behaviour in a real IIoT production environment. A passive monitoring approach was adopted using the network security monitor Zeek, deployed in a non-intrusive manner to collect detailed network telemetry over a three-month period. The objective is to characterise baseline communication patterns, identify behavioural invariants, and analyse observed deviations in an operational setting without interfering with production processes.
The main contributions of this work are threefold: (i) an empirical characterisation of a real-world IIoT network based on long-term passive monitoring; (ii) a methodology for extracting behavioural baselines from flow-level and application-level telemetry; and (iii) an analysis of observed deviations and their implications for anomaly-based intrusion detection in industrial environments.

3. Industrial Scenario and Methodology

3.1. Industrial Context

This research was conducted within the scope of the Fishy project [30], which aims to provide cybersecurity monitoring and risk management capabilities for complex supply-chain systems. The project integrates multiple security tools, including vulnerability analysis platforms, signature-based intrusion detection systems, host-based monitoring solutions, and risk assessment components.
One of the industrial use cases considered in this project (hereafter referred to as IndA) consists of an IIoT-based production line, where interconnected devices and sensors support fully automated manufacturing processes. In this environment, the availability of the production line is a primary security objective, as disruptions may directly impact operational continuity. Many of the devices involved do not run traditional operating systems, limiting the applicability of host-based security solutions. This constraint highlights the need for network-level monitoring capable of capturing and analysing communication behaviour across the production infrastructure.

3.2. Preliminary Traffic Characterisation

To understand the communication patterns within the IndA network, an initial exploratory analysis was performed using packet capture tools (e.g., tcpdump) and protocol analysis with Wireshark. This preliminary step aimed to identify dominant protocols and assess the overall structure of network traffic prior to deploying a dedicated monitoring solution.
The results (see Figure 2) showed that approximately 99.9% of the observed traffic corresponded to IPv4, with the remaining 0.1% consisting of ARP traffic. Within IP traffic, around 95% was TCP and 5% ICMP. Further inspection revealed that nearly all TCP traffic was associated with HTTP communications. Specifically, a central server periodically issued HTTP GET requests to individual IIoT devices, which responded with JSON-formatted status information.
Given the fully automated nature of the production line—with minimal human interaction outside scheduled maintenance periods – the observed communication patterns exhibited a high degree of regularity and predictability. This characteristic suggested that behavioural monitoring approaches could be effectively applied to model baseline network activity.

3.3. Monitoring Architecture

Based on the preliminary analysis, a passive monitoring approach was adopted using the network security monitor Zeek. The monitoring probe was deployed in a containerised environment and configured to operate in promiscuous mode, ensuring full visibility of network traffic without interfering with production processes.
The probe was connected to the network through a mirrored port, receiving a copy of all network traffic between the central server and IIoT devices. To meet operational safety requirements, the monitoring system was isolated from the production environment and did not perform any active interaction with network components. This deployment strategy ensured that the monitoring infrastructure remained transparent to the production system while providing adequate visibility into network activity. Figure 3 shows the deployed architecture.

3.4. Data Collection and Processing

Network traffic was continuously monitored over a period of approximately three months. Instead of storing raw packet captures, structured logs were generated using Zeek’s logging framework, enabling efficient storage while preserving semantically rich information about network activity.
The primary data sources considered in this study were:
  • conn.log: providing connection-level information such as duration, packet counts, byte volumes, and connection states;
  • http.log: containing application-layer details, including HTTP methods, response codes, requested endpoints, and payload sizes.
From these logs, a set of features was extracted and grouped into three main categories:
  • Temporal features: timestamps and inter-arrival times;
  • Flow-level features: connection duration, packet counts, and byte volumes;
  • Application-layer features: HTTP methods, response codes, and payload sizes.
To support longitudinal analysis, the extracted features were aggregated over fixed time windows, enabling the identification of trends, periodic patterns, and deviations over time.

3.5. Baseline Modelling

Baseline behaviour was characterised using statistical analysis of the extracted features over the observation period. Given the deterministic nature of the production environment, network communication was expected to follow stable and repetitive patterns.
Descriptive statistics, including measures of central tendency and dispersion, were used to define expected ranges of normal behaviour. Deviations were identified by detecting observations that significantly diverged from these baseline profiles in terms of timing, volume, or protocol characteristics.
Each detected deviation was analysed in context, considering possible operational explanations such as maintenance activities, network fluctuations, or device-specific behaviour. This approach allows for a realistic interpretation of anomalies in the absence of labelled attack data, aligning with the objective of understanding real-world industrial network dynamics.
To analyse the collected data, the Zeek logs were processed and aggregated into time-series representations over the full observation period. All log entries were consolidated and resampled into hourly intervals, enabling a consistent temporal view of network activity over the three-month monitoring window. Hourly aggregation was selected as a trade-off between temporal resolution and noise reduction.
This aggregation allowed the construction of time-series representations of key metrics, including the number of connection sessions (Figure 4), the total number of packets (Figure 5), and the average size of HTTP responses (Figure 6). These visualisations provide insight into the temporal dynamics of the network and support the identification of recurring patterns and potential deviations.
The resulting time-series exhibit a high degree of regularity, reflecting the automated and deterministic nature of the production environment. This regularity facilitates the identification of baseline behaviour and highlights the suitability of the dataset for behavioural modelling approaches.
In addition to the overall stability of the observed metrics, certain irregular patterns can be identified in the time-series representations. Specifically, periods of reduced or absent traffic are visible in mid-July (Figure 4, Figure 5) and at the end of August (Figure 4, Figure 5, Figure 6).
Following validation with the industrial partner (IndA), these intervals were attributed to planned production stoppages, during which a significant portion of the IIoT devices was intentionally powered down. As a result, network activity was temporarily reduced or interrupted.
Additionally, short-lived spikes observed in metrics such as total packet counts (Figure 5) and average HTTP response size (Figure 6) can be explained by the abrupt termination and subsequent re-establishment of network sessions associated with these stoppages. These observations highlight the importance of contextual information when interpreting deviations from baseline behaviour, as not all anomalies correspond to security-relevant events.

3.6. Statistical Thresholding Using Z-Score

To quantify deviations from baseline behaviour, a statistical approach based on the z-score was adopted. The z-score expresses how many standard deviations an observation deviates from the mean, allowing the identification of statistically significant anomalies:
z = x μ σ
where μ and σ represent the mean and standard deviation estimated from the baseline data.
This approach assumes relatively stable statistical properties over time, which is consistent with the observed behaviour of the monitored IIoT environment.

4. Analysis Results

After selecting the metrics, the next step was to prepare some Zeek scripts, load them and test them to see if they could generate alerts when abnormal activity was observed. Custom detection scripts were developed using Zeek’s SumStats framework, enabling the aggregation of high-volume event streams into compact statistical summaries over configurable time windows. This approach allows real-time monitoring of selected metrics while maintaining computational efficiency. Alert generation requires the definition of appropriate thresholds and aggregation intervals. Threshold selection was based on the statistical framework introduced in the previous section, using z-score normalisation to quantify deviations from baseline behaviour.

4.1. Quantitative Characterisation of Baseline Behaviour

To support the definition of anomaly detection thresholds, a quantitative analysis of the observed network behaviour was performed over the three-month monitoring period. The objective was to assess the stability and variability of key metrics and validate the assumption of a well-defined baseline.
During normal operation (i.e., excluding identified production stoppage periods), the analysed metrics exhibited low variability and consistent temporal patterns. For instance, the number of connection sessions and total packet counts showed relatively stable averages with limited dispersion, indicating a highly deterministic communication model. The coefficient of variation (CV) for these metrics remained low throughout steady-state periods, reinforcing the predictability of the traffic.
In contrast, transition periods – such as production shutdowns and restarts – introduced significant deviations. These were characterised by:
  • Sharp reductions in flow counts and packet volumes;
  • Increased variance in short time intervals;
  • Transient spikes associated with connection termination and re-establishment.
Similarly, application-layer metrics such as HTTP response size demonstrated tight clustering around a narrow range during normal operation (approximately 131–134 bytes), with occasional spikes exceeding 140 bytes during transitional phases. These deviations, although statistically significant, were validated as operational artefacts rather than indicators of malicious activity.
Overall, these observations suggest that the network operates as a set of discrete behavioural regimes corresponding to distinct operational states (e.g., normal operation, shutdown, restart). This strong regularity supports the use of statistical methods, such as z-score thresholding, for anomaly detection in this environment.

4.2. Threshold Selection and Experimental Validation

Based on the observed baseline behaviour, detection thresholds were defined and experimentally validated using controlled traffic scenarios. A threshold of z 3 was adopted, corresponding to a confidence interval of approximately 99.7% under the assumption of normally distributed behaviour. While strict normality cannot be guaranteed, the low variability and stable behaviour observed in the dataset support the practical applicability of z-score-based thresholding in this context. This choice reflects a balance between sensitivity to deviations and robustness against FP, particularly in highly regular environments such as the one under study.
Since the Zeek script is similar for all metrics, only changing the parameters, we developed a simple utility1 to generate the scripts automatically through the use of meta-programming. This tool implements a simple GUI (see Figure 7) where the user can specify the relevant parameters. Then, a Zeek script is automatically generated to track the metric and generate an alert in case the threshold is exceeded. For the case illustrated in Figure 7, the generated script will track the number of connection sessions created in a five-minutes window. If it surpasses the 6500 connections threshold, an alert should be generated in the notice.log Zeek file.
To test the scripts generated, we created a virtual interface to make sure no external traffic could interfere with our tests. We then loaded the generated scripts into Zeek and made sure it was listening on the correct interface. Then we used tcpreplay2, a utility for editing and replaying previously captured network traffic, to inject traffic into the virtual interface. We injected both a pre-recorded pcap file with normal activity and a pcap file with abnormal activity – for testing purposes, two common attacks in this scenario were selected: Port Scan, and DOS SYN flood.
It should be noted that these attack scenarios represent synthetic injections and are primarily intended to validate metric sensitivity, rather than to replicate fully realistic adversarial behaviour in industrial environments.
For a Port Scan attack, we used nmap3, a utility for network discovery and security auditing. After running the tests, we observed that the script tracking the number of sessions detected an anomaly and generated an alert in the notice.log file, as shown in Figure 8. Concerning the DOS SYN flood attack we used hping34, a network tool able to send custom ICMP/UDP/TCP packets. After running the tests, like in the previous one, we observed that the script also detected an anomaly and generated the corresponding alert in the notice.log file, as shown in Figure 9.
The results obtained from controlled attack injection demonstrate that the selected metrics are sensitive to abnormal traffic patterns and can effectively trigger alerts when significant deviations occur. Notably, both port scanning and SYN flood scenarios produced measurable changes in connection-level statistics, validating the suitability of flow-based metrics for anomaly detection.
However, when contrasted with the real-world dataset, these synthetic anomalies differ significantly from the deviations observed during normal operation. While operational events (e.g., production stoppages) also produce statistically significant deviations, their temporal structure and contextual characteristics differ from those induced by malicious activity. This distinction highlights the importance of incorporating contextual and temporal analysis to reduce FP in practical deployments.

5. Conclusions

This work presented a longitudinal empirical study of network behaviour in a real IIoT production environment using passive monitoring with Zeek. The results demonstrate that such environments exhibit highly deterministic and stable communication patterns, enabling the effective construction of behavioural baselines. The use of statistical thresholding, particularly z-score-based approaches, proved suitable for detecting significant deviations while maintaining robustness against normal operational variability.
Importantly, the analysis highlights that not all statistically significant deviations correspond to security incidents, reinforcing the need for contextual awareness in anomaly detection systems. Future work will focus on refining threshold selection, incorporating contextual and temporal correlation mechanisms, and expanding the evaluation with additional attack scenarios aligned with industrial availability requirements.
Finally, these findings reinforce the suitability of behavioural NIDS approaches for highly automated industrial environments.

Funding

“This project has received funding from the European Union’s Horizon 2020 research and innovation programme under grant agreement No 952644. Additionally, this work has been supported by FCT – Fundação para a Ciência e Tecnologia within the R&D Units Project Scope UID/00319/2025 - Centro ALGORITMI (ALGORITMI/UM) https://doi.org/10.54499/UID/00319/2025.”

Abbreviations

The following abbreviations are used in this manuscript:
IIoT Industrial Internet of Things
IoT Internet of Things
IT Information Technology
OT Operational Technology
IDS Intrusion Detection Systems

References

  1. Santos, H.M.D. Cybersecurity: A Practical Engineering Approach; Chapman and Hall/CRC, 2022. [Google Scholar] [CrossRef]
  2. Jhanjhi, N.Z.; Humayun, Mamoona S.N.A. Cyber Security and Privacy Issues in Industrial Internet of Things. Comput. Syst. Sci. Eng. 2021, 37, 361–380. [Google Scholar] [CrossRef]
  3. Santos, H.; Oliveira, A.; Soares, L.; Satis, A.; Santos, A. Information Security Assessment and Certification within Supply Chains. In Proceedings of the The 16th International Conference on Availability, Reliability and Security. ACM, 8 2021; pp. 1–6. [Google Scholar] [CrossRef]
  4. Sarker, I.H. AI for enhancing ICS/OT cybersecurity. In AI-Driven Cybersecurity and Threat Intelligence: Cyber Automation, Intelligent Decision-Making and Explainability; Springer, 2024; pp. 137–152. [Google Scholar]
  5. Kok, A.; Martinetti, A.; Braaksma, J. The impact of integrating information technology with operational technology in physical assets: A literature review. IEEE Access 2024, 12, 111832–111845. [Google Scholar] [CrossRef]
  6. Lopes, W.A.C.; Ruggero, S.M.; Okano, M.T. An Assessment Framework for IT/OT Convergence Maturity in Industrial Environments. In Proceedings of the 2026 IEEE 16th Annual Computing and Communication Workshop and Conference (CCWC); IEEE, 2026; pp. 1228–1233. [Google Scholar]
  7. Meneghello, F.; Calore, M.; Zucchetto, D.; Polese, M.; Zanella, A. IoT: Internet of Threats? A Survey of Practical Security Vulnerabilities in Real IoT Devices. IEEE Internet Things J. 2019, 6, 8182–8201. [Google Scholar] [CrossRef]
  8. Sadhu, P.K.; Yanambaka, V.P.; Abdelgawad, A. Internet of things: Security and solutions survey. Sensors 2022, 22, 7433. [Google Scholar] [CrossRef] [PubMed]
  9. Scarfone, K.A.; Mell, P.M. Guide to Intrusion Detection and Prevention Systems (IDPS); NIST – National Institute of Standards and Technology, 2007. [Google Scholar] [CrossRef]
  10. Garcia-Teodoro, P.; Diaz-Verdejo, J.; Maciá-Fernández, G.; Vázquez, E. Anomaly-based network intrusion detection: Techniques, systems and challenges. Comput. Secur. 2009, 28, 18–28. [Google Scholar] [CrossRef]
  11. García-Teodoro, P.; Díaz-Verdejo, J.; Maciá-Fernández, G.; Vázquez, E. Anomaly-based network intrusion detection: Techniques, systems and challenges. Comput. Secur. 2009, 28, 18–28. [Google Scholar] [CrossRef]
  12. Jeffrey, N.; Tan, Q.; Villar, J.R. A review of anomaly detection strategies to detect threats to cyber-physical systems. Electronics 2023, 12, 3283. [Google Scholar] [CrossRef]
  13. Jadidi, Z.; Pal, S.; Hussain, M.; Nguyen Thanh, K. Correlation-based anomaly detection in industrial control systems. Sensors 2023, 23, 1561. [Google Scholar] [CrossRef] [PubMed]
  14. Wu, T.; Zhou, D.; Ou, Q.; Luo, F. Intrusion Detection Systems in Industrial Control Systems: Landscape, Challenges and Opportunities. Comput. Mater. Contin. 2026, 86. [Google Scholar] [CrossRef]
  15. Denning, D.; Neumann, P.G. Requirements and model for IDES-a real-time intrusion-detection expert system; SRI International Menlo Park, 1985; Vol. 8. [Google Scholar]
  16. Axelsson, S. Intrusion detection systems: A survey and taxonomy; Technical Report 99–15; Chalmers Univ, 2000. [Google Scholar]
  17. Butun, I.; Morgera, S.D.; Sankar, R. A survey of intrusion detection systems in wireless sensor networks. IEEE Commun. Surv. Tutor. 2014, 16, 266–282. [Google Scholar] [CrossRef]
  18. McHugh, J. Intrusion and intrusion detection. Int. J. Inf. Secur. 2001, 1, 14–35. [Google Scholar] [CrossRef]
  19. Cho, J.; Gong, S. Dynamic Data Abstraction-Based Anomaly Detection for Industrial Control Systems. Electronics 2024, 13. [Google Scholar] [CrossRef]
  20. Kruegel, C.; Vigna, G. Anomaly Detection of Web-based Attacks. In Proceedings of the ACM CCS, 2003. [Google Scholar]
  21. Sommer, R.; Paxson, V. Outside the Closed World: On Using Machine Learning for Network Intrusion Detection. In Proceedings of the IEEE Symposium on Security and Privacy, 2010. [Google Scholar]
  22. Singh, G.; Khare, N. A survey of intrusion detection from the perspective of intrusion datasets and machine learning techniques. Int. J. Comput. Appl. 2022, 44, 659–669. [Google Scholar] [CrossRef]
  23. Amer, E.; Elboghdadly, T. Evaluating machine learning techniques for ICS security: Insights from dataset limitations and classifier performance. In Proceedings of the 2024 International Mobile, Intelligent, and Ubiquitous Computing Conference (MIUCC); IEEE, 2024; pp. 368–373. [Google Scholar]
  24. Liao, H.J.; Richard Lin, C.H.; Lin, Y.C.; Tung, K.Y. Intrusion detection system: A comprehensive review. J. Netw. Comput. Appl. 2013, 36, 16–24. [Google Scholar] [CrossRef]
  25. Bansal, K.; Singhrova, A. Review on intrusion detection system for IoT/IIoT-brief study. Multimed. Tools Appl. 2024, 83, 23083–23108. [Google Scholar] [CrossRef]
  26. Payne, S. SANS Institute Information Security Reading Room A Guide to Security Metrics. 2006. [Google Scholar]
  27. Kumar, G. Evaluation metrics for intrusion detection systems-a study. Evaluation 2014, 2, 11–7. [Google Scholar]
  28. da Silva Oliveira, A.; Santos, H. Continuous Industrial Sector Cybersecurity Assessment Paradigm: Proposed Model of Cybersecurity Certification. In Proceedings of the 2022 18th International Conference on the Design of Reliable Communication Networks (DRCN); IEEE, 3 2022; pp. 1–6. [Google Scholar] [CrossRef]
  29. Zeek Documentation — Book of Zeek.
  30. Masip-Bruin, X.; Marín-Tordera, E.; Ruiz, J.; Jukan, A.; Trakadas, P.; Cernivec, A.; Lioy, A.; López, D.; Santos, H.; Gonos, A.; et al. Cybersecurity in ICT Supply Chains: Key Challenges and a Relevant Architecture. Sensors 2021, 21, 6057. [Google Scholar] [CrossRef] [PubMed]
Figure 1. Zeek’s high level architecture, adapted from [29].
Figure 1. Zeek’s high level architecture, adapted from [29].
Preprints 214210 g001
Figure 2. Wireshark’s Protocol hierarchy of one day’s worth of observed traffic.
Figure 2. Wireshark’s Protocol hierarchy of one day’s worth of observed traffic.
Preprints 214210 g002
Figure 3. Zeek deployment architecture in IndA’s premises.
Figure 3. Zeek deployment architecture in IndA’s premises.
Preprints 214210 g003
Figure 4. Number of connections seen every hour over a period of 3 months.
Figure 4. Number of connections seen every hour over a period of 3 months.
Preprints 214210 g004
Figure 5. Number of total packets seen every hour over a period of 3 months.
Figure 5. Number of total packets seen every hour over a period of 3 months.
Preprints 214210 g005
Figure 6. Average length of HTTP responses seen every hour over a period of 3 months.
Figure 6. Average length of HTTP responses seen every hour over a period of 3 months.
Preprints 214210 g006
Figure 7. Zeek script generator tool.
Figure 7. Zeek script generator tool.
Preprints 214210 g007
Figure 8. Number of sessions threshold crossed alert generated by Zeek.
Figure 8. Number of sessions threshold crossed alert generated by Zeek.
Preprints 214210 g008
Figure 9. Number of total packets threshold crossed alert generated by Zeek.
Figure 9. Number of total packets threshold crossed alert generated by Zeek.
Preprints 214210 g009
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content.
Copyright: This open access article is published under a Creative Commons CC BY 4.0 license, which permit the free download, distribution, and reuse, provided that the author and preprint are cited in any reuse.
Prerpints.org logo

Preprints.org is a free preprint server supported by MDPI in Basel, Switzerland.

Subscribe

Disclaimer

Terms of Use

Privacy Policy

Privacy Settings

© 2026 MDPI (Basel, Switzerland) unless otherwise stated