-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathreference
More file actions
2459 lines (2164 loc) · 99.3 KB
/
Copy pathreference
File metadata and controls
2459 lines (2164 loc) · 99.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@article{ju2024survey,
author = {Ju, Wei and Yi, Siyu and Wang, Yifan and Xiao, Zhiping and Mao, Zhengyang and Li, Hourun and Gu, Yiyang and Qin, Yifang and Yin, Nan and Wang, Senzhang and Liu, Xinwang and Luo, Xiao and Yu, Philip S. and Zhang, Ming},
title = {A Survey of Graph Neural Networks in Real world: Imbalance, Noise, Privacy and OOD Challenges},
journal = {arXiv preprint arXiv:2403.04468},
year = {2024}
}
@article{guan2024graph,
author = {Guan, Faqian and Zhu, Tianqing and Zhou, Wanlei and Choo, Kim-Kwang Raymond},
title = {Graph neural networks: a survey on the links between privacy and security},
journal = {Artificial Intelligence Review},
year = {2024},
volume = {57},
pages = {40},
doi = {10.1007/s10462-023-10656-4}
}
@inproceedings{zhang2024defense,
author = {Zhang, Sixiao and Yin, Hongzhi and Chen, Hongxu and Long, Cheng},
title = {Defense Against Model Extraction Attacks on Recommender Systems},
booktitle = {Proceedings of the 17th ACM International Conference on Web Search and Data Mining},
year = {2024},
pages = {949--957},
doi = {10.1145/3616855.3635751}
}
@article{zhang2024trustworthy,
author = {Zhang, He and Wu, Bang and Yuan, Xingliang and Pan, Shirui and Tong, Hanghang and Pei, Jian},
title = {Trustworthy Graph Neural Networks: Aspects, Methods and Trends},
journal = {Proceedings of the IEEE},
year = {2024},
doi = {10.1109/JPROC.2024.3369017}
}
@article{zhang2024adversarial,
author = {Zhang, Binchi and Dong, Yushun and Chen, Chen and Zhu, Yada and Luo, Minnan and Li, Jundong},
title = {Adversarial Attacks on Fairness of Graph Neural Networks},
journal = {arXiv preprint arXiv:2310.13822},
year = {2024}
}
@article{yang2024unveiling,
author = {Yang, Zhou and Zhao, Zhipeng and Wang, Chenyu and Shi, Jieke and Kim, Dongsun and Han, DongGyun and Lo, David},
title = {Unveiling Memorization in Code Models},
journal = {arXiv preprint arXiv:2308.09932},
year = {2024}
}
@article{bai2024special,
author = {Bai, Yang and Pei, Ge and Gu, Jindong and Yang, Yong and Ma, Xingjun},
title = {Special Characters Attack: Toward Scalable Training Data Extraction From Large Language Models},
journal = {arXiv preprint arXiv:2405.05990},
year = {2024}
}
@inproceedings{nazari2024llm,
author = {Nazari, Najmeh and Xiang, Furi and Fang, Chongzhou and Makrani, Hosein Mohammadi and Puri, Aditya and Patwari, Kartik and Sayadi, Hossein and Rafatirad, Setareh and Chuah, Chen-Nee and Homayoun, Houman},
title = {LLM-FIN: Large Language Models Fingerprinting Attack on Edge Devices},
booktitle = {2024 25th International Symposium on Quality Electronic Design (ISQED)},
year = {2024},
organization = {IEEE}
}
@inproceedings{liu2024model,
author = {Liu, Jialin and Wang, Han},
title = {Model Extraction Attack against On-device Deep Learning with Power Side Channel},
booktitle = {2024 25th International Symposium on Quality Electronic Design (ISQED)},
year = {2024},
organization = {IEEE}
}
@article{chen2024empirical,
author = {Chen, Jinyin and Ma, Minying and Ma, Haonan and Zheng, Haibin and Zhang, Jian},
title = {An Empirical Evaluation of the Data Leakage in Federated Graph Learning},
journal = {IEEE Transactions on Network Science and Engineering},
year = {2024}
}
@article{podhajski2024efficient,
author = {Podhajski, Marcin and Dubiński, Jan and Boenisch, Franziska and Dziedzic, Adam and Pregowska, Agnieszka and Michalak, Tomasz},
title = {Efficient Model-Stealing Attacks Against Inductive Graph Neural Networks},
journal = {arXiv preprint arXiv:2405.12295},
year = {2024}
}
@article{guan2024realistic,
author = {Guan, Faqian and Zhu, Tianqing and Tong, Hanjin and Zhou, Wanlei},
title = {A realistic model extraction attack against graph neural networks},
journal = {Knowledge-Based Systems},
year = {2024},
pages = {111657}
}
@article{you2024gnnguard,
author = {You, Xiaoyu and Jiang, Youhe and Xu, Jianwei and Zhang, Mi and Yang, Min},
title = {GNNGuard: A Fingerprinting Framework for Verifying Ownerships of Graph Neural Networks},
journal = {arXiv preprint arXiv:2403.14476},
year = {2024}
}
@article{pei2024privacy,
author = {Pei, Xinjun and Deng, Xiaoheng and Tian, Shengwei and Liu, Jianqing and Xue, Kaiping},
title = {Privacy-Enhanced Graph Neural Network for Decentralized Local Graphs},
journal = {IEEE Transactions on Information Forensics and Security},
year = {2024}
}
@article{bachina2024genie,
author = {Bachina, Venkata Sai Pranav and Gangwal, Ankit and Sharma, Aaryan Ajay and Sharma, Charu},
title = {GENIE: Watermarking Graph Neural Networks for Link Prediction},
journal = {arXiv preprint arXiv:2406.04805},
year = {2024}
}
@article{wang2024safety,
author = {Wang, Song and Dong, Yushun and Zhang, Binchi and Chen, Zihan and Fu, Xingbo and He, Yinhan and Shen, Cong and Zhang, Chuxu and Chawla, Nitesh V. and Li, Jundong},
title = {Safety in Graph Machine Learning: Threats and Safeguards},
journal = {arXiv preprint arXiv:2405.11034},
year = {2024}
}
@article{dai2024pregip,
author = {Dai, Enyan and Lin, Minhua and Wang, Suhang},
title = {PreGIP: Watermarking the Pretraining of Graph Neural Networks for Deep Intellectual Property Protection},
journal = {arXiv preprint arXiv:2402.04435},
year = {2024}
}
@article{guan2024large,
author = {Guan, Faqian and Zhu, Tianqing and Sun, Hui and Zhou, Wanlei and Yu, Philip S.},
title = {Large Language Models for Link Stealing Attacks Against Graph Neural Networks},
journal = {arXiv preprint arXiv:2406.16963},
year = {2024}
}
@article{wu2024link,
author = {Wu, Yixin and He, Xinlei and Berrang, Pascal and Humbert, Mathias and Backes, Michael and Gong, Neil Zhenqiang and Zhang, Yang},
title = {Link Stealing Attacks Against Inductive Graph Neural Networks},
journal = {arXiv preprint arXiv:2405.05784},
year = {2024}
}
@inproceedings{tramer2016stealing, author = {Tram\`{e}r, Florian and Zhang, Fan and Juels, Ari and Reiter, Michael K. and Ristenpart, Thomas}, title = {Stealing machine learning models via prediction APIs}, year = {2016}, isbn = {9781931971324}, publisher = {USENIX Association}, address = {USA}, booktitle = {Proceedings of the 25th USENIX Conference on Security Symposium}, pages = {601–618}, numpages = {18}, location = {Austin, TX, USA}, series = {SEC'16} }
@article{shukla2024stealing,
author = {Shukla, Shubhi and Alam, Manaar and Mitra, Pabitra and Mukhopadhyay, Debdeep},
title = {Stealing the Invisible: Unveiling Pre-Trained CNN Models through Adversarial Examples and Timing Side-Channels},
journal = {arXiv preprint arXiv:2402.11953},
year = {2024}
}
@inproceedings{papernot2017practical, author = {Papernot, Nicolas and McDaniel, Patrick and Goodfellow, Ian and Jha, Somesh and Celik, Z. Berkay and Swami, Ananthram}, title = {Practical Black-Box Attacks against Machine Learning}, year = {2017}, isbn = {9781450349444}, publisher = {Association for Computing Machinery}, address = {New York, NY, USA}, url = {https://doi.org/10.1145/3052973.3053009}, doi = {10.1145/3052973.3053009}, booktitle = {Proceedings of the 2017 ACM on Asia Conference on Computer and Communications Security}, pages = {506–519}, numpages = {14}, keywords = {machine learning, black-box attack, adversarial machine learning}, location = {Abu Dhabi, United Arab Emirates}, series = {ASIA CCS '17} }
@article{yang2024swifttheft,
author = {Yang, Wenbin and Gong, Xueluan and Chen, Yanjiao and Wang, Qian and Dong, Jianshuo},
title = {SwiftTheft: A Time-Efficient Model Extraction Attack Framework Against Cloud-Based Deep Neural Networks},
journal = {Chinese Journal of Electronics},
year = {2024}
}
@article{zhou2024inversion,
author = {Zhou, Shuai and Zhu, Tianqing and Ye, Dayong and Zhou, Wanlei and Zhao, Wei},
title = {Inversion-Guided Defense: Detecting Model Stealing Attacks by Output Inverting},
journal = {IEEE Transactions on Information Forensics and Security},
year = {2024}
}
@inproceedings{yoshida2024model,
author = {Yoshida, Kota and Fujino, Takeshi},
title = {Model Extraction Attack Without Natural Images},
booktitle = {Applied Cryptography and Network Security Workshops},
year = {2024},
organization = {Springer}
}
@article{liang2024defending,
author = {Liang, Chuang and Huang, Jie and Zhang, Zeping and Zhang, Shuaishuai},
title = {Defending against model extraction attacks with OOD feature learning and decision boundary confusion},
journal = {Computers \& Security},
year = {2024},
pages = {103563}
}
@inproceedings{xie2024same,
author = {Xie, Yi and Zhang, Jie and Zhao, Shiqian and Zhang, Tianwei and Chen, Xiaofeng},
title = {SAME: Sample Reconstruction against Model Extraction Attacks},
booktitle = {Proceedings of the AAAI Conference on Artificial Intelligence},
year = {2024}
}
@article{liu2024model,
author = {Liu, Xinjing and Liu, Taifeng and Yang, Hao and Dong, Jiakang and Ying, Zuobin and Ma, Zhuo},
title = {Model Stealing Detection for IoT Services Based on Multi-Dimensional Features},
journal = {IEEE Internet of Things Journal},
year = {2024}
}
@inproceedings{ren2024demistify,
author = {Ren, Pengcheng and Zuo, Chaoshun and Liu, Xiaofeng and Diao, Wenrui and Zhao, Qingchuan and Guo, Shanqing},
title = {DEMISTIFY: Identifying On-device Machine Learning Models Stealing and Reuse Vulnerabilities in Mobile Apps},
booktitle = {Proceedings of the IEEE/ACM 46th International Conference on Software Engineering},
year = {2024},
pages = {1--13}
}
@article{han2024exploring,
author = {Han, Dong and Babaei, Reza and Zhao, Shangqing and Cheng, Samuel},
title = {Exploring the Efficacy of Learning Techniques in Model Extraction Attacks on Image Classifiers: A Comparative Study},
journal = {Applied Sciences},
volume = {14},
number = {9},
pages = {3785},
year = {2024}
}
@inproceedings{jindal2024army,
author = {Jindal, Akshit and Goyal, Vikram and Anand, Saket and Arora, Chetan},
title = {Army of Thieves: Enhancing Black-Box Model Extraction via Ensemble Based Sample Selection},
booktitle = {Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision},
year = {2024},
pages = {7575--7584}
}
@article{gurve2024misguide,
author = {Gurve, Mahendra and Behera, Sankar and Ahlawat, Satyadev and Prasad, Yamuna},
title = {MisGUIDE : Defense Against Data-Free Deep Learning Model Extraction},
journal = {arXiv preprint arXiv:2403.18580},
year = {2024}
}
@inproceedings{meyers2024trained,
author = {Meyers, Vincent and Hefenbrock, Michael and Gnad, Dennis and Tahoori, Mehdi},
title = {Trained to Leak: Hiding Trojan Side-Channels in Neural Network Weights},
booktitle = {2024 IEEE International Symposium on Hardware Oriented Security and Trust (HOST)},
year = {2024},
organization = {IEEE}
}
@inproceedings{xu2024stealthy,
author = {Xu, Xiaoyang and Yang, Mengda and Yi, Wenzhe and Li, Ziang and Wang, Juan and Hu, Hongxin and Zhuang, Yong and Liu, Yaxin},
title = {A Stealthy Wrongdoer: Feature-Oriented Reconstruction Attack against Split Learning},
booktitle = {Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition},
year = {2024}
}
@article{yilmaz2024adversarial,
author = {Yilmaz, Eda and Keles, Hacer Yalim},
title = {Adversarial Sparse Teacher: Defense Against Distillation-Based Model Stealing Attacks Using Adversarial Examples},
journal = {arXiv preprint arXiv:2403.05181},
year = {2024}
}
@inproceedings{liu2024construct,
author = {Liu, Yu-Hsin and Shen, Yu-Chun and Chen, Hsi-Wen and Chen, Ming-Syan},
title = {Construct a Secure CNN Against Gradient Inversion Attack},
booktitle = {Advances in Knowledge Discovery and Data Mining},
year = {2024},
organization = {Springer}
}
@article{jiang2024comprehensive,
author = {Jiang, Wenbo and Li, Hongwei and Xu, Guowen and Zhang, Tianwei and Lu, Rongxing},
title = {A Comprehensive Defense Framework Against Model Extraction Attacks},
journal = {IEEE Transactions on Dependable and Secure Computing},
year = {2024}
}
@article{sha2024prompt,
author = {Sha, Zeyang and Zhang, Yang},
title = {Prompt Stealing Attacks Against Large Language Models},
journal = {arXiv preprint arXiv:2402.12959},
year = {2024}
}
@inproceedings{zhang2024poisoning,
author = {Zhang, Haitian and Hua, Guang and Wang, Xinya and Jiang, Hao and Yang, Wen},
title = {Poisoning-Free Defense Against Black-Box Model Extraction},
booktitle = {ICASSP 2024 - 2024 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP)},
year = {2024},
publisher = {IEEE},
doi = {10.1109/ICASSP49357.2024.10447550}
}
@article{zhu2024reliable,
author = {Zhu, Hongyu and Liang, Sichu and Hu, Wentao and Li, Fangqi and Jia, Ju and Wang, Shilin},
title = {Reliable Model Watermarking: Defending Against Theft without Compromising on Evasion},
journal = {arXiv preprint arXiv:2404.13518},
year = {2024}
}
@inproceedings{wu2024efficient,
author = {Wu, Dong-Dong and Fu, Chilin and Wu, Weichang and Xia, Wenwen and Zhang, Xiaolu and Zhou, Jun and Zhang, Min-Ling},
title = {Efficient Model Stealing Defense with Noise Transition Matrix},
booktitle = {Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
year = {2024},
pages = {16675-16684}
}
@article{zhang2024making,
author = {Zhang, Chenlong and Luo, Senlin and Pan, Limin and Lu, Chuan and Zhang, Zhao},
title = {Making models more secure: An efficient model stealing detection method},
journal = {Computers and Electrical Engineering},
volume = {118},
pages = {109223},
year = {2024},
doi = {10.1016/j.compeleceng.2024.109223}
}
@article{fu2024quantumleak,
author = {Fu, Zhenxiao and Yang, Min and Chu, Cheng and Xu, Yilun and Huang, Gang and Chen, Fan},
title = {QuantumLeak: Stealing Quantum Neural Networks from Cloud-based NISQ Machines},
journal = {arXiv preprint arXiv:2403.10790},
year = {2024}
}
@article{feng2024privacy,
author = {Feng, Shanglun and Tramèr, Florian},
title = {Privacy Backdoors: Stealing Data with Corrupted Pretrained Models},
journal = {arXiv preprint arXiv:2404.00473},
year = {2024}
}
@article{gao2024augsteal,
author = {Gao, Lijun and Liu, Wenjun and Liu, Kai and Wu, Jiehong},
title = {AugSteal: Advancing Model Steal With Data Augmentation in Active Learning Frameworks},
journal = {IEEE Transactions on Information Forensics and Security},
year = {2024},
volume = {19},
pages = {3102-3116},
doi = {10.1109/TIFS.2024.3367452}
}
@article{li2024translinkguard,
author = {Li, Qinfeng and Shen, Zhiqiang and Qin, Zhenghan and Xie, Yangfan and Zhang, Xuhong and Du, Tianyu and Yin, Jianwei},
title = {TransLinkGuard: Safeguarding Transformer Models Against Model Stealing in Edge Deployment},
journal = {arXiv preprint arXiv:2404.11121},
year = {2024}
}
@inproceedings{mi2024towards,
author = {Mi, Di and Zhang, Yanjun and Zhang, Leo Yu and Hu, Shengshan and Zhong, Qi and Yuan, Haizhuan and Pan, Shirui},
title = {Towards Model Extraction Attacks in GAN-Based Image Translation via Domain Shift Mitigation},
booktitle = {Proceedings of the AAAI Conference on Artificial Intelligence},
volume = {38},
number = {5},
pages = {6178-6186},
year = {2024}
}
@article{ezzeddine2024knowledge,
author = {Ezzeddine, Fatima and Ayoub, Omran and Giordano, Silvia},
title = {Knowledge Distillation-Based Model Extraction Attack using Private Counterfactual Explanations},
journal = {arXiv preprint arXiv:2404.03348},
year = {2024}
}
@article{spingarn2024stealing,
author = {Spingarn-Eliezer, Nurit and Michaeli, Tomer},
title = {Stealing Image-to-Image Translation Models With a Single Query},
journal = {arXiv preprint arXiv:2406.00828},
year = {2024}
}
@article{sun2024two,
author = {Sun, Hui and Zhu, Tianqing and Chang, Wenhan and Zhou, Wanlei},
title = {A two-stage model extraction attack on GANs with a small collected dataset},
journal = {Computers \& Security},
volume = {138},
pages = {103685},
year = {2024},
doi = {10.1016/j.cose.2023.103685}
}
@article{zhang2024attackg,
author = {Zhang, Yongheng and Du, Tingwen and Ma, Yunshan and Wang, Xiang and Xie, Yi and Yang, Guozheng and Lu, Yuliang and Chang, Ee-Chien},
title = {AttacKG+:Boosting Attack Knowledge Graph Construction with Large Language Models},
journal = {arXiv preprint arXiv:2405.04753},
year = {2024}
}
@article{sun2024layer,
author = {Sun, Yidan and Jiang, Guiyuan and Liu, Xinwang and He, Peilan and Lam, Siew-Kei},
title = {Layer Sequence Extraction of Optimized DNNs Using Side-Channel Information Leaks},
journal = {IEEE Transactions on Computer-Aided Design of Integrated Circuits and Systems},
year = {2024},
volume = {43},
number = {6},
pages = {2605-2616},
doi = {10.1109/TCAD.2024.3368938}
}
@article{guo2024cold,
author = {Guo, Xingang and Yu, Fangxu and Zhang, Huan and Qin, Lianhui and Hu, Bin},
title = {COLD-Attack: Jailbreaking LLMs with Stealthiness and Controllability},
journal = {arXiv preprint arXiv:2402.08679},
year = {2024}
}
@article{shen2024prompt,
author = {Shen, Xinyue and Qu, Yiting and Backes, Michael and Zhang, Yang},
title = {Prompt Stealing Attacks Against Text-to-Image Generation Models},
journal = {arXiv preprint arXiv:2302.09923},
year = {2024}
}
@article{li2024just,
author = {Li, Yuxuan and Maharana, Sarthak Kumar and Guo, Yunhui},
title = {Not Just Change the Labels, Learn the Features: Watermarking Deep Neural Networks with Multi-View Data},
journal = {arXiv preprint arXiv:2403.10663},
year = {2024}
}
@article{chen2024queen,
author = {Chen, Huajie and Zhu, Tianqing and Zhang, Lefeng and Liu, Bo and Wang, Derui and Zhou, Wanlei and Xue, Minhui},
title = {QUEEN: Query Unlearning against Model Extraction},
journal = {arXiv preprint arXiv:2407.01251},
year = {2024}
}
@inproceedings{lin2024bident,
author = {Lin, Hsiao-Ying and Fang, Chengfang and Shi, Jie},
title = {Bident Structure for Neural Network Model Protection},
booktitle = {Proceedings of the 9th International Conference on Information Systems Security and Privacy - ICISSP},
year = {2024},
pages = {377-384},
doi = {10.5220/0008923403770384}
}
@article{yan2023explanation,
author = {Yan, Anli and Huang, Teng and Ke, Lishan and Liu, Xiaozhang and Chen, Qi and Dong, Changyu},
title = {Explanation leaks: Explanation-guided model extraction attacks},
journal = {Information Sciences},
year = {2023},
url = {https://www.sciencedirect.com/science/article/pii/S002002552300316X}
}
@article{liu2023membership,
author = {Liu, Lan and Wang, Yi and Liu, Gaoyang and Peng, Kai and Wang, Chen},
title = {Membership Inference Attacks Against Machine Learning Models via Prediction Sensitivity},
journal = {IEEE Transactions on Dependable and Secure Computing},
year = {2023},
url = {https://ieeexplore.ieee.org/document/9793586}
}
@article{dong2023fairness,
author = {Dong, Yushun and Ma, Jing and Wang, Song and Chen, Chen and Li, Jundong},
title = {Fairness in Graph Mining: A Survey},
journal = {IEEE Transactions on Knowledge and Data Engineering},
year = {2023},
url = {http://arxiv.org/abs/2204.09888}
}
@article{sun2023adversarial,
author = {Sun, Lichao and Dou, Yingtong and Yang, Carl and Zhang, Kai and Wang, Ji and Yu, Philip S. and He, Lifang and Li, Bo},
title = {Adversarial Attack and Defense on Graph Data: A Survey},
journal = {IEEE Transactions on Knowledge and Data Engineering},
year = {2023},
url = {https://ieeexplore.ieee.org/abstract/document/9878092}
}
@article{birch2023model,
author = {Birch, Lewis and Hackett, William and Trawicki, Stefan and Suri, Neeraj and Garraghan, Peter},
title = {Model Leeching: An Extraction Attack Targeting LLMs},
journal = {arXiv preprint arXiv:2309.10544},
year = {2023},
url = {http://arxiv.org/abs/2309.10544}
}
@article{patil2023can,
author = {Patil, Vaidehi and Hase, Peter and Bansal, Mohit},
title = {Can Sensitive Information Be Deleted From LLMs? Objectives for Defending Against Extraction Attacks},
journal = {arXiv preprint arXiv:2309.17410},
year = {2023},
url = {http://arxiv.org/abs/2309.17410}
}
@article{li2023theoretical,
author = {Li, Chenyang and Song, Zhao and Wang, Weixin and Yang, Chiwun},
title = {A Theoretical Insight into Attack and Defense of Gradient Leakage in Transformer},
journal = {arXiv preprint arXiv:2311.13624},
year = {2023},
url = {http://arxiv.org/abs/2311.13624}
}
@inproceedings{duan2023are,
author = {Duan, Jinhao and Kong, Fei and Wang, Shiqi and Shi, Xiaoshuang and Xu, Kaidi},
title = {Are Diffusion Models Vulnerable to Membership Inference Attacks?},
booktitle = {Proceedings of the 40th International Conference on Machine Learning},
year = {2023},
url = {https://proceedings.mlr.press/v202/duan23b.html}
}
@article{zhang2023ethicist,
author = {Zhang, Zhexin and Wen, Jiaxin and Huang, Minlie},
title = {Ethicist: Targeted Training Data Extraction Through Loss Smoothed Soft Prompting and Calibrated Confidence Estimation},
journal = {arXiv preprint arXiv:2307.04401},
year = {2023},
url = {http://arxiv.org/abs/2307.04401}
}
@article{li2023model,
author = {Li, Jingtao and Rakin, Adnan Siraj and Chen, Xing and Yang, Li and He, Zhezhi and Fan, Deliang and Chakrabarti, Chaitali},
title = {Model Extraction Attacks on Split Federated Learning},
journal = {arXiv preprint arXiv:2303.08581},
year = {2023},
url = {http://arxiv.org/abs/2303.08581}
}
@inproceedings{boenisch2023when,
author = {Boenisch, Franziska and Dziedzic, Adam and Schuster, Roei and Shamsabadi, Ali Shahin and Shumailov, Ilia and Papernot, Nicolas},
title = {When the Curious Abandon Honesty: Federated Learning Is Not Private},
booktitle = {2023 IEEE 8th European Symposium on Security and Privacy (EuroS\&P)},
year = {2023},
url = {https://ieeexplore.ieee.org/abstract/document/10190537}
}
@article{waheed2023grove,
author = {Waheed, Asim and Duddu, Vasisht and Asokan, N.},
title = {GrOVe: Ownership Verification of Graph Neural Networks using Embeddings},
journal = {arXiv preprint arXiv:2304.08566},
year = {2023},
url = {http://arxiv.org/abs/2304.08566}
}
@article{wang2023making,
author = {Wang, Haiming and Zhang, Zhikun and Chen, Min and He, Shibo},
title = {Making Watermark Survive Model Extraction Attacks in Graph Neural Networks},
year = {2023}
}
@article{zhang2023survey,
author = {Zhang, Yi and Zhao, Yuying and Li, Zhaoqing and Cheng, Xueqi and Wang, Yu and Kotevska, Olivera and Yu, Philip S. and Derr, Tyler},
title = {A Survey on Privacy in Graph Neural Networks: Attacks, Preservation, and Applications},
journal = {arXiv preprint arXiv:2308.16375},
year = {2023},
url = {http://arxiv.org/abs/2308.16375}
}
@article{dai2023comprehensive,
author = {Dai, Enyan and Zhao, Tianxiang and Zhu, Huaisheng and Xu, Junjie and Guo, Zhimeng and Liu, Hui and Tang, Jiliang and Wang, Suhang},
title = {A Comprehensive Survey on Trustworthy Graph Neural Networks: Privacy, Robustness, Fairness, and Explainability},
journal = {arXiv preprint arXiv:2204.08570},
year = {2023},
url = {http://arxiv.org/abs/2204.08570}
}
@inproceedings{zhang2023extracting,
author = {Zhang, Chenhan and Wang, Weiqi and Yu, James J.Q. and Yu, Shui},
title = {Extracting Privacy-Preserving Subgraphs in Federated Graph Learning using Information Bottleneck},
booktitle = {Proceedings of the 2023 ACM Asia Conference on Computer and Communications Security},
year = {2023},
url = {https://doi.org/10.1145/3579856.3595791}
}
@article{zhang2023plot,
author = {Zhang, Boyang and He, Xinlei and Shen, Yun and Wang, Tianhao and Zhang, Yang},
title = {A Plot is Worth a Thousand Words: Model Information Stealing Attacks via Scientific Plots},
journal = {arXiv preprint arXiv:2302.11982},
year = {2023},
url = {http://arxiv.org/abs/2302.11982}
}
@article{sha2023cant,
author = {Sha, Zeyang and He, Xinlei and Yu, Ning and Backes, Michael and Zhang, Yang},
title = {Can't Steal? Cont-Steal! Contrastive Stealing Attacks Against Image Encoders},
journal = {arXiv preprint arXiv:2201.07513},
year = {2023},
url = {http://arxiv.org/abs/2201.07513}
}
@article{olatunji2023private,
author = {Olatunji, Iyiola E. and Rathee, Mandeep and Funke, Thorben and Khosla, Megha},
title = {Private Graph Extraction via Feature Explanations},
journal = {Proceedings on Privacy Enhancing Technologies},
year = {2023},
url = {http://arxiv.org/abs/2206.14724}
}
@inproceedings{sajadmanesh2023gap,
author = {Sajadmanesh, Sina and Shamsabadi, Ali Shahin and Bellet, Aur\'{e}lien and Gatica-Perez, Daniel},
title = {{GAP}: Differentially Private Graph Neural Networks with Aggregation Perturbation},
booktitle = {32nd USENIX Security Symposium (USENIX Security 23)},
year = {2023},
url = {https://www.usenix.org/conference/usenixsecurity23/presentation/sajadmanesh}
}
@article{zhu2023model,
author = {Zhu, Zhihao and Wu, Chenwang and Fan, Rui and Yang, Yi and Lian, Defu and Chen, Enhong},
title = {Model Stealing Attack against Graph Classification with Authenticity, Uncertainty and Diversity},
journal = {arXiv preprint arXiv:2312.10943},
year = {2023},
url = {http://arxiv.org/abs/2312.10943}
}
@inproceedings{karmakar2023marich,
author = {Karmakar, Pratik and Basu, Debabrota},
title = {Marich: A Query-efficient Distributionally Equivalent Model Extraction Attack},
booktitle = {Advances in Neural Information Processing Systems},
year = {2023},
url = {https://proceedings.neurips.cc/paper_files/paper/2023/hash/e5440ffceaf4831b5f98652b8a27ffde-Abstract-Conference.html}
}
@inproceedings{wang2023defending,
author = {Wang, Zhenyi and Shen, Li and Liu, Tongliang and Duan, Tiehang and Zhu, Yanjun and Zhan, Donglin and Doermann, David and Gao, Mingchen},
title = {Defending against Data-Free Model Extraction by Distributionally Robust Defensive Training},
booktitle = {Advances in Neural Information Processing Systems},
year = {2023},
url = {https://proceedings.neurips.cc/paper_files/paper/2023/hash/0207c9ea9faf66c6e892c3fa3c167b75-Abstract-Conference.html}
}
@inproceedings{tang2023exposing,
author = {Tang, Ruixiang and Jin, Hongye and Du, Mengnan and Wigington, Curtis and Jain, Rajiv and Hu, Xia},
title = {Exposing Model Theft: A Robust and Transferable Watermark for Thwarting Model Extraction Attacks},
booktitle = {Proceedings of the 32nd ACM International Conference on Information and Knowledge Management},
year = {2023},
url = {https://doi.org/10.1145/3583780.3615211}
}
@article{oliynyk2023know,
author = {Oliynyk, Daryna and Mayer, Rudolf and Rauber, Andreas},
title = {I Know What You Trained Last Summer: A Survey on Stealing Machine Learning Models and Defences},
journal = {ACM Computing Surveys},
year = {2023},
url = {https://doi.org/10.1145/3595292}
}
@article{li2023defending,
author = {Li, Dawei and Liu, Di and Guo, Ying and Ren, Yangkun and Su, Jieyu and Liu, Jianwei},
title = {Defending against model extraction attacks with physical unclonable function},
journal = {Information Sciences},
year = {2023},
url = {https://www.sciencedirect.com/science/article/pii/S0020025523001147}
}
@inproceedings{guo2023isolation,
author = {Guo, Jun and Zheng, Xingyu and Liu, Aishan and Liang, Siyuan and Xiao, Yisong and Wu, Yichao and Liu, Xianglong},
title = {Isolation and Induction: Training Robust Deep Neural Networks against Model Stealing Attacks},
booktitle = {Proceedings of the 31st ACM International Conference on Multimedia},
year = {2023},
url = {https://doi.org/10.1145/3581783.3612092}
}
@article{zhang2023apmsa,
author = {Zhang, Jiliang and Peng, Shuang and Gao, Yansong and Zhang, Zhi and Hong, Qinghui},
title = {APMSA: Adversarial Perturbation Against Model Stealing Attacks},
journal = {IEEE Transactions on Information Forensics and Security},
year = {2023},
url = {https://ieeexplore.ieee.org/abstract/document/10049136}
}
@inproceedings{chen2023ddae,
author = {Chen, Yanjiao and Guan, Rui and Gong, Xueluan and Dong, Jianshuo and Xue, Meng},
title = {D-DAE: Defense-Penetrating Model Extraction Attacks},
booktitle = {2023 IEEE Symposium on Security and Privacy (SP)},
year = {2023},
url = {https://ieeexplore.ieee.org/abstract/document/10179406}
}
@article{szyller2023good,
author = {Szyller, Sebastian and Duddu, Vasisht and Gr\"{o}ndahl, Tommi and Asokan, N.},
title = {Good Artists Copy, Great Artists Steal: Model Extraction Attacks Against Image Translation Models},
journal = {arXiv preprint arXiv:2104.12623},
year = {2023},
url = {http://arxiv.org/abs/2104.12623}
}
@inproceedings{tan2023deep,
author = {Tan, Jingxuan and Zhong, Nan and Qian, Zhenxing and Zhang, Xinpeng and Li, Sheng},
title = {Deep Neural Network Watermarking against Model Extraction Attack},
booktitle = {Proceedings of the 31st ACM International Conference on Multimedia},
year = {2023},
url = {https://doi.org/10.1145/3581783.3612515}
}
@inproceedings{dubinski2023bucks,
author = {Dubi\'{n}ski, Jan and Pawlak, Stanis{\l}aw and Boenisch, Franziska and Trzci\'{n}ski, Tomasz and Dziedzic, Adam},
title = {Bucks for Buckets (B4B): Active Defenses Against Stealing Encoders},
booktitle = {Advances in Neural Information Processing Systems},
year = {2023},
url = {https://proceedings.neurips.cc/paper_files/paper/2023/hash/ad1efab57a04d93f097e7fbb2d4fc054-Abstract-Conference.html}
}
@article{oksuz2023autolycus,
author = {Oksuz, Abdullah Caglar and Halimi, Anisa and Ayday, Erman},
title = {AUTOLYCUS: Exploiting Explainable AI (XAI) for Model Extraction Attacks against White-Box Models},
journal = {arXiv preprint arXiv:2302.02162},
year = {2023},
url = {http://arxiv.org/abs/2302.02162}
}
@inproceedings{correia2018copycat,
title={Copycat CNN: Stealing Knowledge by Persuading Confession with Random Non-Labeled Data},
author={Correia-Silva, Jacson Rodrigues and Berriel, Rodrigo F and Badue, Claudine and de Souza, Alberto F and Oliveira-Santos, Thiago},
booktitle={2018 International Joint Conference on Neural Networks (IJCNN)},
pages={1--8},
year={2018},
organization={IEEE},
doi={10.1109/IJCNN.2018.8489592}
}
@article{yang2023efficient,
author = {Yang, Panpan and Wu, Qinglong and Zhang, Xinming},
title = {Efficient Model Extraction by Data Set Stealing, Balancing, and Filtering},
journal = {IEEE Internet of Things Journal},
year = {2023},
url = {https://ieeexplore.ieee.org/abstract/document/10214537}
}
@article{ma2023divtheft,
author = {Ma, Zhuo and Liu, Xinjing and Liu, Yang and Liu, Ximeng and Qin, Zhan and Ren, Kui},
title = {DivTheft: An Ensemble Model Stealing Attack by Divide-and-Conquer},
journal = {IEEE Transactions on Dependable and Secure Computing},
year = {2023},
url = {https://ieeexplore.ieee.org/abstract/document/10007048}
}
@article{zhang2023categorical,
author = {Zhang, Haitian and Hua, Guang and Wang, Xinya and Jiang, Hao and Yang, Wen},
title = {Categorical Inference Poisoning: Verifiable Defense Against Black-Box DNN Model Stealing Without Constraining Surrogate Data and Query Times},
journal = {IEEE Transactions on Information Forensics and Security},
year = {2023},
url = {https://ieeexplore.ieee.org/abstract/document/10042038}
}
@article{lederer2023identifying,
author = {Lederer, Isabell and Mayer, Rudolf and Rauber, Andreas},
title = {Identifying Appropriate Intellectual Property Protection Mechanisms for Machine Learning Models: A Systematization of Watermarking, Fingerprinting, Model Access, and Attacks},
journal = {IEEE Transactions on Neural Networks and Learning Systems},
year = {2023},
url = {https://ieeexplore.ieee.org/document/10143370}
}
@article{hu2022membership,
author = {Hu, Hongsheng and Salcic, Zoran and Sun, Lichao and Dobbie, Gillian and Yu, Philip S. and Zhang, Xuyun},
title = {Membership Inference Attacks on Machine Learning: A Survey},
journal = {ACM Computing Surveys},
year = {2022},
url = {https://doi.org/10.1145/3523273}
}
@article{parikh2022canary,
author = {Parikh, Rahil and Dupuy, Christophe and Gupta, Rahul},
title = {Canary Extraction in Natural Language Understanding Models},
journal = {arXiv preprint arXiv:2203.13920},
year = {2022},
url = {http://arxiv.org/abs/2203.13920}
}
@article{huang2022are,
author = {Huang, Jie and Shao, Hanyin and Chang, Kevin Chen-Chuan},
title = {Are Large Pre-Trained Language Models Leaking Your Personal Information?},
journal = {arXiv preprint arXiv:2205.12628},
year = {2022},
url = {http://arxiv.org/abs/2205.12628}
}
@article{zhang2022text,
author = {Zhang, Ruisi and Hidano, Seira and Koushanfar, Farinaz},
title = {Text Revealer: Private Text Reconstruction via Model Inversion Attacks against Transformers},
journal = {arXiv preprint arXiv:2209.10505},
year = {2022},
url = {http://arxiv.org/abs/2209.10505}
}
@inproceedings{lee2022precise,
author = {Lee, Younghan and Jun, Sohee and Cho, Yungi and Han, Woorim and Moon, Hyungon and Paek, Yunheung},
title = {Precise Extraction of Deep Learning Models via Side-Channel Attacks on Edge/Endpoint Devices},
booktitle = {Computer Security -- ESORICS 2022},
year = {2022}
}
@article{lyu2022privacy,
author = {Lyu, Lingjuan and Yu, Han and Ma, Xingjun and Chen, Chen and Sun, Lichao and Zhao, Jun and Yang, Qiang and Yu, Philip S.},
title = {Privacy and Robustness in Federated Learning: Attacks and Defenses},
journal = {IEEE Transactions on Neural Networks and Learning Systems},
year = {2022},
url = {https://ieeexplore.ieee.org/abstract/document/9945997}
}
@article{wainakh2022user,
author = {Wainakh, Aidmar and Ventola, Fabrizio and M\"{u}{\ss}ig, Till and Keim, Jens and Cordero, Carlos Garcia and Zimmer, Ephraim and Grube, Tim and Kersting, Kristian and M\"{u}hlh\"{a}user, Max},
title = {User-Level Label Leakage from Gradients in Federated Learning},
journal = {arXiv preprint arXiv:2105.09369},
year = {2022},
url = {http://arxiv.org/abs/2105.09369}
}
@article{xu2022student,
author = {Xu, Qiongkai and He, Xuanli and Lyu, Lingjuan and Qu, Lizhen and Haffari, Gholamreza},
title = {Student Surpasses Teacher: Imitation Attack for Black-Box NLP APIs},
journal = {arXiv preprint arXiv:2108.13873},
year = {2022},
url = {http://arxiv.org/abs/2108.13873}
}
@inproceedings{zhu2022effect,
author = {Zhu, Yunzhe and Tan, Yusong and Wu, Qingbo},
title = {Effect Verification of a Feature Extraction Method Based on Graph Convolutional Networks},
booktitle = {2022 International Conference on Machine Learning, Cloud Computing and Intelligent Mining (MLCCIM)},
year = {2022},
publisher = {IEEE},
doi = {10.1109/MLCCIM55361.2022.9955218}
}
@inproceedings{rakin2022deepsteal,
author = {Rakin, Adnan Siraj and Chowdhuryy, Md Hafizul Islam and Yao, Fan and Fan, Deliang},
title = {DeepSteal: Advanced Model Extractions Leveraging Efficient Weight Stealing in Memories},
booktitle = {2022 IEEE Symposium on Security and Privacy (SP)},
year = {2022},
pages = {2193--2210},
publisher = {IEEE},
doi = {10.1109/SP46214.2022.9833743}
}
@inproceedings{xie2022game,
author = {Xie, Yi and Huang, Mengdie and Zhang, Xiaoyu and Dong, Changyu and Susilo, Willy and Chen, Xiaofeng},
title = {GAME: Generative-Based Adaptive Model Extraction Attack},
booktitle = {Computer Security – ESORICS 2022},
year = {2022},
publisher = {Springer}
}
@inproceedings{wang2022black,
author = {Wang, Yixu and Li, Jie and Liu, Hong and Wang, Yan and Wu, Yongjian and Huang, Feiyue and Ji, Rongrong},
title = {Black-Box Dissector: Towards Erasing-Based Hard-Label Model Stealing Attack},
booktitle = {Computer Vision – ECCV 2022},
year = {2022},
publisher = {Springer}
}
@article{yan2022monitoring,
author = {Yan, Haonan and Li, Xiaoguang and Li, Hui and Li, Jiamin and Sun, Wenhai and Li, Fenghua},
title = {Monitoring-Based Differential Privacy Mechanism Against Query Flooding-Based Model Extraction Attack},
journal = {IEEE Transactions on Dependable and Secure Computing},
year = {2022},
volume = {19},
number = {5},
pages = {3278--3292},
doi = {10.1109/TDSC.2021.3067467}
}
@article{Yan2022TowardsEM,
title={Towards explainable model extraction attacks},
author={Anli Yan and Ruitao Hou and Xiaozhang Liu and Hongyang Yan and Teng Huang and Xianmin Wang},
journal={International Journal of Intelligent Systems},
year={2022},
volume={37},
pages={9936 - 9956},
url={https://api.semanticscholar.org/CorpusID:252169617}
}
@inproceedings{liang2022imitated,
author = {Liang, Siyuan and Liu, Aishan and Liang, Jiawei and Li, Longkang and Bai, Yang and Cao, Xiaochun},
title = {Imitated Detectors: Stealing Knowledge of Black-box Object Detectors},
booktitle = {Proceedings of the 30th ACM International Conference on Multimedia},
year = {2022},
pages = {6090--6099},
publisher = {ACM},
doi = {10.1145/3503161.3548416}
}
@inproceedings{wu2022model,
author = {Wu, Yixin and Wen, Rui and Backes, Michael and Yu, Ning and Zhang, Yang},
title = {Model Stealing Attacks Against Vision-Language Models},
booktitle = {Advances in Neural Information Processing Systems},
year = {2022},
publisher = {Curran Associates, Inc.}
}
@article{yuan2022es,
author = {Yuan, Xiaoyong and Ding, Leah and Zhang, Lan and Li, Xiaolin and Wu, Dapeng Oliver},
title = {ES Attack: Model Stealing Against Deep Neural Networks Without Data Hurdles},
journal = {IEEE Transactions on Emerging Topics in Computational Intelligence},
year = {2022},
volume = {6},
number = {4},
pages = {790--801},
doi = {10.1109/TETCI.2022.3161087}
}
@inproceedings{li2022data,
author = {Li, Huiyu and Ayache, Nicholas and Delingette, Hervé},
title = {Data Stealing Attack on Medical Images: Is It Safe to Export Networks from Data Lakes?},
booktitle = {Distributed, Collaborative, and Federated Learning, and Affordable AI and Healthcare for Resource Diverse Global Health},
year = {2022},
publisher = {Springer}
}
@inproceedings{sanyal2022towards,
author = {Sanyal, Sunandini and Addepalli, Sravanti and Babu, R. Venkatesh},
title = {Towards Data-Free Model Stealing in a Hard Label Setting},
booktitle = {Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
year = {2022},
pages = {20543--20552}
}
@inproceedings{khaled2022careful,
author = {Khaled, Kacem and Nicolescu, Gabriela and De Magalhães, Felipe Gohring},
title = {Careful What You Wish For: on the Extraction of Adversarially Trained Models},
booktitle = {2022 19th Annual International Conference on Privacy, Security \& Trust (PST)},
year = {2022},
pages = {1--10},
publisher = {IEEE},
doi = {10.1109/PST55215.2022.9851981}
}
@article{he2022towards,
author = {He, Yingzhe and Meng, Guozhu and Chen, Kai and Hu, Xingbo and He, Jinwen},
title = {Towards Security Threats of Deep Learning Systems: A Survey},
journal = {IEEE Transactions on Software Engineering},
year = {2022},
volume = {48},
number = {11},
pages = {4203--4220},
doi = {10.1109/TSE.2020.3038641}
}
@inproceedings{wang2022enhance,
author = {Wang, Yixu and Lin, Xianming},
title = {Enhance Model Stealing Attack via Label Refining},
booktitle = {2022 7th International Conference on Intelligent Computing and Signal Processing (ICSP)},
year = {2022},
pages = {930--934},
publisher = {IEEE},
doi = {10.1109/ICSP54964.2022.9778562}
}
@article{liu2022stolenencoder,
author = {Liu, Yupei and Jia, Jinyuan and Liu, Hongbin and Gong, Neil Zhenqiang},
title = {StolenEncoder: Stealing Pre-trained Encoders in Self-supervised Learning},
journal = {arXiv preprint arXiv:2201.05889},
year = {2022}
}
@article{wang2022demystifying,
author = {Wang, Zhendong and Zeng, Xiaoming and Tang, Xulong and Zhang, Danfeng and Hu, Xing and Hu, Yang},
title = {Demystifying Arch-hints for Model Extraction: An Attack in Unified Memory System},
journal = {arXiv preprint arXiv:2208.13720},
year = {2022}
}
@article{breier2022sniff,
author = {Breier, Jakub and Jap, Dirmanto and Hou, Xiaolu and Bhasin, Shivam and Liu, Yang},
title = {SNIFF: Reverse Engineering of Neural Networks With Fault Attacks},
journal = {IEEE Transactions on Reliability},
year = {2022},
volume = {71},
number = {1},
pages = {82--93},
doi = {10.1109/TR.2021.3105609}
}
@inproceedings{dubey2022high,
author = {Dubey, Anuj and Karabulut, Emre and Awad, Amro and Aysu, Aydin},
title = {High-Fidelity Model Extraction Attacks via Remote Power Monitors},
booktitle = {2022 IEEE 4th International Conference on Artificial Intelligence Circuits and Systems (AICAS)},
year = {2022},
pages = {207--210},
publisher = {IEEE},
doi = {10.1109/AICAS54282.2022.9869973}
}
@article{chakraborty2022dynamarks,
author = {Chakraborty, Abhishek and Xing, Daniel and Liu, Yuntao and Srivastava, Ankur},
title = {DynaMarks: Defending Against Deep Learning Model Extraction Using Dynamic Watermarking},
journal = {arXiv preprint arXiv:2207.13321},
year = {2022}
}
@inproceedings{liu2022seinspect,
author = {Liu, Xinjing and Ma, Zhuo and Liu, Yang and Qin, Zhan and Zhang, Junwei and Wang, Zhuzhu},
title = {SeInspect: Defending Model Stealing via Heterogeneous Semantic Inspection},
booktitle = {Computer Security – ESORICS 2022},
year = {2022},
publisher = {Springer}
}
@inproceedings{lee2022model,
author = {Lee, Jeonghyun and Han, Sungmin and Lee, Sangkyun},
title = {Model Stealing Defense against Exploiting Information Leak through the Interpretation of Deep Neural Nets},
booktitle = {Proceedings of the Thirty-First International Joint Conference on Artificial Intelligence},
year = {2022},
pages = {719--725},
publisher = {International Joint Conferences on Artificial Intelligence Organization}
}
@article{mazeika2022how,
author = {Mazeika, Mantas and Li, Bo and Forsyth, David},
title = {How to Steer Your Adversary: Targeted and Efficient Model Stealing Defenses with Gradient Redirection},
journal = {arXiv preprint arXiv:2206.14157},
year = {2022}
}
@inproceedings{zhang2021graphmi,
author = {Zhang, Zaixi and Liu, Qi and Huang, Zhenya and Wang, Hao and Lu, Chengqiang and Liu, Chuanren and Chen, Enhong},
title = {GraphMI: Extracting Private Graph Data from Graph Neural Networks},
booktitle = {Proceedings of the Thirtieth International Joint Conference on Artificial Intelligence},
year = {2021},
pages = {3749--3755},
publisher = {International Joint Conferences on Artificial Intelligence Organization}