Open Access
ARTICLE
Enhancing the Transferability of Adversarial Samples through Frequency-Domain Attenuation
1 School of Artificial Intelligence, Hubei University of Automotive Technology, Shiyan, China
2 Shiyan Key Laboratory of Electromagnetic Induction and Energy-Saving Technology, Hubei University of Automotive Technology, Shiyan, China
* Corresponding Author: Yong Liu. Email:
(This article belongs to the Special Issue: Deep Learning for Next-Generation Cybersecurity: Architectures, Robustness and Applications)
Computers, Materials & Continua 2026, 88(3), 40 https://doi.org/10.32604/cmc.2026.082629
Received 19 March 2026; Accepted 15 May 2026; Issue published 23 July 2026
Abstract
In recent years, the transferability of adversarial examples has attracted significant attention. To improve the effectiveness of black-box attacks, a frequency-domain decay constraint is introduced, inspired by weight decay and regularization techniques commonly employed during model training. By treating adversarial perturbations as inputs in an optimization process, this constraint aims to mitigate the excessive reliance on low-frequency components during adversarial example generation, thereby enhancing transferability. Fourier heatmaps are utilized to analyze the sensitivity of input samples, enabling a decomposition of the frequency spectrum into low-frequency and high-frequency components. Based on this analysis, low-frequency attenuation is applied in the Fourier domain to suppress dominant low-frequency information, followed by reconstruction of the perturbed inputs. The proposed frequency-domain attenuation strategy enjoys good compatibility with existing algorithms, and increases the attack success rate by approximately 1.53%–8.68% relative to the original method. Extensive experimental results show that the proposed method surpasses existing iterative attack methods and generates more transferable adversarial examples, demonstrating its effectiveness and superiority.Keywords
In recent years, the emergence of image adversarial samples has created a serious threat to the security of deep learning, and the problem of adversarial samples has become a hot spot in current research [1–4]. Understanding how adversarial examples are created is essential for assessing the robustness of deep neural networks, identifying their vulnerabilities, and evaluating potential security risks. Methods for crafting these adversarial inputs typically fall into two categories: white-box and black-box strategies. In a white-box setting, adversaries have complete information about the model, including its architecture and learned parameters [1]. In contrast, black-box techniques operate under the assumption that the attacker has no insight into the model’s internal workings. While white-box strategies achieve elevated efficacy by leveraging gradient-based optimization to craft perturbations, their real-world applicability is constrained by the rarity of comprehensive model transparency. To address this limitation, research efforts have shifted to analyzing the cross-model applicability of adversarial perturbations in black box environments, making it possible for the designed attack methods to have better transferability [3,5].
Due to the tendency of adversarial examples to migrate between models, a typical strategy involves applying white-box attack methods in a transfer-based black-box setting [6]. Nevertheless, this approach can cause the adversarial images to overfit to the particular weaknesses of the source model [7]. Consequently, while carefully crafted adversarial examples may attain nearly 100% success against white-box models [8], their performance often drops when attacking different models.
In this study, we enhance the transferability of iterative black-box attack strategies through the utilization of frequency attenuation on input images during the generation of adversarial examples. Drawing a parallel between model training and adversarial attacks from an optimization standpoint, iterative attacks can be considered as a training process for the input, whereas model training involves training the network’s parameters. We are inspired by techniques such as regularization and weight decay, which effectively prevent overfitting in deep neural networks during model training by avoiding overfitting to the training set. Our focus is on the frequency-domain decay of the input image to minimize overfitting to the white-box model, thereby enhancing the mobility of the adversarial examples. Furthermore, our Fourier frequency-domain perturbation analysis reveals that low frequencies have a greater impact on the model’s output. That is, the output of a CNN remains largely unchanged even with attenuated low frequencies. To improve mobility, we propose attenuating the low frequencies of the input, which can be integrated as a general regularization term into existing iterative attacks, such as MI-FGSM [9], DI-FGSM [10], TI-FGSM [7], and S2I-FGSM [11], to further enhance the transferability and effectiveness of adversarial examples.
The main contributions of this work are summarized as follows:
• We propose to generate adversarial samples by attenuating the low-frequency components in the input image. This approach reduces the excessive reliance on the low-frequency components of the sample, thereby enhancing the transferability of the generated samples.
• We propose a classification method that utilizes Fourier heatmaps to partition the frequency domain. This objective strategy avoids the arbitrariness of empirical partitioning and enables more targeted frequency attenuation. The proposed frequency-domain attenuation strategy exhibits good compatibility with existing algorithms, and the integrated method achieves a higher adversarial attack success rate than the original method.
• Both visualization results and ablation studies demonstrate the feasibility and effectiveness of the proposed approach.
This section first briefly introduces white-box adversarial attacks and black-box adversarial attacks, and then introduces common defense methods against adversarial attacks.
2.1 White-Box Adversarial Attack Methods
There exist two fundamental categories of adversarial attacks, namely white-box and black-box attacks, which are delineated by the extent of prior model information available to the adversary. Specifically, white-box attacks are executed under the condition that the attacker possesses complete, unrestricted knowledge of the target model’s architectural design and parameter values, whereas black-box attacks are performed without any prior understanding of the model’s internal characteristics. Within the white-box attack setting, adversarial sample generation can be achieved with minimal difficulty, as the attacker has full access to the detailed internal structure and complete parameter set of the targeted model. A suite of well-established algorithms has been developed for white-box adversarial attacks, with representative implementations including FGSM [1], BIM [12], PGD [13], DeepFool [14], JSM [15], and CW [16], among others. As a pioneering work in this field, FGSM [1] represents the first formal introduction of gradient-based methodology for adversarial attack construction. Despite the high computational efficiency of FGSM in generating adversarial samples, its single-step attack framework results in low precision in perturbation calculation, which consequently leads to a relatively low attack success rate. The PGD attack [13], which has been widely adopted across adversarial machine learning research, operates by iteratively updating the gradient of each pixel along the gradient ascent direction, while simultaneously enforcing hard constraints to confine the generated perturbations within a predefined bounded range. This iterative optimization approach delivers a substantial enhancement in overall attack performance.
2.2 Black-Box Adversarial Attack Methods
Within the context of black-box adversarial attacks, adversaries possess access solely to the target model’s outputs. Such scenarios involve two primary strategies: query-driven assaults and transfer-based methods. This investigation centers on transfer-based attacks under black-box conditions. Prominent among transferable adversarial techniques are Fast Gradient Sign Method (FGSM) inspired approaches [12,17,18], which exploit the transferability of adversarial instances. Iterative techniques target surrogate models, generating adversarial examples through stepwise updates of perturbations based on gradient data. Kurakin et al. [12] refined FGSM via the Basic Iterative Method (BIM), also referred to as Iterative Fast Gradient Sign Method (I-FGSM). By dividing perturbation computation into incremental stages and restricting pixel values within defined bounds via clipping, the I-FGSM approach amplifies FGSM’s efficacy. This adjustment led to improved adversarial success rates. Nevertheless, I-FGSM tends to produce adversarial samples susceptible to local overfitting, thereby diminishing their transferability. To mitigate this limitation, Dong et al. [9] integrated momentum into the I-FGSM framework, formulating the Momentum Iterative Fast Gradient Sign Method (MI-FGSM).
Alongside the exploration of advanced optimization strategies to strengthen defenses against adversarial attacks, model augmentation has gained prominence as a widely used and effective method [17]. To address model overfitting associated with the I-FGSM framework, Xie et al. [10] introduced diverse image transformations, coining their method the Diverse Iterative Fast Gradient Sign Method (DI-FGSM). Dong et al. [7] proposed input data transformations to reduce dependence on surrogate models, synthesizing image sequences and estimating global gradients. Leveraging the scale invariance property of deep neural networks (DNNs), Lin et al. [17] computed averaged gradients across varying scales to refine adversarial example generation. Building on DI-FGSM [10], Zou et al. [19] adapted the algorithm to produce multiscale gradient information, thereby enhancing TI-FGSM [7]. At the same time, Wang and He [20] examined gradient variance along the momentum-based optimization path to mitigate overfitting. Although these approaches demonstrate strong results in untargeted adversarial settings, their effectiveness significantly declines in scenarios requiring precise target alignment.
Over the past few years, researchers have proposed various methods based on frequency-domain analysis to improve the transferability of adversarial attacks in black-box settings. Liu et al. [8] analyzes the model’s sensitivity to different frequencies in the frequency domain and imposes perturbations only on key frequency bands, thereby improving the transferability and efficiency of adversarial attacks. Long et al. [11] adopts frequency-domain data augmentation to generate diverse inputs, and jointly optimizes adversarial examples over multiple spectral distributions to enhance the cross-model generalization capability of attacks. Li et al. [21] introduces frequency-domain regularization constraints into the iterative adversarial attack process to regulate the spectral structure of perturbations, rendering the attack more stable and natural.
In addition, Li et al. [22] abandons the traditional multi-architecture model ensemble, and implements ensemble attacks by leveraging checkpoints of a single model at different epochs. By fusing early and late model snapshots, it generates adversarial examples with high black-box transferability at low computational cost. Ren et al. [23] proposes an attack strategy based on forward propagation refinement. By imposing AMD perturbations on attention maps and adopting momentum smoothing on token embeddings, it produces transferable adversarial examples with strong robustness across CNN and ViT architectures. For targeted black-box attacks, Liang et al. [24] introduces learnable subtle perturbations into the feature space and mixes them with randomly purified features, generating robust targeted adversarial examples that can cross the decision boundaries of different black-box models.
While adversarial training remains the predominant approach for enhancing model robustness, its practical application to large-scale datasets and intricate deep neural networks is hindered by substantial computational demands and prolonged training durations. To circumvent these challenges, recent research has shifted focus toward preprocessing techniques designed to neutralize adversarial perturbations prior to model input. For instance, Guo et al. [25] developed a method leveraging diverse input transformations including JPEG compression [26] and total variance minimization [27] to restore adversarial examples. Similarly, Liao et al. [28] introduced the high-level representation-guided denoiser (HGD), which attenuates adversarial interference by aligning perturbations with semantic features. Complementary strategies, such as randomized resizing and padding (R&P) proposed by Xie et al. [29], further diminish adversarial effects through stochastic input modifications. Additionally, Jia et al. [30] demonstrated that classifiers augmented with Gaussian noise during training can achieve verifiable robustness against adversarial perturbations. Yan et al. [31] utilizes Wavelet Transform in the frequency domain to regularize deep neural networks, so as to enhance the model robustness against adversarial attacks.
This section begins by providing a detailed overview of the main notations used throughout our proposed method, as summarized in Table 1. Subsequently, we will elaborate on our proposed method. Fig. 1 illustrates the schematic framework of the proposed method.


