Tuesday, September 8, 2026
Science
No Result
View All Result
  • Login
  • HOME
  • SCIENCE NEWS
  • CONTACT US
  • HOME
  • SCIENCE NEWS
  • CONTACT US
No Result
View All Result
Scienmag
No Result
View All Result
Home Science News Technology and Engineering

Federated Learning Spots Malicious Domain Names Across Heterogeneous IoT Data

September 8, 2026
in Technology and Engineering
Veronica Carney
By Veronica Carney Scienmag Editorial Profile - Federated Learning
Reading Time: 6 mins read
0
Federated Learning Spots Malicious Domain Names Across Heterogeneous IoT Data

Federated Learning Spots Malicious Domain Names Across Heterogeneous IoT Data

65
SHARES
587
VIEWS
Share on FacebookShare on Twitter
ADVERTISEMENT

Every day, billions of Internet of Things devices quietly resolve domain names: smart cameras, routers, industrial sensors, medical monitors and household appliances all depend on the Domain Name System to reach the servers that keep them functioning. That same plumbing, however, has become one of the favorite channels of malware authors. A new study published in the Journal of Network and Systems Management describes a federated learning-based mechanism that can detect malicious domain names across IoT networks without ever moving users’ raw data off their devices, and it does so while contending with one of the hardest problems in distributed machine learning: data that looks completely different from one client to the next.

The research, led by Jialiang Peng and An Li of the School of Computer and Big Data at Heilongjiang University in China, together with Dong Yang of Heilongjiang University and Ahmed A. Abd El-Latif of Prince Sultan University in Saudi Arabia and Menoufia University in Egypt, addresses a threat that has grown in step with the IoT boom. Malware families routinely use domain generation algorithms, or DGAs, which churn out vast numbers of pseudo-random domain names on a schedule. The infected device and its command-and-control server simply compute the same sequence of names, and the botnet operator registers only one or a handful of them in advance. Filtering out the noise of thousands of throwaway domains lets the malware dodge static blocklists, re-establish contact after takedowns and deliver remote code execution payloads or implant backdoors on vulnerable devices.

Classical defenses against DGA traffic have evolved considerably. Early approaches relied on lexical analysis, measuring features such as string entropy, digit-to-letter ratios and the presence of uncommon n-grams to separate machine-generated names from human-registered ones. Later work brought in deep learning, with long short-term memory networks, convolutional neural networks and attention-based models learning to distinguish algorithmically generated names directly from character sequences. These centralized models can be highly accurate, but they share a structural weakness: they require massive collections of domain-name query logs to be harvested from IoT devices and shipped to a central server for training. DNS query data is anything but anonymous in practice. It reveals which websites a household visits, when industrial equipment communicates, and which third-party services a smart gadget silently contacts. Aggregating that data at scale raises serious privacy concerns, and in many jurisdictions it may raise legal ones too.

Federated learning offers an alternative architecture. Instead of centralizing data, each participating client, whether a home gateway, an enterprise IoT hub or an industrial edge node, trains a model locally on its own query logs and sends only model updates, typically gradients or weights, to an aggregation server. The server averages the updates into a global model and redistributes it. Raw domain queries never leave the premises. The concept, introduced in its modern form by McMahan and colleagues in 2017, has since been applied to malware and intrusion detection in IoT settings, but the authors of the new study argue that existing federated detection systems run into trouble the moment real-world heterogeneity enters the picture.

That heterogeneity is twofold. First, domain-name distributions across IoT clients are inherently non-IID, meaning not independent and identically distributed. A smart-home gateway sees an entirely different vocabulary of domains than a factory controller or a hospital’s device network. One client may encounter almost no malicious domains in a given period while another is under active attack, producing drastic imbalances in both class labels and feature distributions. Second, the clients themselves differ wildly in computational capacity, so heavy models trained on powerful servers cannot simply be assumed to run everywhere. When federated training proceeds over such skewed data, standard averaging of local updates can cause the global model to oscillate, converge slowly, or settle into a state that performs well for the majority clients but poorly for the minority, precisely the clients most likely to be under attack.

The researchers’ proposed mechanism confronts these problems on several fronts at once. At the heart of the local model lies a pre-trained transfer learning model. Rather than training a domain classifier from scratch on each client’s meager and skewed data, the system begins from representations learned on large external corpora and fine-tunes them under the federated objective. This choice serves as a stabilizer: because the pre-trained backbone already encodes generalizable structure of domain-name strings, local training can focus on adapting decision boundaries rather than rediscovering basic features, which reduces the amount of data each client needs and cushions the global model against the pull of non-IID updates. The authors report that leveraging the pre-trained model under federated learning measurably mitigates the performance degradation that data heterogeneity would otherwise inflict.

