-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
879 lines (838 loc) · 27.5 KB
/
index.html
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
<!DOCTYPE HTML>
<!--
Astral by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>Jiyeon Lee @ KNU</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<!-- <link rel='icon' type='image/png' sizes='96x96' href='images/favicon.png'> -->
<link rel="stylesheet" href="assets/css/main.css" />
<nav id="nav">
<ul style="list-style-type: none; margin: 0; padding: 0; overflow: hidden; background-color: #333; position:fixed; z-index: 1000; top: 0; width: 100%;">
<li style="float: left;">
<a href="#" style="display: block; color: white; text-align: center; padding: 14px 16px; text-decoration: none;">Jiyeon Lee @ KNU</a>
</li>
<li style="float: right;">
<a href="#aboutme" onmouseover="this.style.color='lightseagreen'" onmouseout="this.style.color='white'" style="display: block; color: white; text-align: center; padding: 14px 16px; text-decoration: none;" >About Me</a>
</li>
<li style="float: right;">
<a href="#" onmouseover="this.style.color='lightseagreen'" onmouseout="this.style.color='white'" style="display: block; color: white; text-align: center; padding: 14px 16px; text-decoration: none;">Home</a>
</li>
</ul>
</nav>
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-124608248-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-124608248-1');
</script>
</head>
<body class="is-preload">
<!-- Wrapper-->
<div id="wrapper">
<!-- Main -->
<div id="main">
<!-- Me -->
<article id="home" class="panel">
<!-- Intro -->
<img src="images/me.png" style="width:10em; height: auto; float: left; margin-left: 0.5em; padding-right:2em; " />
<!-- <b style="float: inline-start; font-size: 80%;"> -->
<p style="font-size: 90%">
<b style="font-size: 1.5em;">Jiyeon Lee (이지연)</b>
<br>
Assistant Professor
<br>
<!-- <a href="https://sites.google.com/view/misysssu" target="_blank">MISys (Mobility Intelligence and Computing Systems) Lab.,</a>
<br> -->
<a href="https://cse.knu.ac.kr/" target="_blank">School of Computer Science and Engineering,</a>
<br>
<a href="https://knu.ac.kr/" target="_blank">Kyungpook National University</a>
<br>
jiyeon at knu dot ac dot kr
<br>
<!-- <a href="./JiyeonLee-CV.pdf" target="_blank">CV</a> | <a href="https://github.com/leejiy" target="_blank">GitHub</a> -->
</p>
<p style="font-size: 0.9em;">
I am an Assistant Professor in the School of Computer Science and Engineering at Kyungpook National University (KNU). Before joining KNU, I earned my Ph.D. from the School of Computing at KAIST. My research focuses on security and privacy, with a particular emphasis on web vulnerability research and cyber-physical systems security.
</p>
<header>
<h2>Notice</h2>
<ul>
<li><strong><i>I am looking for self-motivated B.S. and M.S. students interested in cyber security research. If you'd like to join our research group (NGWS Lab.), please feel free to contact me via email.</i></strong>
</li>
</ul>
</header>
<header>
<h2>NGWS@KNU</h2>
</header>
<ul>
<li>
<strong>
<!-- Current Members: -->
I am fortunate to be advising the following talented students:
</strong>
<ul style="list-style-type:circle; margin:0px;">
<li>
<strong>
Yeonhak Kim
</strong>
(M.S. Student, Spring 2024 - present)
</li>
<li>
<strong>
Hosung Shin
</strong>
(M.S. Student, Spring 2024 - present)
</li>
<li>
<strong>
Jihwan Park
</strong>
(B.S. & M.S. Integrated, Spring 2024 - present)
</li>
<li>
<strong>
Yeonwoo Sea
</strong>
(Undergraduate, Fall 2023 - present)
</li>
<!-- <li>
<strong>
Stéfany Coura Coimbra
</strong>
(B.S. at Unifei Fall 2023 - present)
</li> -->
<li>
<strong>
Jongyoung Kang
</strong>
(Undergraduate, Spring 2024 - present)
</li>
<li>
<strong>
Kyuyeon Park
</strong>
(Undergraduate, Fall 2024 - present)
</li>
<li>
<strong>
Hojin Jang
</strong>
(Undergraduate, Winter 2025 - present)
</li>
<li>
<strong>
Yunji Ha
</strong>
(Undergraduate, Winter 2025 - present)
</li>
<li>
<strong>
Jaehong Kim
</strong>
(Undergraduate, Winter 2025 - present)
</li>
<li>
<strong>
Giheon Do
</strong>
(Undergraduate, Winter 2025 - present)
</li>
<li>
<strong>
Seungjong Yoo
</strong>
(Undergraduate, Winter 2025 - present)
</li>
<li>
<strong>
Bruno RAMIREZ LEDESMA
</strong>
(Undergraduate, Winter 2025 - present)
</li>
</ul>
</li>
<li>
<strong>
Alumni of our research group:
</strong>
<ul style="list-style-type:circle; margin:0px;">
<li>
<strong>
Minki Jang
</strong>
(B.S. Fall 2023 - Spring 2024, Now at 78ResearchLab)
</li>
<li>
<strong>
Dayeong Kang
</strong>
(B.S. Spring 2024 - Summer 2024, Now at LINE)
</li>
</ul>
</li>
</ul>
<!-- Publications -->
<header>
<h2>Publications</h2>
</header>
<h3>< International Conference and Journal Papers ></h3>
<ol>
<li>
<strong>
DRL-assisted task offloading in enhanced time-expanded graph (eTEG)-modeled aerial computing
</strong>
<br>
Jiang Mo, Ke Zhao, Limei Peng, <strong>Jiyeon Lee</strong>, Li Ma, Lixin Pu, Jipeng Fan
<br>
Computer Communications, Elsevier, Vol. 228, December 2024
</li>
<li>
<strong>
A Robust Decryption Technique Using Letter Frequency Analysis for Short Monoalphabetic Substitution Ciphers
</strong>
<br>
Dayeong Kang, <strong>Jiyeon Lee</strong>
<br>
Journal of Computing Science and Engineering, Vol. 18, September 2024
</li>
<li>
<strong>
Tracking WebVR User Activities through Hand Motions: An Attack Perspective
</strong>
<br>
<strong>Jiyeon Lee</strong>
<br>
IEICE Transactions on Information and Systems, Vol. E107-D, No. 8, pp.1089-1092, August 2024
</li>
<li>
<strong>
Data-Similarity-based IoT Node Selection for UAV Trajectory Optimization
</strong>
<br>
Haoran Mei, Muhammad Fawad Khan, Limei Peng, Byungchul Tak, <strong>Jiyeon Lee</strong>, Pin-Han Ho
<br>
Computers and Electrical Engineering, Elsevier, Vol. 112, December 2023
</li>
<li>
<strong>
VRKeyLogger: Virtual Keystroke Inference Attack via Eavesdropping Controller Usage Pattern in WebVR
</strong>
<br>
<strong>Jiyeon Lee</strong>, Hyosu Kim, Kilho Lee
<br>
Computers & Security, Elsevier, Vol. 134, November 2023
</li>
<li>
<strong>
Spy in Your Eye: Spycam Attack via Open-sided Mobile VR Device
</strong>
<br>
<strong>Jiyeon Lee</strong>, Kilho Lee
<br>
IEICE Transactions on Information and Systems, Vol. E105-D, No. 10, pp.1817-1820, October 2022
</li>
<li>
<strong>
Exploiting Missing Value Patterns for a Backdoor Attack on Machine Learning Models of Electronic Health Records: Development and Validation Study
</strong>
<br>
Byunggill Joe, Yonghyeon Park (co-first), Jihun Hamm, Insik Shin, <strong>Jiyeon Lee</strong><br>
JMIR Medical Informatics, Vol. 10, No. 8, August 2022
<!-- * Co-leading author -->
</li>
<li>
<strong>
AdCube: WebVR Ad Fraud and Practical Confinement of
Third-Party Ads
</strong>
<br>
Hyunjoo Lee, <strong>Jiyeon Lee (co-first)</strong>, Daejun Kim, Suman Jana, Insik Shin, Sooel Son<br>
Proceedings of the 30th USENIX Security Symposium (Security), Virtual, August 2021
</li>
<li>
<strong>
CanvasMirror: Secure Integration of Third-Party Library in WebVR Environment
</strong>
<br>
<strong>Jiyeon Lee</strong>
<br>
Doctoral Forum of 50th IEEE/IFIP Conference on Dependable Systems and Networks (DSN), Virtual, June 2020
</li>
<li>
<strong>
Pride and Prejudice in Progressive Web Apps:
Abusing Native App-like Features in Web Applications
</strong>
<br>
<strong>Jiyeon Lee</strong>, Hayeon Kim, Junghwan Park, Insik Shin, Sooel Son<br>
Proceedings of the 25th ACM Conference
on Computer and Communications Security (CCS), Toronto, Canada, October 2018
</li>
<li>
<strong>
Global EDF Schedulability Analysis for Parallel Tasks on Multi-core Platforms
</strong>
<br>
Hoon Sung Chwa, Jinkyu Lee, <strong>Jiyeon Lee</strong>, Kieu-My Phan, Arvind Easwaran, Insik Shin
<br>
IEEE Transactions on Parallel & Distributed Systems (TPDS),
Vol. 28, No. 5, pp.1331-1345, May 2017
</li>
<li>
<strong>
Thread-level Priority Assignment in Global Multiprocessor Scheduling for DAG Tasks
</strong>
<br>
<strong>Jiyeon Lee</strong>, Hoon Sung Chwa, Jinkyu Lee, Insik Shin
<br>
Journal of Systems and Software (JSS), Vol. 113, pp. 246-256, March 2016
</li>
<li>
<strong>
(<i>Best Paper Runner-up</i>) MC-Fluid: Fluid Model-based Mixed-Criticality Scheduling on Multiprocessors
</strong>
<br>
Jaewoo Lee, Kieu-My Phan, Xiaozhe Gu, <strong>Jiyeon Lee</strong>, Arvind Easwaran,
Insik Shin, Insup Lee
<br>
Proceedings of the 35th IEEE Real-Time Systems Symposium (RTSS),
Rome, Italy, December 2014
</li>
<li>
<strong>
Mobile Maestro: Enabling Immersive Multi-Speaker Audio Applications
on Commodity Mobile Devices
</strong>
<br>
Hyosu Kim, SangJeong Lee, Jung-Woo Choi, Hwidong Bae, <strong>Jiyeon Lee</strong>,
Junehwa Song, Insik Shin
<br>
Proceedings of the 16th ACM International Conference
on Ubiquitous Computing (UbiComp), Seattle, Washington, US, September 2014
</li>
</ol>
<h3>< Miscellaneous: Domestic Papers and Demos ></h3>
<ol>
<li>
<strong>
Enhancing Container Security Using Machine Learning Based on Kernel Tracing Logs
</strong>
<br>
Hyeonseok Shin, Minjung Jo, Hosang Yoo, Yongwon Lee, <strong>Jiyeon Lee</strong>, Byungchul Tak
<br>
Journal of KIISE, Vol. 51, No. 11, pp. 947-960, November 2024
</li>
<li>
<strong>
Analysis of Security Vulnerabilities and Personal Information Exposure Risks in Overleaf
</strong>
<br>
Suzi Kim, <strong>Jiyeon Lee</strong>
<br>
Journal of The Korea Society of Computer and Information, Vol. 29, No. 7, pp. 109-115, July 2024
</li>
<li>
<strong>
Metadata-based Backdoor Attack on Medical Neural Networks
</strong>
<br>
Yonghyeon Park, Byunggill Joe, <strong>Jiyeon Lee</strong>, Minwoo Jeong, Insik Shin
<br>
Workshop on Dependable and Secure Computing, Jeju, South Korea, August 2021
</li>
<li>
<strong>
Parallel Task Multi-core Scheduling for Real-Time Cyber-Physical Systems
</strong>
<br>
<strong>Jiyeon Lee</strong>, Insik Shin
<br>
Telecommunications Review, August 2015
</li>
<li>
<strong>
Real-time Audio Coordination Framework for Immersive Sound Reproduction
</strong>
<br>
Hyosu Kim, <strong>Jiyeon Lee</strong>, Hwidong Bae, Insik Shin
<br>
Demo session of the 35th IEEE Real-Time Systems Symposium
(RTSS@Work), Rome, Italy, December 2014
</li>
<li>
<strong>
(<i>Best Paper Award</i>) GPGPU Parallelization Techniques for Redundancy Elimination Algorithm
</strong>
<br>
Byunggill Joe, Dae R. Jeong, <strong>Jiyeon Lee</strong>, Insik Shin
<br>
Korean Institute of Information Scientists and Engineers (KIISE 2014), Pyeongchang, South Korea, December 2014
</li>
<li>
<strong>
GPU-SPARC: Accelerating Parallelism in Multi-GPU Real-Time Systems
</strong>
<br>
Wookhyun Han, Hwidong Bae, Hyosu Kim, <strong>Jiyeon Lee</strong>, Insik Shin
<br>
Technical Report, School of Computing, KAIST, CS-TR-2014-391, August 2014
</li>
<li>
<strong>
RT-SDN: Adaptive Routing and Priority Ordering
for Software-Defined Real-Time Networking
</strong>
<br>
Sangeun Oh, <strong>Jiyeon Lee</strong>, Kilho Lee, Insik Shin
<br>
Technical Report, School of Computing, KAIST, CS-TR-2014-387, August 2014
</li>
<li>
<strong>
A Survey on Real-time Support for Mixed-criticality Cyber-Physical Systems
</strong>
<br>
Jaewoo Lee, <strong>Jiyeon Lee</strong>, Insik Shin
<br>
Korea Information Science Society, Vol. 31, No. 12, December 2013
</li>
<li>
<strong>
(<i>Best Paper Award</i>) Optimal Priority Assignment for Parallel Tasks under Fixed Priority Scheduling in Realtime Systems
</strong>
<br>
<strong>Jiyeon Lee</strong>, Hoon Sung Chwa, Insik Shin
<br>
Korean Institute of Information Scientists and Engineers (KIISE 2013), Jeju, South Korea, November 2013
</li>
</ol>
</article>
<!-- About Me -->
<article id="aboutme" class="panel">
<br>
<h1>About Me</h1>
<br>
<!-- <header>
<h2>Education</h2>
</header>
<ul>
<li>
<strong>
Ph.D.
</strong>
in School of Computing, KAIST, South Korea, 2021
<ul style="list-style-type:circle; margin:0px;">
<li>
Advisor: Insik Shin
</li>
<li>
Dissertation: "Browser Evolution and Web Security: Security Defects and Client-side Countermeasures on Emerging Web Technologies"
</li>
</ul>
</li>
</ul> -->
<header>
<h2>Work Experiences</h2>
</header>
<ul>
<li>
<strong>
Post-doc Researcher @ Soongsil University
</strong>
(Sep. 2021 - Feb. 2023)
<ul style="list-style-type:circle; margin:0px;">
<li>
Advisor: Kilho Lee
</li>
<li>
Dependable Autonomous Vehicles
</li>
</ul>
</li>
<li>
<strong>
Research Internship @ Microsoft Research Asia
</strong>
(Apr. 2019 - Jun. 2019)
<ul style="list-style-type:circle; margin:0px;">
<li>
Mentor: Yunxin Liu in Heterogenous and Extreme Computing Group
</li>
<li>
Edge Intelligence
</li>
</ul>
</li>
</ul>
<header>
<h2>Teaching</h2>
</header>
<ul>
<li>
<strong>
CICE882: Network Security
</strong>
(Graduate, Spring 2025)
</li>
<li>
<strong>
COME762: Advanced Web Technology
</strong>
(Graduate, Fall 2024)
</li>
<!-- <li>
<strong>
COME368: Information Security
</strong>
(Undergraduate, Fall 2024)
</li> -->
<li>
<strong>
INFO701: Information Security
</strong>
(Graduate, Spring 2024)
</li>
<!-- <li>
<strong>
COMP743: Information Security
</strong>
(Graduate, Spring 2024)
</li> -->
<!-- <li>
<strong>
COMP319: Algorithm I
</strong>
(Undergraduate, Spring 2024)
</li> -->
<li>
<strong>
COMP743: Information Security
</strong>
(Graduate, Fall 2023, Spring 2024)
</li>
<li>
<strong>
COME368: Information Security
</strong>
(Undergraduate, Fall 2023, Fall 2024)
</li>
<li>
<strong>
COMP735: Algorithm Design and Analysis
</strong>
(Graduate, Spring 2023)
</li>
<li>
<strong>
COMP319: Algorithm I
</strong>
(Undergraduate, Spring 2023, Spring 2024, Spring 2025)
</li>
</ul>
<header>
<h2>Awards and Honors</h2>
</header>
<ul>
<li>
<strong>
Vulnerability Bounty Award
</strong>
(Bug 1781749), Firefox,
Jan. 2023
</li>
<li>
<strong>
Vulnerability Bounty Award
</strong>
(I-110061), Samsung Internet,
Jan. 2023
</li>
<li>
<strong>
Post-Doc Domestic Training Fellowship
</strong>
National Research Foundation (NRF),
2022-2023
</li>
<!-- <li>
<strong>
Student Grant
</strong>
The 28th Network and Distributed System Security Symposium (NDSS),
Feb. 2021
</li> -->
<li>
<strong>
EECS Rising Stars in Korea
</strong>
Sep. 2020
</li>
<li>
<strong>
STEM Research Team Project Fellowship
</strong>
Korea Women in Science and Technology Support Center (WISET),
2020
<!-- Apr. 2020 - Oct. 2020 -->
</li>
<li>
<strong>
PhD Fellowship
</strong>
NAVER Corporation,
Nov. 2019
</li>
<li>
<strong>
Vulnerability Bounty Award
</strong>
(I-100451), Samsung Internet,
Jan. 2019
</li>
<li>
<strong>
Research & Presentation Scholarship
</strong>
KAIST-D'LIVE,
Dec. 2018
</li>
<!-- <li>
<strong>
Student Travel Grant
</strong>
The 25th ACM Conference on Computer and Communications Security (CCS),
Oct. 2018
</li> -->
<li>
<strong>
Best Paper Award
</strong>
The 41st Korean Institute of Information Scientists and Engineers (KIISE),
Jan. 2015
</li>
<li>
<strong>
Best Paper Runner-up
</strong>
The 35th IEEE Real-Time Systems Symposium (RTSS),
Dec. 2014
</li>
<li>
<strong>
Best Paper Award
</strong>
The 40th Korean Institute of Information Scientists and Engineers (KIISE),
Nov. 2013
</li>
</ul>
<header>
<h2>Professional Activities</h2>
</header>
<!-- <h3>< Teaching Assistant or Preceptor ></h3>
<ul>
<li>
<strong>
Operating Systems and Lab. (CS330)
</strong>
School of Computing, KAIST
(Fall 2012, Fall 2013, Spring 2014, Spring 2015)
</li>
<li>
<strong>
Real-time Systems (CS634)
</strong>
School of Computing, KAIST
(Fall 2014)
</li>
<li>
<strong>
Counseling Assistant
</strong>
School of Computing, KAIST
(Spring 2013, Spring 2016, Spring 2018)
</li>
<li>
<strong>
Introduction to Data Science in Python
</strong>
Elice academy (Feb. 2018 - Mar. 2018)
</li>
<li>
<strong>
Computing Security (SEP543)
</strong>
Software Graduate Program, KAIST (Summer 2021)
</li>
</ul> -->
<h3>< (External) Reviewer ></h3>
<ul>
<li>
<strong>
ACM ASIA Conference on Computer and Communications Security (ASIACCS)
</strong>
(2022)
</li>
<li>
<strong>
Emerging Technologies and Factory Automation (ETFA)
</strong>
(2015)
</li>
<li>
<strong>
Euromicro Conference on Real-Time Systems (ECRTS)
</strong>
(2012, 2014 - 2015)
</li>
<li>
<strong>
IEEE Real-Time and Embedded Technology and Applications Symposium (RTAS)
</strong>
(2013 - 2014)
</li>
<li>
<strong>
IEEE Real-Time Systems Symposium (RTSS)
</strong>
(2012 - 2014)
</li>
<li>
<strong>
Real-Time Computing Systems and Applications (RTCSA)
</strong>
(2013)
</li>
<li>
<strong>
ACM SIGBED International Conference on Embedded Software (EMSOFT)
</strong>
(2012)
</li>
</ul>
<h3>< Invited Talks ></h3>
<ul>
<li>
<strong>
Browser Evolution and Web Security
</strong>
<ul style="list-style-type:circle; margin:0px;">
<li>
Software Seminar (COMP0432) at KNU, Sep. 19, 2023
</li>
<li>
CyPhy Lab. at Yonsei Univ., Apr. 12, 2022
</li>
</ul>
</li>
<li>
<strong>
AdCube: WebVR Ad Fraud and Practical Confinement of Third-Party Ads
</strong>
<ul style="list-style-type:circle; margin:0px;">
<li>
USENIX Security, Aug. 13, 2021
</li>
<li>
The future of K-SW with female researchers in KIISE, Jun. 24, 2021
</li>
</ul>
</li>
<!-- <li>
<strong>
WebVR Ad Fraud and Practical Confinement of Third-Party Ads
</strong>
The future of K-SW with female researchers in KIISE, Jun. 24, 2021
</li> -->
<li>
<strong>
A Study on the Detection and Defense of Vulnerabilities
Due to Emerging Web Technology
</strong>
<ul style="list-style-type:circle; margin:0px;">
<li>
Up-and-coming Doctor Session of KIISE Women Workshop, Oct. 30, 2020
</li>
<li>
EECS Rising Stars in Korea, Sep. 4, 2020
</li>
<li>
Doctoral Forum of KIISE, Dec. 19, 2019
</li>
</ul>
</li>
<!-- <li>
<strong>
A Study on the Detection and Defense of Vulnerabilities
Due to Emerging Web Technology
</strong>
EECS Rising Stars in Korea, Sep. 4, 2020
</li> -->
<li>
<strong>
CanvasMirror: Secure Integration of Third-Party Library in WebVR Environment
</strong>
Doctoral Forum of DSN, Jun. 29, 2020
</li>
<!-- <li>
<strong>
A Study on the Detection and Defense of Vulnerabilities Due to Emerging Web Technology
</strong>
Doctoral Forum of KIISE, Dec. 19, 2019
</li> -->
<li>
<strong>
Pride and Prejudice in Progressive Web Apps: Abusing Native App-like Features in Web Applications
</strong>
CCS, Oct. 18, 2018
</li>
<li>
<strong>
Learn How to Study in Baseball
</strong>
CPS Lab. at KAIST, Aug. 14, 2018.
</li>
<li>
<strong>
Real-time Audio Coordination Framework for Immersive Sound Reproduction
</strong>
RTSS@Work, Dec. 2, 2014.
</li>
<li>
<strong>
Survival in Master Program
</strong>
CPS Lab. at KAIST, Jan. 23, 2014.
</li>
<li>
<strong>
Optimal Priority Assignment for Parallel Tasks under Fixed Priority Scheduling in Real-time Systems
</strong>
KIISE, Nov. 16, 2013
</li>
</ul>
</article>
</div>
<!-- Footer -->
<div id="footer">
<ul class="copyright">
<li>© JIYEONLEE </li><li>Design: <a href="http://html5up.net">HTML5 UP</a></li>
<li>Last update: August 2024.</li>
</ul>
</div>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>