Figure 1: Schematic framework of the proposed method. DFT stands for discrete fourier transform, and IDFT denotes inverse discrete fourier transform.
3.1 Theoretical Analysis of Frequency Attenuation and Transferability
In this section, we provide theoretical insights into why the proposed frequency-domain low-frequency attenuation improves the transferability of adversarial examples.
We begin by establishing a general classification framework
where
The core of an adversarial attack lies in creating a perturbation, represented as
where
In essence,
Generalization refers to the capacity of deep learning algorithms to adapt to unseen data samples. In Eq. (2), we optimize the model parameters
3.3 Deep Neural Network Frequency Domain Analysis
A growing body of recent research [32,33] has performed comprehensive analyses on the robustness and generalization properties of deep neural networks (DNNs) through the lens of frequency domain theory. Among these contributions, the work presented in [32] uncovered the frequency principle, a core rule describing that the generalization performance of neural networks is preferentially focused on low-frequency components during the model training procedure, and that DNNs generally fit the target function following a progression from low-frequency to high-frequency components. Relevant literature [32,33] has demonstrated both theoretically and experimentally the importance of low frequencies on model classification output results. The low-frequency information contributes more to the model fit than the high-frequency information, i.e., the low-frequency component has a greater impact on the model output.
Yin et al. [34] investigated the effect of different frequencies on model robustness by Fourier perturbation analysis and evaluated the test error of different frequencies on the model output results by visualization of Fourier heatmaps, these visualizations are called Fourier heatmaps of the test model. Fig. 2 presents the Fourier heat map of ResNet56 on CIFAR-10 during the idle training period. Colors ranging from red to blue correspond to test errors from 1 to 0, reflecting the model’s sensitivity to different frequency components. With increasing iterations, the central low-frequency regions transition from red to blue first, followed by gradual changes in the surrounding high-frequency regions. This indicates that the DNN fits the objective function from low to high frequencies during training, and the low-frequency components contribute more significantly to the model’s output.

