-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
2211 lines (2058 loc) · 101 KB
/
index.html
File metadata and controls
2211 lines (2058 loc) · 101 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, maximum-scale=1">
<meta name="description" content="SunLab at George Mason University focuses on the latest cybersecurity research and emerging threats.">
<title>Sun Security Lab</title>
<link rel="icon" href="img/sunlab-logo.png" type="image/png">
<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css">
<link href="css/style.css" rel="stylesheet" type="text/css">
<link href="css/font-awesome.css" rel="stylesheet" type="text/css">
<link href="css/animate.css" rel="stylesheet" type="text/css">
<!--[if lt IE 9]>
<script src="js/respond-1.1.0.min.js"></script>
<script src="js/html5shiv.js"></script>
<script src="js/html5element.js"></script>
<![endif]-->
</head>
<body>
<!--Header_section-->
<header id="header_wrapper">
<div class="container">
<div class="header_box">
<div class="logo"><a href="#"><img src="img/sunlab_logo3.png" height="40" alt="logo"></a></div>
<nav class="navbar" role="navigation">
<!--
<div class="navbar-header">
<button type="button" id="nav-toggle" class="navbar-toggle" data-toggle="collapse" data-target="#main-nav"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button>
</div>
-->
<div id="main-nav" class="collapse navbar-collapse navStyle">
<ul class="nav navbar-nav" id="mainNav">
<li class="active"><a href="#home" class="scroll-link">Home</a></li>
<li><a href="#aboutUs" class="scroll-link">About Us</a></li>
<li class="dropdown">
<a class="data-toggle" data-toggle="dropdown" data-target="#" href="#research">Research<strong class="caret"></strong></a>
<ul class="dropdown-menu">
<li class="dropdown-item"><a href="research/trusted_computing.html">Trustworthy Computing</a></li>
<li class="dropdown-item"><a href="research/mtd.html">Moving Target Defense</a></li>
<li class="dropdown-item"><a href="research/software_security.html">Software Security</a></li>
<li class="dropdown-item"><a href="research/ai_security.html">AI Security</a></li>
<li class="dropdown-item"><a href="#research">Network Security</a></li>
<li class="dropdown-item"><a href="research/container_security.html">Container Security</a></li>
<li class="dropdown-header dropdown-item">Resources</li>
<li class="dropdown-item"><a href="https://github.com/SunLab-GMU">GitHub</a></li>
<li class="dropdown-item"><a href="https://huggingface.co/sunlab">Hugging Face</a></li>
</ul>
</li>
<li><a href="#publication" class="scroll-link">Publication</a></li>
<li><a href="#team" class="scroll-link">Team</a></li>
<li><a href="#sponsors" class="scroll-link">Sponsors</a></li>
<li><a href="#contact" class="scroll-link">Contact</a></li>
</ul>
</div>
</nav>
</div>
</div>
</header>
<!--Header_section-->
<!--home-->
<section id="home" class="top_cont_outer">
<div class="hero_wrapper">
<div class="container">
<div class="home">
<div class="row">
<div class="col-lg-5 col-sm-7">
<div class="top_left_cont zoomIn wow animated">
<h2>Sun Security Laboratory</h2>
<p style="font-size:18px">“Live as if you were to die tomorrow. Learn as if you were to live forever.” –– Mahatma Gandhi</p>
<a href="#research" class="read_more2">Read more</a> </div>
</div>
<div class="col-lg-7 col-sm-5">
<div class="top_left_cont">
<!-- News Carousel -->
<div id="newscarousel" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#newscarousel" data-slide-to="0" class="active"></li>
<li data-target="#newscarousel" data-slide-to="1"></li>
<li data-target="#newscarousel" data-slide-to="2"></li>
<li data-target="#newscarousel" data-slide-to="3"></li>
<li data-target="#newscarousel" data-slide-to="4"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner">
<div class="item active">
<a href="https://www.navsea.navy.mil/Media/News/Article-View/Article/3946699/nswcdd-hosts-collegiate-cyber-resiliency-and-measurement-challenge/" target="_blank">
<img class="mx-auto d-block" src="img/team/CRAM.png" alt="">
</a>
<div class="carousel-caption">
<p style="font-size:15px">"Three students from Sun Security Lab won the first-place prize of the Cyber Resiliency and Measurement Challenge hosted by Naval Surface Warfare Center Dahlgren Division (NSWCDD) in Oct. 2024.<br /> </p>
</div>
</div>
<div class="item">
<a href="https://csis.gmu.edu/ksun/publications/security24_CONCH.pdf" target="_blank">
<img class="mx-auto d-block" src="img/sec24-conch.png" alt="">
</a>
<div class="carousel-caption">
<p style="font-size:15px">"What IF Is Not Enough? Fixing Null Pointer Dereference With Contextual Check" at USENIX Security 2024<br /> </p>
</div>
</div>
<div class="item">
<a href="https://csis.gmu.edu/ksun/publications/SP23_GraphSPD.pdf" target="_blank">
<img class="mx-auto d-block" src="img/graphspd.png" alt="">
</a>
<div class="carousel-caption">
<p style="font-size:15px">"GraphSPD: Graph-Based Security Patch Detection with Enriched Code Semantics" at S&P 2023<br /> </p>
</div>
</div>
<div class="item">
<a href="https://arxiv.org/pdf/2308.09546.pdf" target="_blank">
<img src="img/ace-ndss24.png" alt="">
</a>
<div class="carousel-caption">
<p style="font-size:15px">"Compensating Removed Frequency Components: Thwarting Voice Spectrum Reduction Attacks" at NDSS 2024</p>
</div>
</div>
<div class="item">
<a href="https://csis.gmu.edu/ksun/publications/ModReplay_CCS20.pdf" target="_blank">
<img src="img/hero-modreplay-ccs20.png" alt="">
</a>
<div class="carousel-caption">
<p style="font-size:15px">"When the Differences in Frequency Domain are Compensated: Understanding and Defeating Modulated Replay Attacks on Automatic Speech Recognition" at CCS 2020</p>
</div>
</div>
<div class="item">
<a href="https://csis.gmu.edu/ksun/publications/CITM_CCS20.pdf" target="_blank">
<img class="" src="img/hero-CITM_CCS20.png" alt="">
</a>
<div class="carousel-caption">
<p style="font-size:15px">"Cache-in-the-Middle (CITM) Attacks: Manipulating Sensitive Data in Isolated Execution Environments" at CCS 2020</p>
</div>
</div>
<div class="item">
<a href="https://par.nsf.gov/servlets/purl/10172419" target="_blank">
<img class="mx-auto d-block" src="img/herofigure.png" alt="">
</a>
<div class="carousel-caption">
<p style="font-size:15px">"When Match Fields Do Not Need to Match: Buffered Packet Hijacking in SDN" at NDSS 2020<br /> </p>
</div>
</div>
</div>
<!-- Left and right controls -->
<a class="left carousel-control" href="#newscarousel" data-slide="prev">
<span><i class="fa fa-arrow-left"></i></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#newscarousel" data-slide="next">
<span><i class="fa fa-arrow-right"></i></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--home-->
<section id="aboutUs"><!--Aboutus-->
<div class="inner_wrapper">
<div class="container">
<h2>About Us</h2>
<div class="inner_section">
<div class="row">
<div class="col-lg-7 col-md-7 col-sm-7 col-xs-12 pull-left">
<div class=" delay-01s animated fadeInDown wow animated">
<!--<h3>Welcome to Sun Security Lab</h3><br/> -->
<p style="font-size:17px; line-height:170%">The Sun Security Laboratory (SunLab) was founded by Professor Kun Sun. We are located at George Mason University.
Our mission is to conduct basic and applied research in the systems and network security.
Our current research areas include trustworthy computing, moving target defence, software security, cloud/container security, AI security, and mobile phone security. <br/>
<span style="color:red">The lab is continuously hiring self-motivated graduate and undergraduate students who have research interests in cyber security, programming languages, operating systems, and computer networks.</span>
<strong> </strong></p>
<br />
<h3>News</h3>
<ul style="list-style-type:disc; margin:0px; padding:20px">
<li><span style="font-size:16px">1 papers accepted by CCS 2025.</span></li>
<li><span style="font-size:16px">2 papers accepted by USENIX Security 2025.</span></li>
<li><span style="font-size:16px">Three students from Sun Security Lab at George Mason University won the first-place prize of the <a href="https://www.navsea.navy.mil/Media/News/Article-View/Article/3946699/nswcdd-hosts-collegiate-cyber-resiliency-and-measurement-challenge/">Cyber Resiliency and Measurement Challenge</a>a hosted by Naval Surface Warfare Center Dahlgren Division (NSWCDD) in Oct. 2024.</span></li>
<li><span style="font-size:16px">Dr. Xu He successfully defended his PhD and will join Visa Inc. as a research scientist.</span></li>
<li><span style="font-size:16px">One paper selected as one of the finalists of CSAW 2024 Applied Research Competition.</span></li>
<li><span style="font-size:16px">2 papers accepted by NDSS 2025.</span></li>
<li><span style="font-size:16px">Our paper titled "Eavesdropping on Controller Acoustic Emanation for Keystroke Inference Attack in Virtual Reality" won the Distinguished Paper Award in NDSS 2024.</span></li>
<li><span style="font-size:16px">3 papers accepted by CCS 2024.</span></li>
<li><span style="font-size:16px">2 papers accepted by USENIX Security 2024.</span></li>
<li><span style="font-size:16px">5 papers accepted by NDSS 2024.</span></li>
<li><span style="font-size:16px">The PatchDB dataset is now available at <a href="https://sunlab-gmu.github.io/PatchDB/" target="_blank">here</a>.</span></li>
</ul>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-12 pull-right">
<!--
<img src="img/sunlab-logo.png" class="img delay-03s animated wow zoomIn" alt="">
-->
<img src="img/gmu-square.jpg" class="img-circle delay-03s animated wow zoomIn" alt="">
</div>
</div>
</div>
<div class="work_bottom"> <span>Want to know more ...</span> <a href="#contact" class="contact_btn scroll-link">Contact Us</a> </div>
</div>
</div>
</section>
<!--Aboutus-->
<!--Research-->
<section id="research">
<div class="container">
<h2>Research</h2>
<h6>We aim to solve the most challenging problems in cybersecurity.</h6>
<div class="research_wrapper">
<div class="row">
<div class="col-lg-4">
<div class="research_block">
<div class="research_icon delay-03s animated wow zoomIn"> <span><a href="research/ai_security.html"><i class="fa fa-cogs"></i></a></span> </div>
<h3 class="animated fadeInUp wow" ><a href="research/ai_security.html" style="color:#000000;">AI Security</a></h3>
<p class="animated fadeInDown wow">We study both the security problems in current AI/ML solutions and how to use AI/ML on solving existing security problems. </p>
<!--[<a href="project/modreplay.html">ModReplay</a>] [<a href="project/sieve.html">SIEVE</a>]-->
</div>
</div>
<div class="col-lg-4 borderLeft">
<div class="research_block">
<div class="research_icon delay-03s animated wow zoomIn"> <span><i class="fa fa-globe"></i></span> </div>
<h3 class="animated fadeInUp wow">Network Security</h3>
<p class="animated fadeInDown wow">Enhance the security of networks in various scenarios.</p>
</div>
</div>
<div class="col-lg-4 borderLeft">
<div class="research_block">
<div class="research_icon icon3 delay-03s animated wow zoomIn"> <span><a href="research/software_security.html"><i class="fa fa-code"></i></a></span> </div>
<h3 class="animated fadeInUp wow"><a href="research/software_security.html" style="color:#000000;">Software Security</a></h3>
<p class="animated fadeInDown wow">We focus on automatically discovering the vulnerable code, identifying security patches, and generating security patches in the real-world open-source and proprietary software projects.</p>
</div>
</div>
</div>
<div class="row borderTop">
<div class="col-lg-4 mrgTop">
<div class="research_block">
<div class="research_icon delay-03s animated wow zoomIn"> <span><a href="research/trusted_computing.html"><i class="fa fa-shield"></i></a></span> </div>
<h3 class="animated fadeInUp wow"><a href="research/trusted_computing.html" style="color:#000000;">Trustworthy Computing</a></h3>
<p class="animated fadeInDown wow">We design and develop new trusted computing systems to protect security sensitive code/data on both X86 and ARM processors using hardware security extensions such as ARM TrustZone, Intel SGX/TXT/SMM.</p>
</div>
</div>
<div class="col-lg-4 mrgTop borderLeft">
<div class="research_block">
<div class="research_icon icon2 delay-03s animated wow zoomIn"> <span><a href="research/mtd.html"><i class="fa fa-bullseye"></i></a></span> </div>
<h3 class="animated fadeInUp wow"><a href="research/mtd.html" style="color:#000000;">Moving Target Defense</a></h3>
<p class="animated fadeInDown wow">We develop adaptive virtualized systems that protect a production system through hiding it in a continuously morphing virtual environment and/or serve disinformation via believable deceptive decoys.</p>
</div>
</div>
<div class="col-lg-4 mrgTop borderLeft">
<div class="research_block">
<div class="research_icon delay-03s animated wow zoomIn"> <span><a href="research/container_security.html"><i class="fa fa-cubes"></i></a></span> </div>
<h3 class="animated fadeInUp wow"><a href="research/container_security.html" style="color:#000000;">Container Security</a></h3>
<p class="animated fadeInDown wow">Based on the observation that different sets of system calls are needed for various execution phases, we implement a temporal-based system call reduction mechanism called SPEAKER that can dramatically reduce the attack surface on system calls.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!--research-->
<!-- publication -->
<section id="publication" class="content">
<!-- Container -->
<div class="container publication_title">
<!-- Title -->
<div class="section-title">
<h2>publication</h2>
</div>
<div class="publication-top">
<div class="publication_wrapper">
<div class="row">
<div class="col-lg-12">
<div id="filters">
<ul class="clearfix">
<li><a id="all" href="#" data-filter="*" class="active">
<h5>All</h5>
</a></li>
<li><a class="" href="#" data-filter=".trustworthy">
<h5>Trustworthy Computing</h5>
</a></li>
<li><a class="" href="#" data-filter=".mtdcd">
<h5>Moving Target Defense and Cyber Deception</h5>
</a></li>
<li><a class="" href="#" data-filter=".mobilephone">
<h5>Mobile Phone Security</h5>
</a></li>
<li><a class="" href="#" data-filter=".networksecurity">
<h5>Network Security</h5>
</a></li>
<li><a class="" href="#" data-filter=".aisecurity">
<h5>AI Security</h5>
</a></li>
<li><a class="" href="#" data-filter=".softwaresecurity">
<h5>Software Security</h5>
</a></li>
<li><a class="" href="#" data-filter=".passwordmanagement">
<h5>Password Management</h5>
</a></li>
<li><a class="" href="#" data-filter=".unknown">
<h5>Miscellaneous</h5>
</a></li>
</ul>
</div>
</div>
<div class="isotope fadeInLeft animated wow" id="publication_wrapper">
<div class="isotope-item col-md-12 networksecurity">
<div class="col-md-2 col-xs-12 publication-venue">
CCS 2025
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>Training Robust Classifiers for Classfiying Encrypted Traffic under Dynamic Network Conditions</strong><br />
Yuqi Qing, Qilei Yin, Xinhao Deng, Xiaoli Zhang, Peiyang Li, Zhuotao Liu, Kun Sun, Ke Xu, and Qi Li. <br />
To appear in the Proceedings of ACM Conference on Computer and Communications Security (CCS). <br />
Taiper, Taiwan, October 13 - October 17, 2025.<br />
</div>
</div>
<div class="isotope-item col-md-12 networksecurity">
<div class="col-md-2 col-xs-12 publication-venue">
CCS 2025
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>Off-Path TCP Exploits: PMTUD Breaks TCP Connection Isolation in IP Address Sharing Scenarios</strong><br />
Xuewei Feng, Zhaoxi Li, Qi Li, Ziqiang Wang, Kun Sun, and Ke Xu. <br />
To appear in the Proceedings of ACM Conference on Computer and Communications Security (CCS). <br />
Taiper, Taiwan, October 13 - October 17, 2025.<br />
</div>
</div>
<div class="isotope-item col-md-12 softwaresecurity">
<div class="col-md-2 col-xs-12 publication-venue">
USENIX Security 2025
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>TYPEPULSE: Detecting Type Confusion Bugs in Rust Programs</strong><br />
Hung Mao Chen, Xu He, Shu Wang, Xiaokuan Zhang, and Kun Sun. <br />
To appear in the 34th USENIX Security Symposium (USENIX Security'25). <br />
Seattle, WA, August 13 - August 18, 2025.<br />
</div>
</div>
<div class="isotope-item col-md-12 softwaresecurity">
<div class="col-md-2 col-xs-12 publication-venue">
USENIX Security 2025
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>DISPATCH: Unraveling Security Patches from Entangled Code Changes</strong><br />
Shiyu Sun, Yunlong Xing, Xinda Wang, Shu Wang, Qi Li, and Kun Sun. <br />
To appear in the 34th USENIX Security Symposium (USENIX Security'25). <br />
Seattle, WA, August 13 - August 18, 2025.<br />
</div>
</div>
<div class="isotope-item col-md-12 softwaresecurity">
<div class="col-md-2 col-xs-12 publication-venue">
DIMVA 2025
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>An Empirical Study of Multi-Language Security Patches in Open Source Software</strong><br />
Shiyu Sun, Yunlong Xing, Grant Zou, Xinda Wang, and Kun Sun. <br />
To appear in the In 22nd Conference on Detection of Intrusions and Malware & Vulnerability Assessment (DIMVA). <br />
Austria, July 9 - July 11, 2025.<br />
</div>
</div>
<div class="isotope-item col-md-12 networksecurity">
<div class="col-md-2 col-xs-12 publication-venue">
NDSS 2025
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>An Empirical Study on Remote DoS Attacks against NAT Networks</strong><br />
Xuewei Feng, Yuxiang Yang, Qi Li, Xingxiang Zhan, Kun Sun, Ziqiang Wang, Ao Wang,Ganqiu Du, and Ke Xu. <br />
To appear in the Network and Distributed System Security Symposium (NDSS). <br />
San Diego, CA, February 23 - February 28, 2025.<br />
</div>
</div>
<div class="isotope-item col-md-12 networksecurity">
<div class="col-md-2 col-xs-12 publication-venue">
NDSS 2025
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>Off-Path TCP Hijacking in Wi-Fi Networks: A Packet-Size Side Channel Attack</strong><br />
Ziqiang Wang, Xuewei Feng, Qi Li, Kun Sun, Yuxiang Yang, Mengyuan Li, Ganqiu Du, Ke Xu, and Jianping Wu. <br />
To appear in the Network and Distributed System Security Symposium (NDSS). <br />
San Diego, CA, February 23 - February 28, 2025.<br />
</div>
</div>
<div class="isotope-item col-md-12 aisecurity">
<div class="col-md-2 col-xs-12 publication-venue">
CCS 2024
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>Dye4AI: Assuring Data Boundary on Generative AI Services</strong><br />
Shu Wang, Kun Sun, and Yan Zhai. <br />
To appear in the Proceedings of ACM Conference on Computer and Communications Security (CCS). <br />
Salt Lake City, UT, October 14-18, 2024.<br />
</div>
</div>
<div class="isotope-item col-md-12 softwaresecurity">
<div class="col-md-2 col-xs-12 publication-venue">
CCS 2024
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>BlueSWAT: A Lightweight State-Aware Security Framework for Bluetooth Low Energy</strong><br />
Xijia Che, Yi He, Xuewei Feng, Kun Sun, Ke Xu, and Qi Li. <br />
To appear in the Proceedings of ACM Conference on Computer and Communications Security (CCS). <br />
Salt Lake City, UT, October 14-18, 2024.<br />
</div>
</div>
<div class="isotope-item col-md-12 networksecurity">
<div class="col-md-2 col-xs-12 publication-venue">
CCS 2024
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>Towards Fine-Grained Webpage Fingerprinting at Scale</strong><br />
Xiyuan Zhao, Xinhao Deng, Qi Li, Yunpeng Liu, Zhuotao Liu, Kun Sun, and Ke Xu. <br />
To appear in the Proceedings of ACM Conference on Computer and Communications Security (CCS). <br />
Salt Lake City, UT, October 14-18, 2024.<br />
</div>
</div>
<div class="isotope-item col-md-12 aisecurity">
<div class="col-md-2 col-xs-12 publication-venue">
DSN 2024
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>Bridging the Gap: A Study of AI-based Vulnerability Management between Industry and Academia</strong><br />
Shengye Wan, Joshua Saxe, Craig Gomes, Sahana Chennabasappa, Avilash Rath, Kun Sun, and Xinda Wang. <br />
The 54th Annual IEEE/IFIP International Conference on Dependable Systems and Networks (DSN). <br />
Brisbane, Australia, June 24-27, 2024.<br />
</div>
</div>
<div class="isotope-item col-md-12 networksecurity">
<div class="col-md-2 col-xs-12 publication-venue">
IWQOS 2024
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>Enhancing Fraud Transaction Detection via Unlabeled Suspicious Records</strong><br />
Ye Wang, Yunpeng Liu, Ningtao Wang, Peiyang Li, Jiahao Hu, Xing Fu, Weiqiang Wang, Kun Sun, Qi Li, and Ke Xu. <br />
To appear in the IEEE/ACM International Symposium on Quality of Service (IWQOS). <br />
Guangzhou, China, 19–21 June 2024.<br />
</div>
</div>
<div class="isotope-item col-md-12 softwaresecurity">
<div class="col-md-2 col-xs-12 publication-venue">
ASIACCS 2024
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>BinGo: Identifying Security Patches in Binary Code with Graph Representation Learning</strong><br />
Xu He, Shu Wang, Pengbin Feng, Xinda Wang, Shiyu Sun, Qi Li, and Kun Sun. <br />
To appear in the 19th ACM ASIA Conference on Computer and Communications Security (ASIACCS). <br />
Singapore, 1-5 July, 2024.<br />
</div>
</div>
<div class="isotope-item col-md-12 unknown">
<div class="col-md-2 col-xs-12 publication-venue">
EICS 2024
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>Having Difficulty Understanding Manuals? Automatically Converting User Manuals into Instructional Videos</strong><br />
Songsong Liu, Shu Wang, and Kun Sun. <br />
To appear in the 16th ACM SIGCHI Symposium on Engineering Interactive Computing Systems (EICS). <br />
Cagliari, Italy, 24-28 June 2024.<br />
</div>
</div>
<div class="isotope-item col-md-12 softwaresecurity">
<div class="col-md-2 col-xs-12 publication-venue">
USENIX Security 2024
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>What IF Is Not Enough? Fixing Null Pointer Dereference With Contextual Check</strong><br />
Yunlong Xing, Shu Wang, Shiyu Sun, Xu He, Kun Sun and Qi Li. <br />
To appear in the 33rd USENIX Security Symposium (USENIX Security'24). <br />
Philadelphia, PA, August 14–16, 2024.<br />
</div>
</div>
<div class="isotope-item col-md-12 softwaresecurity">
<div class="col-md-2 col-xs-12 publication-venue">
USENIX Security 2024
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>Your Firmware Has Arrived: A Study of Firmware Update Vulnerabilities</strong><br />
Yuhao Wu, Jinwen Wang, Yujie Wang, Shixuan Zhai, Zihan Li, Yi He, Kun Sun, Qi Li, and Ning Zhang. <br />
To appear in the 33rd USENIX Security Symposium (USENIX Security'24). <br />
Philadelphia, PA, August 14–16, 2024.<br />
</div>
</div>
<div class="isotope-item col-md-12 mtdcd">
<div class="col-md-2 col-xs-12 publication-venue">
MTD 2024
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>BlueShift: Probing Adaptive Frequency Hopping in Bluetooth</strong><br />
Tommy Chin, Noah Korzak, and Kun Sun. <br />
To appear in the Proceedings of the 10th ACM Workshop on Moving Target Defense (MTD), in conjunction with the ACM
Conference on Computer and Communications Security (ACM CCS 2023).<br />
Copenhagen, Denmark, November 26, 2023.<br />
</div>
</div>
<div class="isotope-item col-md-12 aisecurity">
<div class="col-md-2 col-xs-12 publication-venue">
NDSS 2024
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>Compensating Removed Frequency Components: Thwarting Voice Spectrum Reduction Attacks</strong><br />
Shu Wang, Kun Sun, and Qi Li. <br />
To appear in the Network and Distributed System Security Symposium (NDSS). <br />
San Diego, California, February 26-March 1, 2024.<br />
</div>
</div>
<div class="isotope-item col-md-12 softwaresecurity">
<div class="col-md-2 col-xs-12 publication-venue">
NDSS 2024
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>Eavesdropping on Controller Acoustic Emanation for Keystroke Inference Attack in Virtual Reality</strong><br />
Shiqing Luo, Anh Nguyen, Hafsa Farooq, Kun Sun, and Zhisheng Yan. <br />
To appear in the Network and Distributed System Security Symposium (NDSS). <br />
San Diego, California, February 26-March 1, 2024.<br />
</div>
</div>
<div class="isotope-item col-md-12 softwaresecurity">
<div class="col-md-2 col-xs-12 publication-venue">
NDSS 2024
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>From Hardware Fingerprint to Access Token: Enhancing the Authentication on IoT Devices</strong><br />
Yue Xiao, Yi He, Xiaoli Zhang, Qian Wang, Renjie Xie, Kun Sun, Ke Xu, and Qi Li. <br />
To appear in the Network and Distributed System Security Symposium (NDSS). <br />
San Diego, California, February 26-March 1, 2024.<br />
</div>
</div>
<div class="isotope-item col-md-12 networksecurity">
<div class="col-md-2 col-xs-12 publication-venue">
NDSS 2024
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>Exploiting Sequence Number Leakage: TCP Hijacking in NAT-Enabled Wi-Fi Networks</strong><br />
Yuxiang Yang, Xuewei Feng, Qi Li, Kun Sun, Ziqiang Wang, and Ke Xu. <br />
To appear in the Network and Distributed System Security Symposium (NDSS). <br />
San Diego, California, February 26-March 1, 2024.<br />
</div>
</div>
<div class="isotope-item col-md-12 networksecurity">
<div class="col-md-2 col-xs-12 publication-venue">
NDSS 2024
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>RAPIER: A Robust Framework for Detecting Encrypted Malicious Network Traffic with Low-Quality Training Data</strong><br />
Yuqi Qing, Qilei Yin, Xinhao Deng, Yihao Chen, Zhuotao Liu, Kun Sun, Ke Xu, Jia Zhang, and Qi Li. <br />
To appear in the Network and Distributed System Security Symposium (NDSS). <br />
San Diego, California, February 26-March 1, 2024.<br />
</div>
</div>
<div class="isotope-item col-md-12 softwaresecurity">
<div class="col-md-2 col-xs-12 publication-venue">
TIFS 2024
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>Condo: Enhancing Container Isolation through Kernel Permission Data Protection</strong><br />
Shouyin Xu, Yuewu Wang, Lingguang Lei, Kun Sun, Jiwu Jing, Siyuan Ma, Jie Wang, and Heqing Huang. <br />
To appear in the IEEE Transactions on Information Forensics and Security (TIFS), 2024. <br />
</div>
</div>
<div class="isotope-item col-md-12 mobilephone">
<div class="col-md-2 col-xs-12 publication-venue">
CS 2024
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>FAMCF: A few-shot Android malware family classification framework</strong><br />
Fan Zhou, Dongxia Wang, Yanhai Xiong, Kun Sun, and Wenhai Wang. <br />
To appear in Computers & Security, 2024.
</div>
</div>
<div class="isotope-item col-md-12 mtdcd softwaresecurity">
<div class="col-md-2 col-xs-12 publication-venue">
TDSC 2023
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>A Hybrid System Call Profiling Approach for Container Protection</strong><br />
Yunlong Xing, Xinda Wang, Sadegh Torabi, Zeyu Zhang, Lingguang Lei, and Kun Sun. <br />
To appear in the Transactions on Dependable and Secure Computing (TDSC), 2023. <br />
</div>
</div>
<div class="isotope-item col-md-12 trustworthy">
<div class="col-md-2 col-xs-12 publication-venue">
TDSC 2023
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>CacheIEE: Cacheassisted Isolated Execution Environment on ARM Multi-Core Platforms</strong><br />
Jie Wang, Kun Sun, Lingguang Lei, Yuewu Wang, Jiwu Jing, Shengye Wan, and Qi Li. <br />
To appear in the Transactions on Dependable and Secure Computing (TDSC), 2023. <br />
</div>
</div>
<div class="isotope-item col-md-12 trustworthy">
<div class="col-md-2 col-xs-12 publication-venue">
TON 2023
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>Interface-Based Side Channel in TEE-Assisted Networked Services</strong><br />
Xiaohan Zhang, Jinwen Wang, Yueqiang Cheng, Qi Li, Kun Sun, Yao Zheng, Ning Zhang, and Xinghua Li. <br />
To appear in IEEE/ACM Transactions on Networking (TON), 2023. <br />
</div>
</div>
<div class="isotope-item col-md-12 mtdcd">
<div class="col-md-2 col-xs-12 publication-venue">
DSN 2023
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>Enhancing Honeypot Fidelity with Real-Time User Behavior Emulation</strong><br />
Songsong Liu, Shu Wang, and Kun Sun. <br />
To appear in the 53rd Annual IEEE/IFIP International Conference on Dependable Systems and Networks (DSN), Track of Disruptive Idea <br />
Porto, Portugal, June 27-30, 2023. <br />
</div>
</div>
<div class="isotope-item col-md-12 mtdcd softwaresecurity">
<div class="col-md-2 col-xs-12 publication-venue">
USENIX Security 2023
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>Cross Container Attacks: The Bewildered eBPF on Clouds</strong><br />
Yi He, Roland Guo, Yunlong Xing, Xijia Che, Kun Sun, Zhuotao Liu, Ke Xu, and Qi Li. <br />
To appear in 32nd USENIX Security Symposium (USENIX Security'23). <br />
ANAHEIM, CA, USA, August 9–11, 2023. <br />
</div>
</div>
<div class="isotope-item col-md-12 networksecurity">
<div class="col-md-2 col-xs-12 publication-venue">
USENIX Security 2023
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>Rosetta: Enabling Robust TLS Encrypted Traffic Classification in Diverse Network Environments with TCP-Aware Traffic Augmentation</strong><br />
Renjie Xie, Jiahao Cao, Enhuan Dong, Mingwei Xu, Kun Sun, Qi Li, Licheng Shen, and Menghao Zhang. <br />
To appear in 32nd USENIX Security Symposium (USENIX Security'23) <br />
ANAHEIM, CA, USA, August 9–11, 2023. <br />
</div>
</div>
<div class="isotope-item col-md-12 softwaresecurity aisecurity">
<div class="col-md-2 col-xs-12 publication-venue">
S&P 2023
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>GraphSPD: Graph-Based Security Patch Detection with Enriched Code Semantics</strong><br />
Shu Wang, Xinda Wang, Kun Sun, Sushil Jajodia, Haining Wang, and Qi Li. <br />
To appear in the 44th IEEE Symposium on Security and Privacy (IEEE S&P) <br />
SAN FRANCISCO, CA, MAY 22-26, 2023. <br />
</div>
</div>
<div class="isotope-item col-md-12 networksecurity">
<div class="col-md-2 col-xs-12 publication-venue">
S&P 2023
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>Man-in-the-Middle Attacks without Rogue AP: When WPAs Meet ICMP Redirects</strong><br />
Xuewei Feng, Qi Li, Kun Sun, Yuxiang Yang, and Ke Xu. <br />
To appear in the 44th IEEE Symposium on Security and Privacy (IEEE S&P) <br />
SAN FRANCISCO, CA, MAY 22-26, 2023. <br />
</div>
</div>
<div class="isotope-item col-md-12 softwaresecurity">
<div class="col-md-2 col-xs-12 publication-venue">
ICSME 2023
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>Exploring Security Commits in Python</strong><br />
Shiyu Sun, Shu Wang, Xinda Wang, Yunlong Xing, Elisa Zhang, and Kun Sun. <br />
To appear in the 39th IEEE International Conference on Software Maintenance and Evolution (ICSME) <br />
Bogotá, Colombia, October 1-6, 2023.<br />
</div>
</div>
<div class="isotope-item col-md-12 mtdcd softwaresecurity">
<div class="col-md-2 col-xs-12 publication-venue">
CNS 2022
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>SysCap: Profiling and Crosschecking Syscall and Capability Configurations for Docker Images</strong><br />
Yunlong Xing, Jiahao Cao, Xinda Wang, Sadegh Torabi, Kun Sun, Fei Yan, and Qi Li. <br />
In IEEE Conference on Communications and Network Security (CNS)<br />
Austin, TX and virtually on October 3-5, 2022.<br />
</div>
</div>
<div class="isotope-item col-md-12 networksecurity">
<div class="col-md-2 col-xs-12 publication-venue">
CCS 2022
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>Ready Raider One: Exploring the Misuse of Cloud Gaming Services</strong><br />
Guannan Liu, Daiping Liu, Shuai Hao, Xing Gao, Kun Sun, and Haining Wang. <br />
To appear in the Proceedings of ACM Conference on Computer and Communications Security (CCS) <br />
Los Angeles, CA, November 7-11, 2022. <br />
</div>
</div>
<div class="isotope-item col-md-12 networksecurity">
<div class="col-md-2 col-xs-12 publication-venue">
SRDS 2022
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>An Investigation on Data Center Cooling Systems Using FPGA-based Temperature Side Channels</strong><br />
Yuan Liang, Xing Gao, Kun Sun, Wenjie Xiong, and Haining Wang. <br />
To appear in the 41st International Symposium on Reliable Distributed Systems (SRDS) <br />
Vienna, Austria, September 19-22, 2022. <br />
</div>
</div>
<div class="isotope-item col-md-12 softwaresecurity aisecurity">
<div class="col-md-2 col-xs-12 publication-venue">
RAID 2022
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>BinProv: Binary Code Provenance Identification without Disassembly</strong><br />
Xu He, Shu Wang, Yunlong Xing, Pengbin Feng, Haining Wang, Qi Li, Songqing Chen, and Kun Sun. <br />
To appear in the 25th International Symposium on Research in Attacks, Intrusions and Defenses (RAID 2022) <br />
Limassol, Cyprus on 26-28 October, 2022. <br />
</div>
</div>
<div class="isotope-item col-md-12 mtdcd">
<div class="col-md-2 col-xs-12 publication-venue">
DIMVA 2022
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>Consistency is All I Ask: Attacks and Countermeasures on the Network Context of Distributed Honeypots</strong><br />
Songsong Liu, Pengbin Feng, Jiahao Cao, Xu He, Tommy Chin, Kun Sun, and Qi Li. <br />
To appear in the 19th Conference on Detection of Intrusions and Malware \& Vulnerability Assessment (DIMVA) <br />
Cagliari, Italy June 29 – July 1, 2022. <br />
</div>
</div>
<div class="isotope-item col-md-12 softwaresecurity">
<div class="col-md-2 col-xs-12 publication-venue">
TON 2022
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>The LOFT Attack: Overflowing SDN Flow Tables at a Low Rate</strong><br />
Jiahao Cao, Mingwei Xu, Qi Li, Kun Sun, and Yuan Yang. <br />
To appear in IEEE/ACM Transactions on Networking (TON), 2022. <br />
</div>
</div>
<div class="isotope-item col-md-12 softwaresecurity mtdcd">
<div class="col-md-2 col-xs-12 publication-venue">
FGCS 2022
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>The devil is in the detail: Generating system call whitelist for Linux seccomp</strong><br />
Yunlong Xing, Jiahao Cao, Kun Sun, Fei Yan, and Shengye Wan. <br />
Future Generation Computer Systems (FGCS), 2022. <br />
</div>
</div>
<div class="isotope-item col-md-12 softwaresecurity">
<div class="col-md-2 col-xs-12 publication-venue">
IFIP 2022
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>EZPath: Expediting Container Network Traffic via Programmable Switches</strong><br />
Zili Zha, An Wang, Yang Guo, Qun Li, Kun Sun, and Songqing Chen. <br />
To appear in the IFIP Networking Conference. <br />
Catania Italy, June 13-16, 2022. <br />
</div>
</div>
<div class="isotope-item col-md-12 networksecurity">
<div class="col-md-2 col-xs-12 publication-venue">
USENIX Security 2022
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>Off-Path Network Traffic Manipulation via Revitalizing ICMP Redirect Attacks</strong><br />
Xuewei Feng, Qi Li, Kun Sun, Zhiyun Qian, Chuanpu Fu, Gang Zhao, Xiaohui Kuang, and Ke Xu. <br />
To appear in 31st USENIX Security Symposium (USENIX Security'22) <br />
BOSTON, MA, USA, August 10–12, 2022. <br />
</div>
</div>
<div class="isotope-item col-md-12 softwaresecurity">
<div class="col-md-2 col-xs-12 publication-venue">
USENIX Security 2022
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>RapidPatch: Firmware Hotpatching for Real-Time Embedded Devices</strong><br />
Yi He, Zhenhua Zou, Kun Sun, Zhuotao Liu, Ke Xu, Qian Wang, Chao Shen, Zhi Wang, and Qi Li. <br />
To appear in 31st USENIX Security Symposium (USENIX Security'22) <br />
BOSTON, MA, USA, August 10–12, 2022. <br />
</div>
</div>
<div class="isotope-item col-md-12 softwaresecurity">
<div class="col-md-2 col-xs-12 publication-venue">
USENIX Security 2022
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>Exploring the Unchartered Space of Container Registry Typosquatting</strong><br />
Guannan Liu, Xing Gao, Haining Wang, and Kun Sun<br />
To appear in 31st USENIX Security Symposium (USENIX Security'22) <br />
BOSTON, MA, USA, August 10–12, 2022.<br />
</div>
</div>
<div class="isotope-item col-md-12 networksecurity">
<div class="col-md-2 col-xs-12 publication-venue">
NDSS 2022
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>PMTUD is not Panacea: Revisiting IP Fragmentation Attacks against TCP</strong><br />
Xuewei Feng, Qi Li, Kun Sun, Ke Xu, Baojun Liu, Xiaofeng Zheng, Qiushi Yang, Haixin Duan, and Zhiyun Qian. <br />
To appear in the Network and Distributed System Security Symposium (NDSS) <br />
San Diego, CA, February 27- March 3, 2022. <br />
</div>
</div>
<div class="isotope-item col-md-12 softwaresecurity">
<div class="col-md-2 col-xs-12 publication-venue">
WWW 2022
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>Understanding the Practice of Security Patch Management across Multiple Branches in OSS Projects</strong><br />
Xin Tan, Yuan Zhang, Jiajun Cao, Kun Sun, Mi Zhang and Min Yang<br />
To appear in the Proceedings of 31st ACM Web Conference (WWW) <br />
Virtual Event, Lyon, France, April 25–29, 2022.<br />
</div>
</div>
<div class="isotope-item col-md-12 networksecurity">
<div class="col-md-2 col-xs-12 publication-venue">
INFOCOM 2022
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>Auter: Automatically Tuning Multi-layer Network Buffers in Long-Distance Shadowsocks Networks</strong><br />
Xu He, Jiahao Cao, Shu Wang, Kun Sun, Lisong Xu, and Qi Li. <br />
To appear in IEEE International Conference on Computer Communications (INFOCOM) <br />
London, United Kingdom, May 2-5, 2022. Virtual Conference. <br />
</div>
</div>
<div class="isotope-item col-md-12 mtdcd">
<div class="col-md-2 col-xs-12 publication-venue">
CS 2022
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>Enhancing Malware Analysis Sandboxes with Emulated User Behavior</strong><br />
Songsong Liu, Pengbin Feng, Shu Wang, Kun Sun, and Jiahao Cao <br />
To appear in Computers & Security, 2022 <br />
</div>
</div>
<div class="isotope-item col-md-12 networksecurity">
<div class="col-md-2 col-xs-12 publication-venue">
TIFS 2022
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>Good Learning, Bad Performance: A Novel Attack against RL-based Congestion Control Systems</strong><br />
Zijie Yang, Jiahao Cao, Zhuotao Liu, Kun Sun, and Qi Li<br />
To appear in the IEEE Transactions on Information Forensics and Security (TIFS), 2022<br />
</div>
</div>
<div class="isotope-item col-md-12 mobilephone">
<div class="col-md-2 col-xs-12 publication-venue">
TDSC 2022
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>A Systematic Study of Android Non-SDK (Hidden) Service API Security</strong><br />
Yi He,Yacong Gu, Purui Su, Kun Sun, Zhi Wang, Yajin Zhou, and Qi Li<br />
To appear in the Transactions on Dependable and Secure Computing (TDSC), 2022<br />
</div>
</div>
<div class="isotope-item col-md-12 networksecurity">
<div class="col-md-2 col-xs-12 publication-venue">
TNET 2022
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>Disrupting the SDN Control Channel via Shared Links: Attacks and Countermeasures</strong><br />
Renjie Xie, Jiahao Cao, Qi Li, Kun Sun, Guofei Gu, Mingwei Xu, and Yuan Yang<br />
To appear in IEEE/ACM Transactionson Networking (TNET), 2022. <br />
</div>
</div>
<div class="isotope-item col-md-12 networksecurity">
<div class="col-md-2 col-xs-12 publication-venue">
ToN 2021
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>Off-Path TCP Hijacking Attacks via the Side Channel of Downgraded IPID</strong><br />
Feng, Xuewei; Li, Qi; Sun, Kun; Fu, Chuanpu; Xu, Ke<br />
To appear in IEEE/ACM Transactions on Networking, 2021 <br />
</div>
</div>
<div class="isotope-item col-md-12 softwaresecurity aisecurity">
<div class="col-md-2 col-xs-12 publication-venue">
MILCOM 2021
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>PatchRNN: A Deep Learning-Based System for Security Patch Identification</strong><br />
Xinda Wang, Shu Wang, Pengbin Feng, Kun Sun, Sushil Jajodia, Sanae Benchaaboun, and Frank Geck<br />
Military Communications Conference (MILCOM) <br />
San Diego, CA, USA, 29 November–2 December 2021. <br />
</div>
</div>
<div class="isotope-item col-md-12 mtdcd">
<div class="col-md-2 col-xs-12 publication-venue">
CNS 2021
</div>
<div class="col-md-10 col-xs-12 publication-item">
<strong>HoneyBog: A Hybrid Webshell Honeypot Framework against Com-mand Injection</strong><br />
Songsong Liu, Pengbin Feng, and Kun Sun<br />
In IEEE Conference on Communications and Network Security (CNS)<br />
Virtual Conference, October 4-6, 2021<br />