<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Byzantine-resilient &#8211; Science</title>
	<atom:link href="https://scienmag.com/tag/byzantine-resilient/feed/" rel="self" type="application/rss+xml" />
	<link>https://scienmag.com</link>
	<description></description>
	<lastBuildDate>Mon, 21 Sep 2026 00:10:08 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.1.1</generator>

<image>
	<url>https://scienmag.com/wp-content/uploads/2024/07/cropped-scienmag_ico-32x32.jpg</url>
	<title>Byzantine-resilient &#8211; Science</title>
	<link>https://scienmag.com</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">73899611</site>	<item>
		<title>Graph Neural Networks Spot Poisoned Clients in Federated Learning Before They Sabotage the Model</title>
		<link>https://scienmag.com/graph-neural-networks-spot-poisoned-clients-in-federated-learning-before-they-sabotage-the-model/</link>
		
		<dc:creator><![CDATA[Veronica Carney]]></dc:creator>
		<pubDate>Mon, 21 Sep 2026 00:10:08 +0000</pubDate>
				<category><![CDATA[Technology and Engineering]]></category>
		<category><![CDATA[backdoor attack prevention]]></category>
		<category><![CDATA[backdoor attacks]]></category>
		<category><![CDATA[Byzantine resilience]]></category>
		<category><![CDATA[Byzantine-resilient]]></category>
		<category><![CDATA[Byzantine-resilient aggregation]]></category>
		<category><![CDATA[collaborative AI model robustness]]></category>
		<category><![CDATA[federated learning]]></category>
		<category><![CDATA[GRAB-FL]]></category>
		<category><![CDATA[Graph Neural Networks]]></category>
		<category><![CDATA[Graph-aware]]></category>
		<category><![CDATA[graph-aware anomaly detection]]></category>
		<category><![CDATA[machine learning security]]></category>
		<category><![CDATA[malicious client identification]]></category>
		<category><![CDATA[model integrity in federated systems]]></category>
		<category><![CDATA[neural network security]]></category>
		<category><![CDATA[poisoned client detection]]></category>
		<category><![CDATA[poisoning attacks]]></category>
		<category><![CDATA[privacy-preserving machine learning]]></category>
		<category><![CDATA[robust aggregation]]></category>
		<category><![CDATA[secure federated model training]]></category>
		<category><![CDATA[self-supervised learning]]></category>
		<category><![CDATA[trust modeling]]></category>
		<guid isPermaLink="false">https://scienmag.com/?p=204456</guid>

					<description><![CDATA[Researchers have developed GRAB-FL, a graph-aware federated learning framework that uses graph neural networks to assign trust scores to client updates, boosting robustness against Byzantine poisoning and backdoor attacks.]]></description>
										<content:encoded><![CDATA[<p>Federated learning has become one of the most influential paradigms in modern machine learning precisely because it promises something that seemed impossible a decade ago: training powerful shared models without ever collecting users&#8217; raw data. Instead of shipping private information to a central server, each participant trains locally and transmits only model updates, allowing smartphones, hospitals, and industrial systems to contribute to a collective intelligence while their underlying data remains at home. Yet this architectural elegance creates a dangerous blind spot. Because the server never inspects the training data, it must judge clients purely by the numerical updates they submit, and a malicious participant can exploit that opacity to degrade the global model or quietly implant hidden backdoors that trigger misbehavior under attacker-chosen conditions.</p>
<p>Researchers at Ajman University, the University of Jordan, the University of Sharjah, and Jordan University of Science and Technology have now introduced a framework designed to close this gap. In a study published in Neural Computing and Applications, Salam Fraihat and colleagues present GRAB-FL, a graph-aware, Byzantine-resilient aggregation scheme that treats the population of client updates not as a bag of independent vectors but as a living network of relationships. By modeling how each update relates to every other update through dynamic, multi-view similarity graphs, the system learns continuous trust scores that separate honest participants from adversaries, even when those adversaries adapt their behavior in response to what the global model is doing.</p>
<p>The technical problem the team tackles is known as Byzantine behavior, a term borrowed from distributed computing that describes participants who may act arbitrarily, including maliciously. Existing defenses typically rely on coordinate-wise statistics such as trimmed means, distance-based selection rules like Multi-Krum, trusted reference gradients as in FLTrust, or fixed pairwise similarity comparisons. These approaches have proven useful, but they share a structural weakness: they extract signals from the updates themselves without modeling the higher-order structure of the update population. Under non-IID data distributions, where honest clients naturally produce very different updates, and under coordinated attacks in which adversaries deliberately mimic benign statistics, these signals can become fragile and unreliable.</p>
<p>GRAB-FL reframes the detection problem through the lens of graph learning. On every aggregation round, the server constructs similarity graphs whose nodes are individual client updates and whose edges encode how alike those updates are across multiple views or feature representations. An attention-based graph neural network then processes these graphs, learning not only from each node&#8217;s own update-level features but also from relational patterns that emerge across the network. The intuition is subtle but powerful: a lone poisoned update might masquerade as benign when compared to any single neighbor, but coordinated attackers inevitably leave traces in the topology of the graph, forming clusters or exhibiting relationship patterns that honest, independently trained updates do not display.</p>
<p>A central design constraint is the threat model itself. The authors situate GRAB-FL in a bounded gray-box setting, meaning adversaries may observe the trajectory of the global model and adapt their submissions over time, but they cannot inspect the server-side trust states that the framework maintains. This assumption reflects a realistic class of attacks: sophisticated adversaries who track the evolving global model can craft updates that look plausible in any given round. GRAB-FL counters this adaptivity with an online trust model trained through self-supervised pseudo-labels derived from robust consensus statistics. Crucially, these pseudo-labels are reliability-gated: when the update population is unstable or highly dispersed, the system treats its own weak supervision as too noisy and skips the learning step rather than trusting potentially corrupted signals.</p>
<p>Once the graph neural network produces continuous trust scores, the framework does not discard conventional robust aggregation. Instead, the trust scores act as soft weights inside a base aggregation pipeline that can incorporate established filters such as Multi-Krum, trimmed mean, or Bulyan. This hybrid design means GRAB-FL inherits the theoretical guarantees of those base rules, including their standard bounded-adversary configuration requirements, while adding an adaptive layer that no fixed rule provides. Notably, the framework requires no trusted validation dataset, no ground-truth attack labels, and no attack-specific hyperparameter tuning, which distinguishes it from defenses that must be reconfigured for each anticipated threat.</p>
<p>The empirical evaluation spans five benchmarks: MNIST, Fashion-MNIST, CIFAR-10, a human activity recognition dataset, and APBench2, a standardized benchmark for availability poisoning attacks. The results are striking. Under an attack scenario with twenty percent Byzantine clients, GRAB-FL raises CIFAR-10 accuracy to 71.4 percent, compared with 65.8 percent for FLTrust and 63.2 percent for Bulyan. Against backdoor attacks, which attempt to implant hidden triggers that cause targeted misclassification while leaving overall accuracy intact, GRAB-FL reduces the attack success rate to just 11.3 percent, a substantial improvement that matters enormously for safety-critical deployments.</p>
<p>Detection performance is equally impressive. At a diagnostic threshold used solely for post-hoc reporting, the framework correctly identifies malicious clients with 91.7 percent accuracy while maintaining a false-positive rate of only 6.4 percent, meaning few honest participants are unfairly penalized. Sweeping the detection threshold across its range yields an area under the ROC curve of 0.957 and a precision-recall AUC of 0.881, indicating that the trust scores rank malicious updates reliably rather than merely separating them at one convenient operating point. The computational cost is modest: GRAB-FL adds roughly eighteen percent server-side runtime in the reported setup and, importantly, no additional communication rounds, preserving the communication efficiency that makes federated learning practical in the first place.</p>
<p>The authors are candid about the framework&#8217;s boundaries. Because graph construction requires access to individually submitted updates, GRAB-FL preserves raw-data locality but is not directly compatible with conventional secure aggregation protocols, which deliberately reveal only the aggregate of all updates and keep every individual contribution hidden. Reconciling per-client graph analysis with cryptographic privacy guarantees remains an open challenge, and the researchers position their work as a step within a broader design space rather than a final answer. Nevertheless, the combination of adaptivity, self-supervision, and compatibility with existing robust aggregation rules suggests a practical path forward for defenders facing increasingly strategic adversaries.</p>
<p>The significance of this work extends well beyond a single benchmark. Federated learning is rapidly expanding into 6G network security, drone-enabled learning systems, and healthcare informatics, domains where a successful poisoning attack could have severe real-world consequences. As attackers grow more adaptive and coordinated, static defenses built on fixed statistical assumptions will continue to erode. By teaching the aggregation server to see the hidden geometry of its clients&#8217; relationships, GRAB-FL demonstrates that the structure of the update population itself carries a defense signal, one that adversaries cannot easily fake without revealing themselves. In the ongoing arms race between collaborative machine learning and those who would corrupt it, that shift from inspecting individual updates to reasoning over relational patterns may prove decisive.</p>
<p><strong>Subject of Research:</strong> Byzantine-resilient federated learning using graph neural networks for adaptive detection of poisoning attacks</p>
<p><strong>Article Title:</strong> Graph-aware Byzantine-resilient aggregation for adaptive poisoning detection in federated learning</p>
<p><strong>Article References:</strong> Fraihat, S., Sanjalawe, Y., Yaseen, Q. M., Al-Betar, M. A., &amp; Naser Makhadmeh, S. (2026). Graph-aware Byzantine-resilient aggregation for adaptive poisoning detection in federated learning. <em>Neural Computing and Applications, 38</em>(18), Article 743. <a href="https://doi.org/10.1007/s00521-026-12446-9" rel="noopener noreferrer">https://doi.org/10.1007/s00521-026-12446-9</a></p>
<p><strong>Image Credits:</strong> AI Generated</p>
<p><strong>DOI:</strong> <a href="https://doi.org/10.1007/s00521-026-12446-9" rel="noopener noreferrer">10.1007/s00521-026-12446-9</a></p>
<p><strong>Keywords:</strong> federated learning, Byzantine resilience, graph neural networks, poisoning attacks, robust aggregation, trust modeling, backdoor attacks, machine learning security, GRAB-FL, self-supervised learning, Graph-aware, Byzantine-resilient</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">204456</post-id>	</item>
	</channel>
</rss>