Figure 2: Fourier heat maps of the classifier at different training epochs. Subfigures (a–f) present the Fourier heat maps of the neural network model obtained after 5, 30, 60, 120, 180 and 360 training epochs, respectively.
3.4 Frequency Domain Attenuation Analysis Based on Frequency Domain Sensitivity
In the context of image classification, the high dimensionality of input images often results in the creation of numerous intricate adversarial examples and the overfitting of white-box neural networks. To address this challenge, weight decay and regularization methods have been developed as efficient approaches to reduce overfitting. Similarly, we introduce frequency-domain attenuation constraints to generate more diverse adversarial examples. Our aim is to mitigate the complexity of adversarial instances and enhance the transferability of black-box models through this attenuating input feature constraint. As demonstrated by the Fourier sensitivity analysis in the preceding section, we observe that the CNN output predominantly relies on the low-frequency components of the input image, indicating a correlation between the CNN output and the low-frequency characteristics of the input. Building upon this observation, we propose a frequency-domain low-frequency attenuation constraint method based on sensitive frequency domain analysis to enhance the generalization ability of adversarial examples. Specifically, given an input
where
During model training, it can be added to the loss function for adaptive regularisation due to the high number of iterations and epochs. When conducting iterative attacks, we typically employ a smaller number of iterations. Therefore, we propose directly incorporating regularization constraints onto the inputs rather than integrating them into the loss function.
Leveraging the significance and consistency of low frequencies in convolutional neural networks, we establish a low-frequency decay constraint denoted as
where
The crux of frequency domain attenuation constraints lies in the selection of the constraint factor
where
Another crucial consideration is determining the boundary between low and high frequencies. Different from the global regularization scheme in [21], our method specifically targets low-frequency components, which is driven by the inherent frequency bias of DNNs. Furthermore, we introduce a data-driven frequency partitioning strategy based on Fourier sensitivity heatmaps, instead of relying on fixed or empirical frequency division rules. To achieve this, we utilize the Fourier heatmap [34] generated from an alternative model, enabling the differentiation of these frequency bands. Fig. 3 shows the Fourier heat map of the sensitivity frequencies of different classification models on different datasets. As shown in Fig. 3, the sensitive frequencies vary across different models operating on the same dataset. This variability implies differences in the frequencies deemed sensitive and robust, consequently affecting the delineation of the model’s low-frequency region. Therefore, classifying the low-frequency and high-frequency regions of different agent models based on an analysis of sensitive frequencies proves to be reasonable and effective. This approach distinguishes itself from arbitrary empirical or random divisions of the frequency domain into low and high-frequency components.

