REVIEW 5 major objections 6 minor 57 references
Data-Free Model-Related Attacks: Unleashing the Potential of Generative AI
T0 review · 5 major / 6 minor · reviewed 2026-08-10 · deepseek-v4-flash
Pith's one-line read The paper claims that public generative models can supply synthetic data standing in for a target model's training set, enabling model extraction, membership inference, and model inversion attacks in a data-free, black-box setting with…
desk verdict A timely, plausible data-free attack pipeline using public generators, but the theory is invalid, the 'comparable to white-box' claim is overstated, and the private-dataset test does not actually test the key distribution-coverage assumption. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing mechanism is a three-stage data synthesis pipeline. First, prompted generation: the adversary asks a public generative model for samples of each target class, keeping only those the target classifies correctly. Second, boundary augmentation: starting from a kept sample, the adversary adds Gaussian noise in growing spherical shells and collects samples just inside the target's decision boundary, which expands coverage of the sample space. Third, inter-class filtering: samples are embedded through the target's output vectors, class centroids are computed, and any sample in class $k$ whose distance to another class's centroid exceeds three standard deviations is removed. The paper argues, via a Kullback-Leibler divergence inequality, that this filtering reduces the distribution shift between the generated set and the target's training distribution.
What would settle it
Train a target classifier on a genuinely private dataset whose classes are absent from any public generator's training distribution (for example, specialized medical or industrial imagery), run the three-step pipeline, and compare the stolen model's accuracy and agreement to the random-search baseline. If they collapse to that baseline, the distribution-coverage premise is falsified.
Extended reading notes
Core claim
On the paper's own terms, the central discovery is that a black-box adversary can replace the target model's private training set with generated data from a public generative model and still obtain a stolen model whose accuracy and agreement approach those of a thief who has the real training set and architecture. For example, on CIFAR10 the stolen model reaches 82.6% accuracy against a target at 88.7% and a white-box baseline at 85.3%. For membership inference, the adversary trains a shadow model on the generated data and transfers the resulting attack model to the target. For model inversion, the adversary trains a generative inversion model on pairs of target output vectors and generated inputs, then reconstructs inputs from confidence vectors. The paper also claims the same pipeline works in label-only settings, where boundary-crossing noise becomes a proxy for membership and class-representative samples stand in for exact inversion.
Load-bearing premise
The pipeline only works if the public generative model's training data already covers the target model's task domain, because the generated samples are supposed to stand in for the target's private training data.
Editorial extensions
If this is right
- A deployed image or text classifier that exposes output confidence vectors can be functionally copied with no access to its training data, provided a public generator exists for the same task.
- Membership inference can be run without collecting a shadow dataset matching the target's domain: synthetic data plus a mimic model yields attack accuracy, F1, AUC, and TPR@1%FPR comparable to a white-box shadow-model baseline.
- The same generated dataset supports model inversion by training an inversion model on pairs of target output vectors and generated inputs, with reconstruction quality close to the baseline that uses the real training set.
- Label-only access does not stop the attacks: boundary-crossing noise can signal membership, and class-representative synthetic samples serve as inversion outputs.
- Synthetic-data detection and output perturbation are only partial defenses: detection can be bypassed by generating more data, and perturbation leaves membership inference and inversion largely intact.
Reading between the lines
- The PET experiment only partially tests the distribution-coverage assumption, because its cat/dog/bird classes are common and several videos were downloaded from YouTube, which may already be inside the generator's training data; a target trained on a genuinely novel domain remains the untested case.
- The KL-divergence argument shows filtering reduces the distance to the target distribution only under the three-sigma model; in practice the same filtering could remove informative boundary samples, so the attack's edge may depend on how cleanly class centroids separate in output space.
- As generators improve for non-image, non-text modalities such as audio, video, or structured medical records, the same three-step pipeline would likely carry over, making the threat broader than the two modalities tested here.
- Because automated prompt generation already comes close to manual prompts in extraction accuracy, the attack appears automatable end-to-end, so the practical barrier for attackers is mostly compute and API access rather than expert prompt design.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes a data-free, black-box framework for model-related attacks (model extraction, membership inference, and model inversion) that uses public generative models (Stable Diffusion and GPT-4) to synthesize a surrogate dataset, augments it by probing the target model's decision boundary, and then filters the data with an inter-class three-sigma rule. The authors evaluate the pipeline on CIFAR10, MNIST, SkinCancer, BBCNews, IMDB, and a newly collected PET dataset, and claim that the attacks achieve performance comparable to white-box baselines that use the target's training data and architecture. The paper also includes hyperparameter studies, ablations with random-search baselines and alternative generative models, a discussion of defenses, and a release of source code.
Significance. If validated, the paper would be a useful contribution to the security/privacy literature: it extends data-free model stealing and related attacks to a setting where the adversary uses only a public generative model and black-box query access, and it is one of the few studies to cover both image and text domains under one pipeline. The authors also provide ablations and a code link, which supports reproducibility. The central empirical claim, however, currently rests on an untested distribution-coverage assumption, and the evaluation protocol for membership inference and model extraction does not, as written, measure what the abstract claims it measures. The theoretical analysis in Section 4 is not sound. These issues preclude acceptance in the current form.
major comments (5)
- [Section 4, Eq. (4)] The proof that inter-class filtering reduces the KL divergence between the target training distribution and the generated distribution is invalid. The first integral in the second line is not itself a KL divergence and can be negative, so the statement 'any KL divergence value is larger than or equal to 0' does not justify dropping it. The subsequent claim that P'_gen(x)/P_gen(x) > 1 pointwise is not established; P'_gen is a distribution obtained by deleting samples and can be smaller than P_gen on some points or zero where P_gen is positive. The line 'Pgen(x < mu + 3sigma) < 1' also treats a probability distribution as a random variable. As written, the theoretical result is unproved. I recommend either supplying a correct proof or explicitly labeling the three-sigma filter as a heuristic supported only by the experiments.
- [Section 3.3 and Section 5.2] The membership inference attack is trained and evaluated using the auxiliary dataset's own train/test split (dDtrainaux versus dDtestaux), not using samples whose membership in the target model's training set is known. Tables 2 and 3 therefore report how well the attack model distinguishes the surrogate's generated training samples from its generated test samples. This does not establish that the attack transfers to the target model T. The paper does not describe a ground-truth membership test set for T or report how often samples from T's actual Dtrain are flagged as members. Please specify the evaluation protocol and report attack accuracy/F1/AUC on the target model's actual members versus non-members.
- [Section 5.2, Table 1] Model extraction accuracy and agreement are computed on dDtestaux, a subset of the same generated, T-filtered dataset used to train the stolen model. Because both the target and stolen models are evaluated on samples that T has already classified consistently during the filtering step, the target accuracy and the agreement metric are inflated by construction. The paper should additionally evaluate both models on the original held-out test sets (e.g., the standard CIFAR10 test split, the original BBCNews/IMDB splits) or on an independently collected set, and report target versus stolen performance there.
- [Section 3.1 and Section 5.1] The central premise of the paper is that a public generative model's training distribution 'is highly likely to encompass' the target model's training distribution. None of the main datasets tests this premise: CIFAR10, MNIST, SkinCancer, BBCNews, and IMDB are public and plausibly present in the training corpora of Stable Diffusion or GPT-4. The PET dataset does not resolve the issue: its dog and bird videos are listed as YouTube URLs in the paper, and 'cat' is a common image category, so the generator can produce in-domain samples without having seen the specific PET videos. Please test the pipeline on a genuinely private or niche domain where the generator cannot rely on memorized or near-memorized content, or otherwise quantify the distribution overlap between the generator's output and the target's training set. Without such a test, the data-free claim is only demonstrated for public-distribution targets.
- [Section 5.1 and Tables 1-4] The experiments report averages over three runs but provide no error bars, confidence intervals, or statistical comparisons, yet the abstract and Section 5.5 make the strong claim of performance 'comparable' to white-box baselines. Some of the observed gaps are substantial (e.g., Table 2 CIFAR10 AUC 0.54 versus 0.67; Table 1 CIFAR10 agreement 83.7 versus 89.4). Please report standard deviations and either bootstrap confidence intervals or a paired significance test for the headline accuracy/agreement/AUC comparisons.
minor comments (6)
- [Section 4, Eq. (1)] The text says 'I is the unit vector' but the context requires the identity matrix; please correct the notation.
- [Algorithm 2] In lines 2-3, the algorithm refers to samples xk_j in class i, but the centroid is computed over xi_j; the subscript should be i throughout for consistency.
- [Table 11] The table header says 'AUC' but the values are TPR@1%FPR; the header should be updated to match the rows.
- [Section 1, Contributions] There is a typo: 'utilitizing' should be 'utilizing'.
- [Section 3.3] The label-only variants of membership inference and model inversion are described but not evaluated in the experiments; please clarify whether these variants are part of the claims or defer them to future work.
- [Section 5.1] The description of the comparison baselines would benefit from more detail on training hyperparameters and the amount of data used, since the baseline's access to the full target training set is a key point in the comparison.
Circularity Check
No meaningful circularity: the attack pipeline is an empirical construction, the distribution-coverage premise is an explicit assumption rather than a derived prediction, and the only self-citation ([57]) is background.
full rationale
No load-bearing step in this paper reduces to its own inputs by construction. The central premise (Section 3.1) is explicitly an assumption: "the distribution space of training data for generative models is highly likely to encompass the distribution space of the training set for the target model if the target model shares a similar task with the generative model." This is a domain-coverage hypothesis, not a quantity fitted from the target outputs and then renamed as a prediction; the experiments test it on public datasets and on the newly created PET dataset. The filtering and augmentation steps use target-model outputs as an oracle, but that is the attack mechanism (the adversary is allowed black-box queries), not a self-definitional derivation. The stolen model's accuracy is measured against the baseline rather than being forced by a fitted parameter. The one apparent author self-citation is [57] in the introductory list of model inversion attacks; the paper's label-only inversion procedure (Section 3.3) does not import a load-bearing theorem or fitted value from that reference. Section 4's KL-divergence proof appears mathematically invalid (Eq. (4) drops the negative integral over the removed region), and the PET baseline is omitted because it "did not adequately support" the baseline; these are correctness and external-validity concerns, not circularity. The paper is self-contained in the sense that its claims are evaluated against white-box baselines on external datasets, so any circularity score above 2 would not be justified.
Assumptions & free parameters
free parameters (6)
- delta_0 (initial noise) =
not reported in main text
- epsilon (noise step size) =
not reported in main text
- N (samples per augmentation round) =
not reported in main text
- generated samples per class =
100 to 500 per dataset
- augmented samples per class =
1000 to 6000 per dataset
- manual prompt phrasing =
e.g., 'Generate a single class name, in a realistic style, with a clear background'
assumptions (4)
- domain assumption Generative models are trained on data whose distribution covers the target model's training domain.
- domain assumption The adversary knows the class labels and meanings of the target model.
- domain assumption Target model output vectors reflect learned data distribution, so three-sigma filtering in output space reduces distribution shift.
- standard math Standard probability and KL divergence properties as used in Section 4.
Cite this review
Pith. "Pith review of Data-Free Model-Related Attacks: Unleashing the Potential of Generative AI." pith.science (2026). https://pith.science/paper/MO5QSP23
@misc{pith2026250116671,
author = {Pith},
title = {Pith review of: Data-Free Model-Related Attacks: Unleashing the Potential of Generative AI},
year = {2026},
howpublished = {\url{https://pith.science/paper/MO5QSP23}},
note = {Machine review of arXiv:2501.16671}
}
read the original abstract
Generative AI technology has become increasingly integrated into our daily lives, offering powerful capabilities to enhance productivity. However, these same capabilities can be exploited by adversaries for malicious purposes. While existing research on adversarial applications of generative AI predominantly focuses on cyberattacks, less attention has been given to attacks targeting deep learning models. In this paper, we introduce the use of generative AI for facilitating model-related attacks, including model extraction, membership inference, and model inversion. Our study reveals that adversaries can launch a variety of model-related attacks against both image and text models in a data-free and black-box manner, achieving comparable performance to baseline methods that have access to the target models' training data and parameters in a white-box manner. This research serves as an important early warning to the community about the potential risks associated with generative AI-powered attacks on deep learning models.
Figures
Figures from the paper (11 more)
Reference graph
Works this paper leans on
-
[1]
Fast Stable Diffusion XL on TPU v5e, 2023
work page 2023
-
[2]
Imdb, https://www.kaggle.com/datasets/atulanandjha/imdb- 50k-movie-reviews-test-your-bert
Atul Anand. Imdb, https://www.kaggle.com/datasets/atulanandjha/imdb- 50k-movie-reviews-test-your-bert
-
[3]
RatGPT: Turn- ing online LLMs into Proxies for Malware Attacks, 2023
M Beckerich, L Plein, and S Coronado. RatGPT: Turn- ing online LLMs into Proxies for Malware Attacks, 2023
work page 2023
-
[4]
A Bhattacharjee and H Liu. Fighting Fire with Fire: Can ChatGPT Detect AI-generated Text? ACM SIGKDD Explorations Newsletter, 25(2):14–21, 2024
work page 2024
-
[5]
Membership Inference Attacks From First Principles
N Carlini, S Chien, M Nasr, S Song, A Terzis, and F Tramer. Membership Inference Attacks From First Principles. In Proc. of IEEE S & P, pages 1897–1914, 2022
work page 1914
-
[6]
Extracting Training Data from Large Language Models
N Carlini, F Tramer, E Wallace, M Jagielski, A Herbert- V oss, K Lee, A Roberts, T Brown, D Song, U Erlingsson, A Oprea, and C Raffel. Extracting Training Data from Large Language Models. In Proc. of USENIX Security Symposium, page 2633–2650, 2021
work page 2021
-
[7]
Can LLM-Generated Misinforma- tion Be Detected? In Proc
C Chen and K Shu. Can LLM-Generated Misinforma- tion Be Detected? In Proc. of ICLR, pages 1–17, 2024
work page 2024
-
[8]
Choquette-Choo, F Tramer, N Carlini, and N Pa- pernot
C A. Choquette-Choo, F Tramer, N Carlini, and N Pa- pernot. Label-Only Membership Inference Attacks. In Proc. of ICML, pages 1964–1974, 2021
work page 1964
Show all 57 references
-
[9]
MeaeQ: Mount Model Extraction Attacks with Efficient Queries
C Dai, M Lv, K Li, and W Zhou. MeaeQ: Mount Model Extraction Attacks with Efficient Queries. In Proc. of EMNLP, pages 12671–12684, 2023
2023
-
[10]
Dwork and A
C. Dwork and A. Roth. The Algorithmic Foundations of Differential Privacy. Foundations and Trends in The- oretical Computer Science, 9(3-4):211–407, 2014
2014
-
[11]
A comprehensive survey and analysis of generative mod- els in machine learning
H GM, M K Gourisaria, M Pandey, and S S Rautaray. A comprehensive survey and analysis of generative mod- els in machine learning. Computer Science Review , 38:100285:1–29, 2022
2022
-
[12]
Goodfellow, J Pouget-Abadie, M Mirza, B Xu, D Warde-Farley, S Ozair, A Courville, and Y Bengio
I J. Goodfellow, J Pouget-Abadie, M Mirza, B Xu, D Warde-Farley, S Ozair, A Courville, and Y Bengio. Generative Adversarial Nets. In Proc. of NeurIPS, 2014
2014
-
[13]
Gemini 1.5 Flash, 2024
Google. Gemini 1.5 Flash, 2024. 17
2024
-
[14]
Are GAN Generated Images Easy to De- tect? A Critical Analysis of the State-Of-The-Art
D Gragnaniello, D Cozzolino, F Marra, G Poggi, and L Verdoliva. Are GAN Generated Images Easy to De- tect? A Critical Analysis of the State-Of-The-Art. In Proc. of ICME, 2021
2021
-
[15]
How close is chatgpt to human experts? comparison corpus, evaluation, and detection, 2023
B Guo, X Zhang, Z Wang, M Jiang, J Nie, Y Ding, J Yue, and Y Wu. How close is chatgpt to human experts? comparison corpus, evaluation, and detection, 2023
2023
-
[16]
From ChatGPT to ThreatGPT: Impact of Generative AI in Cybersecurity and Privacy
M Gupta, C Akiri, K Aryal, E Parker, and L Praharaj. From ChatGPT to ThreatGPT: Impact of Generative AI in Cybersecurity and Privacy. IEEE Access, 11:80218 – 80245, 2023
2023
-
[17]
Reinforcement Learning-Based Black-Box Model Inversion Attacks
G Han, J Choi, H Lee, and J Kim. Reinforcement Learning-Based Black-Box Model Inversion Attacks. In Proc. of CVPR, pages 20504–20513, 2023
2023
-
[18]
Getting pwn’d by AI: Penetration Testing with Large Language Models
A Happe and J Cito. Getting pwn’d by AI: Penetration Testing with Large Language Models. In Proc. of the 31st ACM Joint European Software Engineering Con- ference and Symposium on the Foundations of Software Engineering, page 2082–2086, 2023
2023
-
[19]
Spear Phishing With Large Language Models, 2023
J Hazell. Spear Phishing With Large Language Models, 2023
2023
-
[20]
Deep Residual Learn- ing for Image Recognition
K He, X Zhang, S Ren, and J Sun. Deep Residual Learn- ing for Image Recognition. In Proc. of CVPR, pages 770–778, 2015
2015
-
[21]
Denoising Diffusion Proba- bilistic Models
J Ho, A Jain, and P Abbeel. Denoising Diffusion Proba- bilistic Models. In Proc. of NeurIPS, 2020
2020
-
[22]
Fraud GPT: A new face of cyber threats of the future, 2023
SharkStriker Inc. Fraud GPT: A new face of cyber threats of the future, 2023
2023
-
[23]
Melanoma skin cancer dataset, 2022
M H Javid. Melanoma skin cancer dataset, 2022
2022
-
[24]
OpenAI Debuts DALL-E for Generating Images from Text, 2021
K Johnson. OpenAI Debuts DALL-E for Generating Images from Text, 2021
2021
-
[25]
Label-Only Model Inversion Attacks via Boundary Repulsion
M Kahla, S Chen, H A Just, and R Jia. Label-Only Model Inversion Attacks via Boundary Repulsion. In Proc. of CVPR, pages 15045–15053, 2022
2022
-
[26]
MAZE: Data- Free Model Stealing Attack Using Zeroth-Order Gradi- ent Estimation
S Kariyappa, A Prakash, and M Qureshi. MAZE: Data- Free Model Stealing Attack Using Zeroth-Order Gradi- ent Estimation. In Proc. of CVPR, pages 13814–13823, 2021
2021
-
[27]
An Introduction to Vari- ational Autoencoders
D P Kingma and M Welling. An Introduction to Vari- ational Autoencoders. Foundations and Trends in Ma- chine Learning, 2019
2019
-
[28]
The cifar-10 dataset, 2014
A Krizhevsky, V Nair, and G Hinton. The cifar-10 dataset, 2014
2014
-
[29]
The mnist database of handwritten digits, 1998
Y LeCun. The mnist database of handwritten digits, 1998
1998
-
[30]
Multi-step Jailbreaking Privacy Attacks on ChatGPT
H Li, D Guo, W Fan, M Xu, J Huang, F Meng, and Y Song. Multi-step Jailbreaking Privacy Attacks on ChatGPT. In Proc. of EMNLP, page 4138–4153, 2023
2023
-
[31]
Membership Leakage in Label-Only Exposures
Z Li and Y Zhang. Membership Leakage in Label-Only Exposures. In Proc. of ICML, page 880–895, 2021
2021
-
[32]
ML-Doctor: Holistic Risk Assessment of Inference Attacks Against Machine Learning Models
Y Liu, R Wen, X He, A Salem, Z Zhang, M Backes, E De Cristofaro, M Fritz, and Y Zhang. ML-Doctor: Holistic Risk Assessment of Inference Attacks Against Machine Learning Models. In Proc. of USENIX Security, pages 1–18, 2022
2022
-
[33]
Membership Infer- ence Attacks against Language Models via Neighbour- hood Comparison
J Mattern, F Mireshghallah, Z Jin, B Schoelkopf, M Sachan, and T Berg-Kirkpatrick. Membership Infer- ence Attacks against Language Models via Neighbour- hood Comparison. In Proc. of ACL, page 11330–11343, 2023
2023
-
[34]
Regularizing and Optimizing LSTM Language Models
S Merity, N S Keskar, and R Socher. Regularizing and Optimizing LSTM Language Models. In Proc. of ICLR, pages 1–13, 2018
2018
-
[35]
Comprehensive Privacy Analysis of Deep Learning: Passive and Active White-box Inference Attacks against Centralized and Federated Learning
M Nasr, R Shokri, , and A Houmansadr. Comprehensive Privacy Analysis of Deep Learning: Passive and Active White-box Inference Attacks against Centralized and Federated Learning. In Proc. of IEEE S & P , pages 739–753, 2019
2019
-
[36]
Re-thinking Model Inversion Attacks Against Deep Neural Networks
N Nguyen, K Chandrasegaran, M Abdollahzadeh, and N Cheung. Re-thinking Model Inversion Attacks Against Deep Neural Networks. In Proc. of CVPR , pages 16384–16393, 2023
2023
-
[37]
I Know What You Trained Last Summer: A Survey on Stealing Machine Learning Models and Defences
D Oliynyk, R Mayer, and A Rauber. I Know What You Trained Last Summer: A Survey on Stealing Machine Learning Models and Defences. ACM Computing Sur- veys, 55(14s):324:1–41, 2023
2023
-
[38]
DALL·E API Now Available in Public Beta, 2022
OpenAI. DALL·E API Now Available in Public Beta, 2022
2022
-
[39]
GPT-4 Technical Report, 2023
OpenAI. GPT-4 Technical Report, 2023
2023
-
[40]
Bbc news, https://www.kaggle.com/dsv/7633851
G Preda. Bbc news, https://www.kaggle.com/dsv/7633851
-
[41]
Open-journey, 2024
PromptHero. Open-journey, 2024
2024
-
[42]
AI Prompt Optimizer, 2024
PromptPerfect. AI Prompt Optimizer, 2024
2024
-
[43]
Deep- steal: Advanced model extractions leveraging efficient weight stealing in memories
A S Rakin, M H I Chowdhuryy, F Yao, and D Fan. Deep- steal: Advanced model extractions leveraging efficient weight stealing in memories. In Proc. of IEEE S&P , pages 1157–1174, 2022
2022
-
[44]
Photorealistic Text-to-Image Dif- fusion Models with Deep Language Understanding
C Saharia and et al. Photorealistic Text-to-Image Dif- fusion Models with Deep Language Understanding. In Proc. of NeurIPS, 2022. 18
2022
-
[45]
Prompt stealing attacks against large language models, 2024
Z Sha and Y Zhang. Prompt stealing attacks against large language models, 2024
2024
-
[46]
Model Stealing Attacks Against Inductive Graph Neural Networks
Y Shen, X He, Y Han, and Y Zhang. Model Stealing Attacks Against Inductive Graph Neural Networks. In Proc. of IEEE S & P, page 1175–1192, 2022
2022
-
[47]
Shokri, M
R. Shokri, M. Stronati, C. Song, and Vi. Shmatikov. Membership Inference Attacks Against Machine Learn- ing Models. In Proc. of IEEE S & P, pages 3–18, 2017
2017
-
[48]
Very Deep Convolu- tional Networks for Large-Scale Image Recognition
K Simonyan and A Zisserman. Very Deep Convolu- tional Networks for Large-Scale Image Recognition. In Proc. of ICLR, pages 1–10, 2015
2015
-
[49]
Agent SCA: Advanced Physical Side Channel Analysis Agent with LLMs
F Yaman. Agent SCA: Advanced Physical Side Channel Analysis Agent with LLMs. PhD thesis, North Carolina State University, 2023
2023
-
[50]
Detect- ing fake images by identifying potential texture differ- ence
J Yang, S Xiao, A Li, G Lan, and H Wang. Detect- ing fake images by identifying potential texture differ- ence. Future Generation Computer Systems, 125:127– 135, 2021
2021
-
[51]
Diffusion Models: A Comprehensive Survey of Methods and Applications
L Yang, Z Zhang, Y Song, S Hong, R Xu, Y Zhao, W Zhang, B Cui, and M Yang. Diffusion Models: A Comprehensive Survey of Methods and Applications. ACM Computing Surveys, 56(4):105:1–39, 2023
2023
-
[52]
Prsa: Prompt reverse stealing attacks against large language models, 2024
Y Yang, X Zhang, Y Jiang, X Chen, H Wang, S Ji, and Z Wang. Prsa: Prompt reverse stealing attacks against large language models, 2024
2024
-
[53]
Neural Net- work Inversion in Adversarial Setting via Background Knowledge Alignment
Z Yang, J Zhang, E Chang, and Z Liang. Neural Net- work Inversion in Adversarial Setting via Background Knowledge Alignment. In Proc. of CCS, page 225–240, 2019
2019
-
[54]
A Survey on Large Language Model (LLM) Security and Privacy: The Good, the Bad, and the Ugly, 2023
Y Yao, J Duan, K Xu, Y Cai, Z Sun, and Y Zhang. A Survey on Large Language Model (LLM) Security and Privacy: The Good, the Bad, and the Ugly, 2023
2023
-
[55]
J. Ye, A. Maddi, S. K. Murakonda, V . Bindschaedler, and R. Shokri. Enhanced Membership Inference Attacks against Machine Learning Models. In Proc. of CCS, 2022
2022
-
[56]
X Zhao, W Zhang, X Xiao, and B Y . Lim. Exploiting Explanations for Model Inversion Attacks. In Proc. of ICCV, 2021
2021
-
[57]
Label-only model inversion attacks: Attack with the least informa- tion
T Zhu, D Ye, S Zhou, B Liu, and W Zhou. Label-only model inversion attacks: Attack with the least informa- tion. IEEE Transactions on Information Forensics and Security, 18:991–1005, 2023. Appendix 1 Model Architecture, Sample Complexity, and Computation Cost Model Architectur...
2023
Reviewed August 10, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.