<?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>black-box attack &#8211; Science</title>
	<atom:link href="https://scienmag.com/tag/black-box-attack/feed/" rel="self" type="application/rss+xml" />
	<link>https://scienmag.com</link>
	<description></description>
	<lastBuildDate>Sat, 12 Sep 2026 13:03:31 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.1</generator>

<image>
	<url>https://scienmag.com/wp-content/uploads/2024/07/cropped-scienmag_ico-32x32.jpg</url>
	<title>black-box attack &#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>Flat Gradients Make Fake Users Deadlier: Smarter Attacks Expose Recommender Vulnerabilities</title>
		<link>https://scienmag.com/flat-gradients-make-fake-users-deadlier-smarter-attacks-expose-recommender-vulnerabilities/</link>
		
		<dc:creator><![CDATA[Denise Maddox]]></dc:creator>
		<pubDate>Sat, 12 Sep 2026 13:03:31 +0000</pubDate>
				<category><![CDATA[Technology and Engineering]]></category>
		<category><![CDATA[adversarial attack efficiency]]></category>
		<category><![CDATA[adversarial examples]]></category>
		<category><![CDATA[adversarial fake users]]></category>
		<category><![CDATA[black box attack on recommendation models]]></category>
		<category><![CDATA[black-box attack]]></category>
		<category><![CDATA[collaborative filtering]]></category>
		<category><![CDATA[data poisoning]]></category>
		<category><![CDATA[digital life influence by recommendation engines]]></category>
		<category><![CDATA[fake user attack success rate]]></category>
		<category><![CDATA[Gowalla]]></category>
		<category><![CDATA[gradient penalty]]></category>
		<category><![CDATA[gradient penalty in recommender systems]]></category>
		<category><![CDATA[loss landscape]]></category>
		<category><![CDATA[machine learning security]]></category>
		<category><![CDATA[MovieLens]]></category>
		<category><![CDATA[RecGP technique]]></category>
		<category><![CDATA[recommendation model deception]]></category>
		<category><![CDATA[Recommendation system vulnerabilities]]></category>
		<category><![CDATA[recommendation systems]]></category>
		<category><![CDATA[recommender system security risks]]></category>
		<category><![CDATA[resource-efficient attack methods]]></category>
		<category><![CDATA[shilling attacks]]></category>
		<category><![CDATA[transfer-based adversarial attacks]]></category>
		<category><![CDATA[transferability]]></category>
		<guid isPermaLink="false">https://scienmag.com/?p=194655</guid>

					<description><![CDATA[Researchers have developed RecGP, a gradient penalty method that crafts transferable adversarial fake users by steering them toward flat regions of the loss landscape, boosting attack success rates against unknown recommendation systems.]]></description>
										<content:encoded><![CDATA[<p>Recommendation systems quietly shape much of modern digital life, deciding which films appear on a streaming homepage, which restaurants surface in a navigation app, and which products rise to the top of an online marketplace. Their power rests on a simple assumption: that the behavioral traces users leave behind—ratings, purchases, check-ins—faithfully reflect genuine preferences. A new study published in Data Mining and Knowledge Discovery demonstrates just how fragile that assumption can be. Researchers led by Caihong Wu and Hai Chen have developed a technique called RecGP, short for Recommendation-specific Gradient Penalty, which crafts adversarial fake users that can deceive recommendation models they were never designed to attack. The work, published in the journal&#8217;s September 2026 issue, reports attack success rate improvements of roughly eight percent over existing methods on the Gowalla dataset across eight different target models, while a resource-efficient variant maintains 98 percent of that attack power while cutting GPU memory consumption by 42 percent.</p>
<p>The technique belongs to a family of attacks known as transfer-based adversarial attacks. In such attacks, an adversary cannot peer inside the target recommendation system, which operates as a black box guarded by commercial secrecy. Instead, the attacker builds a surrogate model that mimics the target&#8217;s behavior, trains the surrogate on publicly available data, and then injects carefully constructed fake user profiles designed to manipulate the surrogate&#8217;s recommendations. The hope is that these poisoned profiles will transfer: that when injected into the real, unknown target system, they will produce the same distortion, promoting a chosen item or burying a competitor. This scenario, often called a shilling attack, has been studied since the early days of collaborative filtering, but deep learning has dramatically raised the stakes, because modern neural recommenders are both more powerful and, in some respects, more susceptible to carefully aimed perturbations.</p>
<p>The core insight behind RecGP comes from an unexpected corner of deep learning theory: the geometry of the loss landscape. When an adversarial example is optimized on a surrogate model, it typically settles into a region where the loss surface is sharp—a narrow spike surrounded by steep gradients. Such solutions perform superbly on the surrogate but generalize poorly, because they are exquisitely sensitive to small changes in model parameters. Two recommendation systems, even trained on the same data, will have slightly different internal weights, and an adversarial example perched on a sharp peak will lose its effectiveness under that variation. Flat regions of the loss landscape, by contrast, exhibit small gradients and gentle slopes, meaning the adversarial example&#8217;s effect is stable even when parameters shift between the surrogate and the unknown target. The same flatness principle underlies sharpness-aware minimization, a technique developed to improve model generalization in entirely benign contexts, and the authors adapt it here for offensive purposes.</p>
<p>RecGP operationalizes this insight by adding a gradient penalty to the optimization process that generates fake users. As the attacker searches for adversarial perturbations, the penalty regularizes the magnitude of the gradients, steering the search away from sharp peaks and toward flat basins of the loss surface. In effect, the method asks not merely, &#8216;Which fake user fools this surrogate most effectively?&#8217; but rather, &#8216;Which fake user fools this surrogate in a way that is robust to the inevitable differences between models?&#8217; The authors frame this as a recommendation-specific reformulation, because recommendation data differs fundamentally from the continuous image data where flatness-aware attacks were first explored. A fake user profile in a recommender is not a subtly shifted photograph; it is a discrete collection of interactions, and the attack must respect the semantic structure of that discrete space.</p>
<p>That discrete structure creates a computational challenge, which the team addressed with a second contribution: RecGP-RS, or Recommender Systems Gradient Penalty with Resource-efficient Sampling. Computing true second-order gradient information—needed to assess the flatness of the landscape—is expensive, particularly over the large interaction spaces typical of real-world recommender systems. RecGP-RS sidesteps the cost through semantic-aware neighborhood sampling, which selects representative neighbors of each perturbation in the discrete interaction space while preserving semantic consistency, ensuring that sampled neighbors correspond to plausible user behaviors rather than arbitrary noise. Around these sampled neighbors, the method approximates second-order gradients using first-order interpolation, capturing the essential curvature information at a fraction of the computational price. The result, according to the paper, is a variant that retains 98 percent of the attack efficacy of the full method while reducing GPU memory consumption by 42 percent—a substantial saving that matters when attacks must be staged against large-scale production-like systems.</p>
<p>The empirical evaluation spanned two widely used benchmark datasets: MovieLens-1M, a canonical collection of roughly one million movie ratings maintained by the GroupLens research group, and Gowalla, a location-based social network dataset distributed through the Stanford Network Analysis Project. Across eight target recommendation models, RecGP achieved an average attack success rate improvement of approximately eight percent over existing baseline attack methods on the Gowalla dataset. The target models examined in the broader literature on which this work builds include the standard architectures of the field: neural collaborative filtering, Bayesian personalized ranking, collaborative denoising autoencoders, and matrix factorization approaches, among others. The breadth of improvement across diverse architectures is the transferability claim&#8217;s real substance—an attack that only worked against one model family would be of limited concern, but a method that reliably degrades many different recommenders suggests a structural weakness in how these systems learn from behavioral data.</p>
<p>The practical implications are sobering. Recommendation systems are not merely convenience features; they are revenue engines. A seller who can promote products through injected fake users can distort marketplace competition, and a malicious actor who can suppress content can shape public opinion. Earlier generations of shilling attacks required large volumes of hand-crafted fake profiles and were relatively easy to detect because they followed stereotyped patterns. Learning-based attacks such as the one developed here generate profiles optimized by gradient descent, which can be subtler and harder to flag. The flatness technique makes them more portable across the heterogeneous collection of models that platforms actually deploy, meaning a profile set crafted once could plausibly threaten several services rather than one. The study also notes that RecGP builds on earlier transferability work by the same group, including methods based on Nesterov momentum and multi-model integration and fine-tuning, indicating a sustained research trajectory into how adversarial examples move between recommender architectures.</p>
<p>From a defensive standpoint, the research is valuable precisely because it illuminates the mechanism of failure. If sharp loss regions are what make adversarial examples brittle and flat regions what make them dangerous, then defenders have a concrete signal to target. Detection systems could look for interactions that sit suspiciously in flat regions of the platform&#8217;s own loss surface, or training procedures could incorporate flatness-aware objectives that make recommendation models inherently less sensitive to small numbers of poisoned profiles. The work also joins a broader conversation about loss landscape geometry in machine learning security, echoing findings from computer vision where flat local maxima have been linked to improved adversarial transferability, and from theoretical studies of the embedding principle of loss landscapes in deep neural networks. The transferability problem, once considered a vision-specific curiosity, now demonstrably spans the recommender domain.</p>
<p>The research team, based at Anhui University&#8217;s Key Laboratory of Intelligent Computing and Signal Processing and its Artificial Intelligence Institute, with a collaborator at Tsinghua University, was supported by the National Natural Science Foundation of China and provincial research programs, and used Anhui University&#8217;s high-performance computing platform. Caihong Wu and Hai Chen contributed equally to the work, with Fulan Qian serving as corresponding author. As recommendation systems grow more embedded in commerce, media, and information ecosystems, studies of this kind serve a dual purpose: they hand attackers a sharper tool, but they also hand defenders a clearer map of where the walls are thin. The eight percent gain in attack success reported on Gowalla is not merely a benchmark increment; it is a quantified measure of how much behavioral data alone can be trusted, and a reminder that robustness against adversarial manipulation must be designed into recommendation systems from the ground up rather than bolted on after the fact.</p>
<p><strong>Subject of Research:</strong> Gradient-penalized transferable adversarial attacks on recommendation systems</p>
<p><strong>Article Title:</strong> Recgp: gradient penalization for transferable adversarial attacks in recommendation systems</p>
<p><strong>Article References:</strong> Wu, C., Chen, H., Song, S., Yan, Y., Zhao, S., &amp; Qian, F. (2026). Recgp: gradient penalization for transferable adversarial attacks in recommendation systems. <em>Data Mining and Knowledge Discovery, 40</em>(5), Article 88. <a href="https://doi.org/10.1007/s10618-026-01253-4" rel="noopener noreferrer">https://doi.org/10.1007/s10618-026-01253-4</a></p>
<p><strong>Image Credits:</strong> AI Generated</p>
<p><strong>DOI:</strong> <a href="https://doi.org/10.1007/s10618-026-01253-4" rel="noopener noreferrer">10.1007/s10618-026-01253-4</a></p>
<p><strong>Keywords:</strong> recommendation systems, adversarial examples, gradient penalty, loss landscape, transferability, shilling attacks, collaborative filtering, data poisoning, black-box attack, MovieLens, Gowalla, machine learning security</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">194655</post-id>	</item>
	</channel>
</rss>