Figure 3: Visualization of sensitive frequencies via Fourier heat maps, generated for different models tested on three separate datasets. The first, second and third rows present the fourier heat map outcomes acquired on the Cifar10, Cifar100 and Tiny-ImageNet datasets, in corresponding order.
Our specific methodology involves two primary steps. Firstly, we assess the sensitivity of each frequency point location by extracting values from the Fourier heat map, representing the degree of sensitivity of that frequency to the model. Subsequently, we establish a threshold value to identify the least sensitive frequency points. Next, we compute the mean distance from all identified least sensitive frequency points to the center of the spectrum, serving as the foundation for delineating low frequencies. Here the distance from the insensitive frequency points to the center of the spectrogram
where
where
where
3.5 Theoretical Analysis of Frequency Attenuation and Transferability
In this section, we provide theoretical insights into why the proposed frequency-domain low-frequency attenuation improves the transferability of adversarial examples.
Given a surrogate model
Compared to standard attacks, the optimization is performed over a modified input distribution induced by
From the perspective of generalization perspective, deep neural networks are known to exhibit a frequency bias toward low-frequency components. As a result, the gradient
By attenuating low-frequency components during each iteration, the proposed method modifies the gradient as:
which reduces the dominance of low-frequency gradients. This encourages the optimization to explore perturbations that rely less on model-specific features, thereby improving cross-model transferability.
From an information-theoretic perspective, low-frequency components typically encode structured and model-dependent semantic information. Let
The attenuation operation reduces the contribution of
This forces adversarial perturbations to depend on features that are less specific to the surrogate model and more universally shared across different models, which enhances transferability.
From the perspective of its association with regularization, the proposed method can be interpreted as an input-space regularization mechanism. While weight decay constrains the parameter space by penalizing large weights, our approach constrains the effective input distribution by suppressing dominant frequency components. Both mechanisms reduce overfitting, but they operate in complementary domains.
3.6 Frequency Domain Attenuation Algorithm
Our method imposes a direct constraint on the input sample, implying its compatibility for integration into existing iterative methods like FGSM,MI-FGSM, DI-FGSM, TI-FGSM, etc. We demonstrate the combination of FDL and DI-FGSM in Algorithm 1, called FDL-MI-DI-FGSM. In this research work, the method of MI-FGSM can be simply formalised as:
Here,
The DI-FGSM method is to apply an image transformation
where
When applying our proposed approach to MI-DI-FGSM, the gradient information updating process can be formalized as follows:

In this section, we conducted a large number of experimental analyses on commonly used standard benchmark datasets. Based on the experimental results and visualized analysis, we evaluated the performance of the proposed method. Additionally, we performed ablation experiments on our method to further verify the effectiveness of our proposed approach.
Dataset settings. This investigation employed three widely recognized image classification datasets, namely CIFAR-10 [36], CIFAR-100 [36], and Tiny-ImageNet [37]. For experiments involving non-targeted attacks, images were randomly selected from the test set, contingent on the prerequisite that all models had accurately classified them beforehand. A consistent set of pristine samples was then utilized to benchmark various adversarial techniques under equivalent conditions.
Comparison methods. The baseline classification performance of different models on the three datasets is shown in Table 2. The results indicate that all neural network models adopted in the experiment achieve promising performance on the image classification task. For the purpose of validating the performance effectiveness of our proposed method, we carried out a comprehensive comparative analysis with multiple mainstream state-of-the-art attack algorithms, covering DI-FGSM [10], S2I-FGSM [11], as well as hybrid variant designs including MI-DI-FGSM and TI-DI-FGSM. In detail, MI-DI-FGSM, first put forward by Xie et al. [10], delivers an enhancement to the momentum iterative FGSM (MI-FGSM) [9] through the introduction of diverse input strategies (DI). In comparison, TI-DI-FGSM, established by Dong et al. [7], integrates the translation-invariant attack mechanism (TI) into the foundational architecture of DI-FGSM.