The second pillar of the contribution is an optimization of the local loss function, engineered with two goals: reducing communication cost and improving convergence stability during federated training rounds. Communication, not computation, is often the binding constraint in federated deployments that span thousands of resource-limited devices. By reshaping what the local model optimizes before updates are transmitted, the method encourages local solutions that are closer to the global optimum, so fewer rounds of weight exchange are needed to reach a usable consensus. The loss modification also dampens the client-drift phenomenon, in which individual participants wander into distant regions of parameter space on their skewed local data and drag the aggregated global model off course.

To test the design, the team carried out extensive experiments on diverse benchmark datasets assembled from well-known public sources of benign and malicious domains, including top-site rankings used for legitimate traffic, DGA feeds tracked by Netlab 360, open-source intelligence feeds of Bambenek Consulting, and the DGArchive database maintained by the Fraunhofer FKIE. These collections cover the wide zoo of DGA families that modern botnets deploy, from short numeric-looking names to long word-salad constructions, alongside the legitimate domains that must not be falsely flagged. The federated detection approach was benchmarked against several state-of-the-art baseline methods under federated constraints, and according to the authors it consistently delivered superior detection performance while guaranteeing that privacy protection was preserved throughout training.

The technical implications reach beyond DGA detection alone. Domain-flux is only one member of a family of DNS-based evasion techniques; DNS tunneling, in which attackers exfiltrate data or shuttle commands encoded inside seemingly innocuous queries, poses a related challenge. A privacy-preserving federated detector trained across heterogeneous networks could in principle be extended to such behaviors, giving defenders a shared intelligence layer without a shared data warehouse. The study also adds to a growing literature, surveyed in venues such as IEEE Access and ACM Computing Surveys, on decentralized learning over non-IID data, a problem that has become central as federated techniques spread from keyboard prediction on phones to healthcare, industrial monitoring and now network defense.

There remain, of course, open questions that the federated paradigm must answer before large-scale rollout. Federated aggregation itself can become an attack surface: a compromised client can submit poisoned updates, and the aggregation server, though it never sees raw queries, is a high-value target. The authors report no conflicts of interest and note that no new datasets were generated or analyzed beyond the benchmarks used, but the practical deployment questions of secure aggregation, differential privacy noise, and incentive design for participants remain active research territory. Communication cost, even when optimized, is nonzero, and IoT devices with milliwatt-scale power budgets will continue to demand leaner local models.

Still, the work is a concrete demonstration that the trade-off between security and privacy in IoT defense is not as sharp as it once appeared. By combining pre-trained transfer learning, a carefully optimized local loss and a federated training regime designed for heterogeneous data distributions, the researchers show that distributed networks of devices can learn to recognize the telltale signatures of algorithmically generated malicious domains collectively, without any single party surrendering its users’ query histories. For a world heading toward tens of billions of connected devices, mechanisms like this may prove essential: the alternative, centralized dragnet collection of DNS traffic, is rapidly becoming both technically unwieldy and socially unacceptable. The study received support from the Heilongjiang Provincial Natural Science Foundation of China and the Fundamental Research Funds for Heilongjiang Universities, with additional support from Prince Sultan University.

Subject of Research: Privacy-preserving federated learning for detecting malicious domain generation algorithm (DGA) domain names in Internet of Things networks with heterogeneous, non-IID data distributions.

Subject of Research: Technology and Engineering

Article Title: Federated Detection of Malicious Domain Names in the Internet of Things with Heterogeneous Data Distribution

Article References: Peng, J., Li, A., Yang, D., & El-Latif, A. A. A. (2026). Federated Detection of Malicious Domain Names in the Internet of Things with Heterogeneous Data Distribution. Journal of Network and Systems Management, 34(4), Article 113. https://doi.org/10.1007/s10922-026-10092-z

Image Credits: AI Generated

DOI: 10.1007/s10922-026-10092-z

Keywords: Internet of Things, Malicious domain names, Federated learning, Domain generation algorithms, Heterogeneous data distribution, Non-IID data, Pre-trained transfer learning model, Privacy preservation, DNS security, Botnet detection, Malware detection, Communication efficiency

Cite Scienmag News

Veronica Carney. (September 8, 2026). Federated Learning Spots Malicious Domain Names Across Heterogeneous IoT Data. Scienmag. https://scienmag.com/federated-learning-spots-malicious-domain-names-across-heterogeneous-iot-data/

Veronica Carney. "Federated Learning Spots Malicious Domain Names Across Heterogeneous IoT Data." Scienmag, 8 September 2026, https://scienmag.com/federated-learning-spots-malicious-domain-names-across-heterogeneous-iot-data/. Accessed 8 September 2026.