Parameter settings. We performed uniform hyperparameter configuration for all algorithms across experiments implemented on the Cifar100 [36] and Tiny-ImageNet [37] datasets, with detailed settings listed as below: we set the maximum allowable perturbation to
4.2 The Evaluation of Adversarial Attack Transferability
For the purpose of examining the cross-architecture generalization ability of multiple adversarial attack frameworks, we selected four widely used deep learning models to serve as our surrogate networks, namely Wide ResNet50, ResNet50, DenseNet 121, and VGG19. Following the generation of adversarial perturbations on these surrogate models, we then applied these crafted perturbations to a range of distinct black-box target models. They include a series of Resnet models, namely ResNet18 (Res18), ResNet50 (Res50), Wide-ResNet50 (WRes50), DenseNet121 (DN121), as well as the commonly used VGG19 model. A white box scenario arises if the target network coincides with the one used for attack generation. To maintain experimental consistency, every method was evaluated using the same set of randomly sampled images drawn from the dataset. This analysis concentrates on untargeted adversarial attacks, with primary emphasis on black box configurations.
Tables 3–5 present the transferability assessment results of adversarial attacks in a non-target attack environment. The information in the table indicates that, compared with the existing iterative attack methods, the method we proposed achieves a higher attack success rate on and Tiny-ImageNet datasets, proving the effectiveness of our approach.



4.3 The Compatibility of FDL with Other Attack Methods
In this section, we combine low-frequency frequency-domain attenuation with existing methods to further analyze the effectiveness of our approach.
In particular, we utilize advanced variants of DI-FGSM and TI-FGSM. The attack strategies that integrate frequency-domain regularization techniques are labeled as FDL-DI-FGSM, FDL-TI-DI-FGSM, FDL-MI-DI-FGSM, and FDL-S2I-FGSM, respectively. Table 6 demonstrates the performance results of our approach when combined with current techniques. An examination of Table 6 shows that our suggested method preserves a strong attack success rate in white-box situations. Furthermore, when paired with existing approaches, it achieves significantly improved attack success rates in black-box settings. This suggests that the adversarial examples produced using our low-frequency domain reduction technique possess superior generalization abilities. From a quantitative perspective, when the alternative model is VGG19, compared with the existing methods, our approach achieves a higher average attack success rate in the black-box scenario, thereby demonstrating the effectiveness of our method. Specifically, When the surrogate model is VGG19, FDL-DI-FGSM, FDL-TI-DI-FGSM, FDL-MI-DI-FGSM, and FDL-S2I-FGSM outperform DI-FGSM, TI-DI-FGSM, MI-DI-FGSM, and S2I-FGSM by an average of approximately 7.23%, 8.68%, 4.58%, and 1.53%, respectively.

4.4 Robustness Against Generic Defense Methods
In this section, we perform a systematic evaluation of how our proposed method performs when tested against mainstream adversarial defense strategies. For the purpose of assessing the effectiveness of adversarial attacks in bypassing defensive frameworks, we carry out a set of demonstrative experiments on the Tiny-ImageNet dataset, using three distinct defense methods built on input preprocessing [25,30]. The VGG19 network is chosen as our surrogate model for these experiments, where the preprocessing techniques are embedded into the first layer of the defense architecture and operated in coordination with the black-box target model. Among these tested defense methods, the R&C approach [25] implements random image resizing and padding operations, with the scale parameter set within the range of 0.5 and 0.8. This workflow involves randomly reducing the input image to 50%–80% of its original size, before rescaling the processed image back to its original dimensions. Additionally, the JPEG defense method [25] employs JPEG compression with a quality parameter fixed at 50%. In contrast, the R&S method [30] incorporates Gaussian smoothing via a Gaussian kernel with a size of 3 and a standard deviation set to 2.
The findings displayed in Table 7 highlight the effectiveness of adversarial attacks when confronted with different defense mechanisms. From the tabulated data, it is clear that, under non-targeted attack conditions, the success rate of transfer attacks for all methods is considerably reduced when applied to the defense model compared to a standard training model. This suggests that the defense strategies successfully reduce the influence of adversarial disturbances. Furthermore, among the three defense approaches, the introduced method demonstrates superior performance, surpassing the traditional iterative attack method in terms of success rate.

4.5 CAM Attention Visualization
In this section, we utilize Gradient-weighted Class Activation Mapping [38] as a visualization tool to evaluate the effectiveness of our method in non-targeted attack situations.This tool can be abbreviated or abbreviated as Grad-CAM. Specifically, we utilized ResNet50 as a substitute for the initial black-box model and examined the model’s behavior. In this evaluation, ResNet18 was designated as the initial black-box model.
Fig. 4 illustrates Grad-CAM heatmaps generated from adversarial examples under non-targeted attack conditions. Rows one and two display the metrics obtained on Cifar100, while rows three and four summarize those from Tinyâ ImageNet. In this visualization, the first and third rows contain images of the untouched original inputs, as well as the adversarial examples crafted by multiple distinct attack algorithms. On the contrary, the second and fourth rows present the attention heatmaps of the aforementioned adversarial samples, which are acquired by implementing Grad-CAM on the ResNet18 network. Through qualitative visual inspection, we observe that the target black-box model initially concentrates its focus on the most prominent regions of the unmodified clean images. Nevertheless, after we apply a variety of adversarial attack methods, the corresponding heatmaps show dramatic changes in the model’s attention distribution. It is worth highlighting that when we compare the heatmaps generated by our proposed method with those of the original clean inputs, we observe significant offsets, most notably in the areas highlighted in red. This phenomenon suggests that our attack strategy successfully diverts the model’s attention from the key discriminative regions to irrelevant background features, which ultimately results in misclassification. These visual observations further validate the effectiveness of our proposed attack methodology.

Figure 4: Visualization outcomes of Grad-CAM attention heat maps generated across the datasets of Cifar100 and Tiny-ImageNet.
We systematically evaluated the contribution of fixed constraint parameters and random constraint parameters

Figure 5: Comparative results using fixed frequency decay constraints and random decay constraint strategies on the Tiny-ImageNet dataset. The alternative model is VGG19.
As illustrated in Fig. 5, the fixed constraint factor approach achieves a markedly higher success rate in generating adversarial samples compared to traditional iterative techniques. This finding underscores the effectiveness of the frequency domain decay approach, utilizing a fixed constraint factor to constrain frequency domain inputs, in mitigating overfitting of adversarial samples to the white-box network. Furthermore, the results in Fig. 5 demonstrate that the generalization ability of adversarial samples can be further enhanced by replacing fixed constraints with our proposed randomized frequency domain decay constraint strategy. This observation validates the superiority of employing a random frequency domain decay constraint strategy, which can further mitigate the overfitting of adversarial samples.
Different thresholds have an impact on the performance of the proposed method. To determine the optimal threshold

Figure 6: Comparative results of method FDL-S2I-FGSM on the dataset Tiny-ImageNet under the different threshold
In this study, the analysis we conducted using convolutional neural networks for frequency-domain analysis and Fourier heat maps indicates that low frequencies contribute more to the model output during model training and fitting. To enhance the transferability of the black-box adversarial attack, we regard the iterative attack as a training process for the input data and introduce a new low-frequency attenuation method in the frequency domain. This method reduces the excessive reliance of adversarial sample generation on low-frequency information, thereby improving the transferability of adversarial samples. Our experiments on three datasets show that this technique achieves an excellent success rate of migration attacks, indicating that it can enhance the transferability of confrontation. The proposed frequency-domain attenuation method is highly dependent on Fourier domain interpretable analysis results, and variations in interpretable approaches can influence the enhancement of transferability. In future research, we will develop an adaptive frequency-domain attenuation method according to the results of Fourier heatmap analysis for each model, aiming to enhance the transferability of adversarial examples against diverse model architectures. By generating higher-quality opposing samples, we aim to evaluate the model robustness in actual scenarios more accurately and develop more robust neural network models.
Acknowledgement: Not applicable.
Funding Statement: This research was funded by the Hubei Provincial Natural Science Foundation under Grant 2025AFB416, the Open Fund Project of Shiyan Key Laboratory of Electromagnetic Induction and Energy Saving Technology SYZDK22024A02, the Doctoral Research Startup Project BK202513, and the Hubei Provincial Natural Science Foundation under Grant 2024AFB511.
Author Contributions: Conceptualization, Li Peng; methodology, Li Peng; software, Li Peng; validation, Xiangbing Li and Kun Zou; formal analysis, Kun Zou; investigation, Kun Zou; resources, Yong Liu; data curation, Xiangbing Li; writing—original draft preparation, Li Peng and Xiangbing Li; writing—review and editing, Li Peng and Xiangbing Li; visualization, Yong Liu; supervision, Yong Liu, Haibo Huang and Kun Zou; project administration, Yong Liu; funding acquisition, Yong Liu. All authors reviewed and approved the final version of the manuscript.
Availability of Data and Materials: This study conducts empirical analyses on publicly accessible image classification benchmark datasets, the official sources of which are referenced and available as https://www.cs.toronto.edu/~kriz/cifar.html (accessed 10 February 2026) and http://cs231n.stanford.edu/tiny-imagenet-200.zip (accessed 10 February 2026). The source code can be obtained by contacting the author at the email: liuyong@huat.edu.cn.
Ethics Approval: Not applicable.
Conflicts of Interest: The authors declare no conflicts of interest.
References
1. Goodfellow IJ, Shlens J, Szegedy C. Explaining and harnessing adversarial examples. arXiv: 1412.6572. 2014. [Google Scholar]
2. Jin X, Liu Y, Sun G, Chen Y, Dong Z, Wu H. KRT-FUAP: key regions tuned via flow field for facial universal adversarial perturbation. Appl Sci. 2024;14(12):4973. doi:10.3390/app14124973. [Google Scholar] [CrossRef]
3. Papernot N, McDaniel P, Goodfellow I, Jha S, Celik ZB, Swami A. Practical black-box attacks against machine learning. In: Proceedings of the 2017 ACM on Asia Conference on Computer and Communications Security; 2017 Apr 2–6; Abu Dhabi, United Arab Emirates. p. 506–19. [Google Scholar]
4. Xu L, Yao Z, Li H, Diao C, Zhou G, Zhao D, et al. CBAT-ASG: adversarial sample generation method based on CBA-transformer. In: Proceedings of the 2025 28th International Conference on Computer Supported Cooperative Work in Design (CSCWD); 2025 May 5–7; Compiegne, France. New York, NY, USA: IEEE; 2025. p. 1646–51. [Google Scholar]
5. Li C, Liu Y, Zhang X, Wu H. Exploiting frequency characteristics for boosting the invisibility of adversarial attacks. Appl Sci. 2024;14(8):3315. doi:10.3390/app14083315. [Google Scholar] [CrossRef]
6. Liu Y, Chen X, Liu C, Song D. Delving into transferable adversarial examples and black-box attacks. arXiv:1611.02770. 2016. [Google Scholar]
7. Dong Y, Pang T, Su H, Zhu J. Evading defenses to transferable adversarial examples by translation-invariant attacks. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition; 2019 Jun 15–20; Long Beach, CA, USA. p. 4312–21. [Google Scholar]
8. Liu Y, Li C, Wang Z, Wu H, Zhang X. Transferable adversarial attack based on sensitive perturbation analysis in frequency domain. Inf Sci. 2024;678(1):120971. doi:10.1016/j.ins.2024.120971. [Google Scholar] [CrossRef]
9. Dong Y, Liao F, Pang T, Su H, Zhu J, Hu X, et al. Boosting adversarial attacks with momentum. In: Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition; 2018 Jun 18–23; Salt Lake City, UT, USA. p. 9185–93. [Google Scholar]
10. Xie C, Zhang Z, Zhou Y, Bai S, Wang J, Ren Z, et al. Improving transferability of adversarial examples with input diversity. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition; 2019 Jun 15–20; Long Beach, CA, USA. p. 2730–9. [Google Scholar]
11. Long Y, Zhang Q, Zeng B, Gao L, Liu X, Zhang J, et al. Frequency domain model augmentation for adversarial attack. In: Proceedings of the Computer Vision-ECCV 2022: 17th European Conference; 2022 Oct 23–27; Tel Aviv, Israel. Berlin/Heidelberg, Germany: Springer; 2022. p. 549–66. [Google Scholar]
12. Kurakin A, Goodfellow IJ, Bengio S. Adversarial examples in the physical world. In: Artificial intelligence safety and security. Boca Raton, FL, USA: Chapman and Hall/CRC; 2018. p. 99–112. [Google Scholar]
13. Madry A, Makelov A, Schmidt L, Tsipras D, Vladu A. Towards deep learning models resistant to adversarial attacks. arXiv:1706.06083. 2017. [Google Scholar]
14. Moosavi-Dezfooli SM, Fawzi A, Frossard P. Deepfool: a simple and accurate method to fool deep neural networks. In: Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition; 2016 Jun 27–30; Las Vegas, NV, USA. p. 2574–82. [Google Scholar]
15. Wiyatno R, Xu A. Maximal jacobian-based saliency map attack. arXiv:1808.07945. 2018. [Google Scholar]
16. Carlini N, Wagner D. Towards evaluating the robustness of neural networks. In: Proceedings of the 2017 IEEE Symposium on Security and Privacy (SP); 2017 May 22–26; San Jose, CA, USA. New York, NY, USA: IEEE; 2017. p. 39–57. [Google Scholar]
17. Lin J, Song C, He K, Wang L, Hopcroft JE. Nesterov accelerated gradient and scale invariance for adversarial attacks. arXiv:1908.06281. 2019. [Google Scholar]
18. Gao L, Zhang Q, Song J, Liu X, Shen HT. Patch-wise attack for fooling deep neural network. In: Proceedings of the Computer Vision–ECCV 2020: 16th European Conference; 2020 Aug 23–28; Glasgow, UK. Berlin/Heidelberg, Germany: Springer; 2020. p. 307–22. [Google Scholar]
19. Zou J, Pan Z, Qiu J, Liu X, Rui T, Li W. Improving the transferability of adversarial examples with resized-diverse-inputs, diversity-ensemble and region fitting. In: Proceedings of the Computer Vision-ECCV 2020: 16th European Conference; 2020 Aug 23–28; Glasgow, UK. Berlin/Heidelberg, Germany: Springer; 2020. p. 563–79. [Google Scholar]
20. Wang X, He K. Enhancing the transferability of adversarial attacks through variance tuning. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition; 2021 Jun 20–25; Nashville, TN, USA. p. 1924–33. [Google Scholar]
21. Li T, Li M, Yang Y, Deng C. Frequency domain regularization for iterative adversarial attacks. Pattern Recognit. 2023;134(3):109075. doi:10.1016/j.patcog.2022.109075. [Google Scholar] [CrossRef]
22. Li S, He C, Ma X, Zhu BB, Wang S, Hu H, et al. Enhancing adversarial transferability with checkpoints of a single model’s training. In: Proceedings of the Computer Vision and Pattern Recognition Conference; 2025 Jun 17–20; Nashville, TN, USA. p. 20685–94. [Google Scholar]
23. Ren Y, Zhao Z, Lin C, Yang B, Zhou L, Liu Z, et al. Improving adversarial transferability on vision transformers via forward propagation refinement. In: Proceedings of the Computer Vision and Pattern Recognition Conference; 2025 Jun 17–20; Nashville, TN, USA. p. 25071–80. [Google Scholar]
24. Liang K, Dai X, Li Y, Wang D, Xiao B. Improving transferable targeted attacks with feature tuning mixup. In: Proceedings of the Computer Vision and Pattern Recognition Conference; 2025 Jun 17–20; Nashville, TN, USA. p. 25802–11. [Google Scholar]
25. Guo C, Rana M, Cisse M, Van Der Maaten L. Countering adversarial images using input transformations. arXiv:1711.00117. 2017. [Google Scholar]
26. Dziugaite GK, Ghahramani Z, Roy DM. A study of the effect of jpg compression on adversarial images. arXiv:1608.00853. 2016. [Google Scholar]
27. Rudin LI, Osher S, Fatemi E. Nonlinear total variation based noise removal algorithms. Phys D Nonlinear Phenom. 1992;60(1–4):259–68. doi:10.1016/0167-2789(92)90242-f. [Google Scholar] [CrossRef]
28. Liao F, Liang M, Dong Y, Pang T, Hu X, Zhu J. Defense against adversarial attacks using high-level representation guided denoiser. In: Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition; 2018 Jun 18–23; Salt Lake City, UT, USA. p. 1778–87. [Google Scholar]
29. Xie C, Wu Y, Maaten LVD, Yuille AL, He K. Feature denoising for improving adversarial robustness. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition; 2019 Jun 15–20; Long Beach, CA, USA. p. 501–9. [Google Scholar]
30. Jia J, Cao X, Wang B, Gong NZ. Certified robustness for top-k predictions against adversarial perturbations via randomized smoothing. arXiv:1912.09899. 2019. [Google Scholar]
31. Yan J, Yin H, Zhao Z, Ge W, Zhang H, Rigoll G. Wavelet regularization benefits adversarial training. Inf Sci. 2023;649(8):119650. doi:10.1016/j.ins.2023.119650. [Google Scholar] [CrossRef]
32. Xu ZQJ, Zhang Y, Xiao Y. Training behavior of deep neural network in frequency domain. In: Proceedings of the Neural Information Processing: 26th International Conference, ICONIP 2019; 2019 Dec 12–15; Sydney, NSW, Australia. Berlin/Heidelberg, Germany: Springer; 2019. p. 264–74. [Google Scholar]
33. Luo T, Ma Z, Xu ZQJ, Zhang Y. Theory of the frequency principle for general deep neural networks. arXiv:1906.09235. 2019. [Google Scholar]
34. Yin D, Gontijo Lopes R, Shlens J, Cubuk ED, Gilmer J. A fourier perspective on model robustness in computer vision. In: Advances in neural information processing systems. Vol. 32. San Diego, CA, USA: NeurIPS; 2019. [Google Scholar]
35. Kurakin A, Goodfellow I, Bengio S. Adversarial machine learning at scale. arXiv:1611.01236. 2016. [Google Scholar]
36. Krizhevsky A, Hinton G. Learning multiple layers of features from tiny images. Toronto, ON, Canada: Department of Computer Science, University of Toronto; 2009. [Google Scholar]
37. Brendel W, Rauber J, Kurakin A, Papernot N, Veliqi B, Mohanty SP, et al. Adversarial vision challenge. In: The NeurIPS’18 competition: from machine learning to intelligent conversations. Berlin/Heidelberg, Germany: Springer; 2020. p. 129–53. [Google Scholar]
38. Selvaraju RR, Cogswell M, Das A, Vedantam R, Parikh D, Batra D. Grad-cam: visual explanations from deep networks via gradient-based localization. In: Proceedings of the IEEE International Conference on Computer Vision; 2017 Oct 22–29; Venice, Italy. p. 618–26. [Google Scholar]
Cite This Article
Copyright © 2026 The Author(s). Published by Tech Science Press.This work is licensed under a Creative Commons Attribution 4.0 International License , which permits unrestricted use, distribution, and reproduction in any medium, provided the original work is properly cited.


Submit a Paper
Propose a Special lssue
View Full Text
Download PDF
Downloads
Citation Tools