Veronica Carney. "Federated Learning Spots Malicious Domain Names Across Heterogeneous IoT Data." Scienmag. September 8, 2026. https://scienmag.com/federated-learning-spots-malicious-domain-names-across-heterogeneous-iot-data/

Tags: challenges of data heterogeneity in federated learningdecentralized machine learning for cybersecuritydecentralized malware monitoringdetecting malicious domains without raw data transferdistributed machine learning for IoTdistributed malware detectiondomain generation algorithms (DGAs) detectionfederated learning applications in IoTfederated learning for IoT securityfederated machine learning for cybersecurityfederated malware detection in heterogeneous IoT environmentsheterogeneous data in federated learningIoT device domain name resolutionIoT device domain resolution securityIoT malware prevention through federated modelsIoT network security challengesIoT network security with federated learningmalicious domain detection in IoT networksmalicious domain name detection in IoT networksprivacy-preserving IoT threat detectionprivacy-preserving IoT threat identificationreal-time malicious domain identification
Share26Tweet16
Previous Post

Replicable AI framework for emotion recognition validated against human interpretation

Next Post

Why Deepfakes Spread: New Study Links Adoption to Usefulness and Fun

Related Posts

Why Deepfakes Spread: New Study Links Adoption to Usefulness and Fun
Technology and Engineering

Why Deepfakes Spread: New Study Links Adoption to Usefulness and Fun

September 8, 2026
Replicable AI framework for emotion recognition validated against human interpretation
Technology and Engineering

Replicable AI framework for emotion recognition validated against human interpretation

September 8, 2026
Routing Strategies for Secure Key Exchange in Quantum Networks: A Survey
Technology and Engineering

Routing Strategies for Secure Key Exchange in Quantum Networks: A Survey

September 8, 2026
Fuzzy β-covering attribute reduction via fuzzy entropy and cuckoo search
Technology and Engineering

Fuzzy β-covering attribute reduction via fuzzy entropy and cuckoo search

September 8, 2026
A survey and comparison of recommender system datasets
Technology and Engineering

A survey and comparison of recommender system datasets

September 8, 2026
Geometry-Aware Transformer Improves UAV-Ground Visual Tracking
Technology and Engineering

Geometry-Aware Transformer Improves UAV-Ground Visual Tracking

September 8, 2026
Next Post
Why Deepfakes Spread: New Study Links Adoption to Usefulness and Fun

Why Deepfakes Spread: New Study Links Adoption to Usefulness and Fun

  • Mothers who receive childcare support from maternal grandparents show more optimized

    Mothers who receive childcare support from maternal grandparents show more parental warmth, finds NTU Singapore study

    27656 shares
    Share 11059 Tweet 6912
  • University of Seville Breaks 120-Year-Old Mystery, Revises a Key Einstein Concept

    1061 shares
    Share 424 Tweet 265
  • Bee body mass, pathogens and local climate influence heat tolerance

    682 shares
    Share 273 Tweet 171
  • Researchers record first-ever images and data of a shark experiencing a boat strike

    546 shares
    Share 218 Tweet 137
  • Groundbreaking Clinical Trial Reveals Lubiprostone Enhances Kidney Function

    531 shares
    Share 212 Tweet 133
Science

Embark on a thrilling journey of discovery with Scienmag.com—your ultimate source for cutting-edge breakthroughs. Immerse yourself in a world where curiosity knows no limits and tomorrow’s possibilities become today’s reality!

RECENT NEWS

  • Why Deepfakes Spread: New Study Links Adoption to Usefulness and Fun
  • Federated Learning Spots Malicious Domain Names Across Heterogeneous IoT Data
  • Replicable AI framework for emotion recognition validated against human interpretation
  • Routing Strategies for Secure Key Exchange in Quantum Networks: A Survey

Categories

  • Agriculture
  • Anthropology
  • Archaeology
  • Athmospheric
  • Biology
  • Biotechnology
  • Blog
  • Bussines
  • Cancer
  • Chemistry
  • Climate
  • Earth Science
  • Editorial Policy
  • Marine
  • Mathematics
  • Medicine
  • Pediatry
  • Policy
  • Psychology & Psychiatry
  • Science Education
  • Social Science
  • Space
  • Technology and Engineering

Subscribe to Blog via Email

Enter your email address to subscribe to this blog and receive notifications of new posts by email.

Join 5,151 other subscribers

© 2025 Scienmag - Science Magazine

Welcome Back!

Login to your account below

Forgotten Password?

Retrieve your password

Please enter your username or email address to reset your password.

Log In
No Result
View All Result
  • HOME
  • SCIENCE NEWS
  • CONTACT US

© 2025 Scienmag - Science Magazine

Discover more from Science

Subscribe now to keep reading and get access to the full archive.

Continue reading