-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex-eng.html
More file actions
1128 lines (1100 loc) Β· 54.7 KB
/
Copy pathindex-eng.html
File metadata and controls
1128 lines (1100 loc) Β· 54.7 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 lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>AutoFiC</title>
<meta name="description" content="">
<meta name="keywords" content="">
<link href="https://cdn.jsdelivr.net/npm/aos@2.3.4/dist/aos.css" rel="stylesheet" />
<script src="https://cdn.jsdelivr.net/npm/aos@2.3.4/dist/aos.js"></script>
<!-- Favicons -->
<link href="assets/img/logo.png" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Fonts -->
<link href="https://fonts.googleapis.com" rel="preconnect">
<link href="https://fonts.gstatic.com" rel="preconnect" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/typed.js@2.0.12"></script>
<link rel="stylesheet" href="style.css" />
<!-- Main CSS File -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<link href="assets/css/main.css" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic' rel='stylesheet' type='text/css'>
</head>
<body class="index-page">
<header id="header" class="header d-flex align-items-center fixed-top">
<div class="container-fluid container-xl position-relative d-flex align-items-center">
<a href="index.html" class="logo d-flex align-items-center me-auto">
<img src="assets/img/logo.png" alt="">
<h1 class="sitename">AutoFiC</h1>
</a>
<nav id="navmenu" class="navmenu">
<ul>
<li><a href="#hero" class="active">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#work-process">Process</a></li>
<li><a href="#summary">Summary</a></li>
<li><a href="#timeline-section">How to use</a></li>
<li><a href="#team">Team</a></li>
<li><a href="#faq-2">Questions</a></li>
</nav>
<div class="lang-switcher" tabindex="0">
<img
src="assets/img/earth.png"
alt="Select Language"
class="lang-switcher__icon"
/>
<ul class="lang-switcher__dropdown">
<li>
<a href="index.html">
<img src="assets/img/korea.png" alt="Korea" class="flag-icon">
KOREA
</a>
</li>
<li>
<a href="?lang=en">
<img src="assets/img/usa.png" alt="English" class="flag-icon">
ENGLISH
</a>
</li>
</ul>
</div>
<a class="btn-getstarted" href="https://autofic.github.io/Dashboard">Go to Dashboard</a>
</div>
</header>
<main class="main">
<!-- Hero section start -->
<section id="hero" class="hero section dark-background">
<div class="container">
<div class="row gy-4">
<div class="col-lg-6 order-2 order-lg-1 d-flex flex-column justify-content-center" data-aos="zoom-out">
<h1>
<!-- Auto typing js code inserted -->
<span id="typed"></span>
</h1>
<p>AI based open source vulnerability detection, fixing and automated pull request solution.</p>
<!-- Button stage` -->
<div class="d-flex">
<a href="https://pypi.org/project/autofic-core/" class="btn-get-started me-2">
<i class="bi bi-filetype-py"></i>
Install from PyPI
</a>
<a href="https://github.com/AutoFiC" class="btn-get-started btn-github">
<i class="bi bi-github"></i>
View on GitHub
</a>
</div>
</div>
<div class="col-lg-6 order-1 order-lg-2 hero-img" data-aos="zoom-out" data-aos-delay="200">
<img src="assets/img/hero-img.png" class="img-fluid animated" alt="">
</div>
</div>
</div>
</section>
<!-- Hero section ended -->
<!-- Sponser section start -->
<section id="clients" class="clients section light-background">
<div class="container" data-aos="zoom-in">
<div class="swiper init-swiper">
<script type="application/json" class="swiper-config">
{
"loop": true,
"speed": 600,
"autoplay": {
"delay": 5000
},
"slidesPerView": "auto",
"pagination": {
"el": ".swiper-pagination",
"type": "bullets",
"clickable": true
},
"breakpoints": {
"320": {
"slidesPerView": 2,
"spaceBetween": 40
},
"480": {
"slidesPerView": 3,
"spaceBetween": 60
},
"640": {
"slidesPerView": 4,
"spaceBetween": 80
},
"992": {
"slidesPerView": 5,
"spaceBetween": 120
},
"1200": {
"slidesPerView": 6,
"spaceBetween": 120
}
}
}
</script>
<!-- Sponser image array -->
<div class="swiper-wrapper align-items-center">
<div class="swiper-slide"><img src="assets/img/clients/kitri.png" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/clients/whitehat.png" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/clients/kitri.png" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/clients/whitehat.png" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/clients/kitri.png" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/clients/whitehat.png" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/clients/kitri.png" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/clients/whitehat.png" class="img-fluid" alt=""></div>
</div>
</div>
</div>
</section>
<!-- Sponser section ended -->
<!-- About section start -->
<section id="about" class="about section">
<!-- Section title -->
<div class="container section-title" data-aos="fade-up">
<h2>About us</h2>
</div>
<!-- Section describe -->
<div class="container">
<div class="row gy-4">
<div class="col-lg-6 content" data-aos="fade-up" data-aos-delay="100">
<p>
We provide an automated solution that quickly detects vulnerabilities in open-source repositories on GitHub and uses LLM-based AI to automatically fix the vulnerabilities and submit pull requests.
</p>
<ul>
<li><i class="bi bi-check2-circle"></i> <span>Automated code vulnerability detection (Semgrep, CodeQL, SnykCode)</span></li>
<li><i class="bi bi-check2-circle"></i> <span>AI-based automated code fixing and guidance generation using LLM</span></li>
<li><i class="bi bi-check2-circle"></i> <span>Automated GitHub PR generation and CI/CD integration</span></li>
</ul>
</div>
<div class="col-lg-6" data-aos="fade-up" data-aos-delay="200">
<p><strong>AutoFiC</strong> is a fully automated security management system. Without any human intervention, SAST tools quickly detect vulnerabilities in the code, and an LLM model accurately fixes them, automatically generating a GitHub pull request.<br><strong>This allows developers to focus solely on core tasks instead of spending time on security issues.</strong></p>
<a href="https://pypi.org/project/autofic-core/" class="read-more"><span>Read More</span><i class="bi bi-arrow-right"></i></a>
</div>
</div>
</div>
</section>
<!-- About section ended -->
<!-- Work Process Section -->
<section id="work-process" class="work-process section">
<!-- Section Title -->
<div class="container section-title" data-aos="fade-up">
<h2>Work Process</h2>
<p>Below is a summary of the entire development process of the <strong>AutoFiC</strong> security service, from planning to implementation and deployment.<br>You can get an overview of the core technologies, automation workflow, and development strategy at a glance.</p>
</div>
<div class="container" data-aos="fade-up" data-aos-delay="100">
<!-- First chapter -->
<div class="row gy-5">
<div class="col-lg-4" data-aos="fade-up" data-aos-delay="200">
<div class="steps-item">
<div class="steps-image">
<img src="assets/img/steps/steps-1.webp" alt="Step 1" class="img-fluid" loading="lazy">
</div>
<div class="steps-content">
<div class="steps-number">01</div>
<h3>Repository Analysis</h3>
<p>Automatically scans source code on GitHub and accurately analyzes hidden security vulnerabilities in the code using SAST tools.</p>
<div class="steps-features">
<div class="feature-item">
<i class="bi bi-check-circle"></i>
<span>Automatic code repository scanning</span>
</div>
<div class="feature-item">
<i class="bi bi-check-circle"></i>
<span>Vulnerability detection based on SAST tools</span>
</div>
<div class="feature-item">
<i class="bi bi-check-circle"></i>
<span>Standardized processing of result data</span>
</div>
</div>
</div>
</div>
</div>
<!-- Second chapter -->
<div class="col-lg-4" data-aos="fade-up" data-aos-delay="300">
<div class="steps-item">
<div class="steps-image">
<img src="assets/img/steps/steps-2.webp" alt="Step 2" class="img-fluid" loading="lazy">
</div>
<div class="steps-content">
<div class="steps-number">02</div>
<h3>AI-based Code Planning</h3>
<p>Vulnerabilities detected through SAST tools are addressed by generating optimal fix code using an LLM model and providing security guidance.</p>
<div class="steps-features">
<div class="feature-item">
<i class="bi bi-check-circle"></i>
<span>LLM-based code fix strategy design</span>
</div>
<div class="feature-item">
<i class="bi bi-check-circle"></i>
<span>Automated code generation and customization</span>
</div>
<div class="feature-item">
<i class="bi bi-check-circle"></i>
<span>GitHub integration and PR preparation</span>
</div>
</div>
</div>
</div>
</div>
<!-- Third chapter -->
<div class="col-lg-4" data-aos="fade-up" data-aos-delay="400">
<div class="steps-item">
<div class="steps-image">
<img src="assets/img/steps/steps-3.webp" alt="Step 3" class="img-fluid" loading="lazy">
</div>
<div class="steps-content">
<div class="steps-number">03</div>
<h3>Automated Deployment</h3>
<p>Code fixes are automatically submitted as pull requests, supporting easy service operation without any manual intervention.</p>
<div class="steps-features">
<div class="feature-item">
<i class="bi bi-check-circle"></i>
<span>Automated PR submission and code merge management</span>
</div>
<div class="feature-item">
<i class="bi bi-check-circle"></i>
<span>CI/CD process integration</span>
</div>
<div class="feature-item">
<i class="bi bi-check-circle"></i>
<span>Web-based service dashboard provided</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Workflow section ended -->
<!-- Summary section start -->
<section id="summary" class="container bg-white my-5 py-5" data-aos="fade-up" data-aos-delay="200">
<div class="container py-5">
<div class="row align-items-center">
<!-- Left area -->
<div class="col-lg-6 mb-4 mb-lg-0">
<div class="d-flex align-items-center" style="min-height:150px;">
<!-- Shield logo(AutoFiC logo) flip animation by js code -->
<div class="logo-flip" id="shieldLogo" style="width: 150px; height: 150px; flex-shrink:0; display: flex; align-items: center; justify-content: center;">
<div class="logo-front" style="width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;">
<img src="assets/img/sast_logo/logo.png" alt="Shield Logo" style="width: 100%; height: 100%;" draggable="false">
</div>
<div class="logo-back" style="width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;">
<img src="assets/img/sast_logo/logo_back.png" alt="Shield Back" style="width: 100%; height: 100%;">
</div>
</div>
<div class="d-flex flex-column justify-content-center ms-4" style="height: 150px;">
<h2 class="fw-bold display-5 mb-0 text-start" style="color:#222;">
<span style="font-weight:900;">AutoFiC</span>
<br>by Numbers.
</h2>
</div>
</div>
<!-- Blue big numbers in this part -->
<div class="row mt-5 text-start">
<div class="col-md-4 mb-3 mb-md-0 text-center">
<div class="fw-semibold text-secondary">Total detected</div>
<div class="fs-1 fw-bold text-primary">
<span class="counter" data-aos="fade-up" data-aos-duration="5000" data-target="1250">0</span>
</div>
</div>
<div class="col-md-4 mb-3 mb-md-0 text-center">
<div class="fw-semibold text-secondary">Submitted PRs</div>
<div class="fs-1 fw-bold text-primary">
<span class="counter" data-aos="fade-up" data-aos-duration="5000" data-target="530">0</span>
</div>
</div>
<div class="col-md-4 text-center">
<div class="fw-semibold text-secondary">Under Review</div>
<div class="fs-1 fw-bold text-primary">
<span class="counter" data-aos="fade-up" data-aos-duration="5000" data-target="170">0</span>
</div>
</div>
</div>
</div>
<!-- Right area -->
<div class="col-lg-6">
<div class="mb-4">
<h4 class="fw-bold mb-1" style="color:#263238;">AutoFiC's history</h4>
<p id="autofic-duration" style="font-size:1.07em; color:#263238; font-weight:500;"></p>
</div>
<div class="mb-4">
<h4 class="fw-bold mb-1" style="color:#263238;">Average number of vulnerabilities detected</h4>
<p>
AutoFiC detected an average of <span id="mean-vuln" style="color:#2268e0; font-weight:bold;">10</span> vulnerabilities per open-source repository.
</p>
</div>
<div>
<h4 class="fw-bold mb-1" style="color:#263238;">Repositories analyzed</h4>
<!-- This given numbers are not static! -->
<p class="text-secondary mb-0">
Through AutoFiC, a total of <span id="repo-total" class="fw-bold text-primary">170</span> open-source repositories were analyzed,
detecting <span id="vuln-total" class="fw-bold text-primary">1,250</span> vulnerabilities.
The LLM directly modified the code, automatically generating <span id="pr-total" class="fw-bold text-primary">530</span> pull requests,
of which <span id="approve-pr" class="fw-bold text-primary">530</span> were under review.
</p>
</div>
</div>
</div>
</div>
<!-- Under timeline act by js code -->
<div class="container py-5">
<div class="row">
<div class="col-lg-12">
<div class="timeline-track position-relative mx-auto mt-3" id="timelineTrack"></div>
</div>
</div>
</div>
</section>
<!-- Workflow section ended -->
<!-- Timeline section start(Exactly How to use section) -->
<section id="timeline-section" class="section" data-aos="fade-up" data-aos-delay="300">
<div class="container section-title" data-aos="fade-up" data-aos-delay="200">
<h2>How to use AutoFiC?</h2>
<p>Even first-time users of AutoFiC can use it easily with the provided documentation.<br>Follow the steps and select the toggle according to your user environment's operating system to view an easy-to-understand guide.</p>
</div>
<ul class="timeline">
<!-- First timeline -->
<li>
<div class="direction-r">
<div class="flag-wrapper">
<img src="assets/img/sast_logo/logo.png" alt="GitHub" class="flag-icon logo_png" />
<span class="flag-text">AutoFiC basic setup</span>
<div class="platform-selector">
<span class="platform-selected">Windows</span>
<span class="arrow">βΎ</span>
<ul class="platform-options">
<li data-platform="Windows" id="openModalBtn1">Windows</li>
<li data-platform="Mac" id="openModalBtn2">Mac</li>
</ul>
</div>
</div>
<div class="desc">Complete the basic setup of AutoFiC, including environment variable configuration and practice environment setup.</div>
</div>
</li>
<!-- Second timeline -->
<li>
<div class="direction-l">
<div class="flag-wrapper">
<span class="flag-text">SAST tool install</span>
<img src="assets/img/sast_logo/snyk.png" alt="GitHub" class="flag-icon logo_png" />
<div class="platform-selector">
<span class="platform-selected">Windows</span>
<span class="arrow">βΎ</span>
<ul class="platform-options">
<li data-platform="Windows" id="openModalBtn3">Windows</li>
<li data-platform="Mac" id="openModalBtn4">Mac</li>
</ul>
</div>
</div>
<div class="desc">Describes the local installation process for Semgrep, CodeQL, and SnykCode, as well as how to obtain and assign API keys.</div>
</div>
</li>
<!-- Third timeline -->
<li>
<div class="direction-r">
<div class="flag-wrapper">
<img
src="assets/img/sast_logo/logo.png"
alt="GitHub"
class="flag-icon logo_png"
/>
<span class="flag-text">How to use AutoFiC?</span>
<div class="platform-selector" id="platformSelector">
<span class="platform-selected">Windows</span>
<span class="arrow">βΎ</span>
<ul class="platform-options">
<li data-platform="Windows" id="openModalBtn5">Windows</li>
<li data-platform="Mac" id="openModalBtn6">Mac</li>
</ul>
</div>
</div>
<div class="desc">
With AutoFiC, the entire process of vulnerability detection, fixing, and pull request submission for open-source repositories is automated.
</div>
</div>
</li>
</ul>
</section>
<!-- Timeline section ended -->
<!-- how to use playground start -->
<!-- This is needed to use how to use section. -> First window explain -->
<div class="modal fade" id="myModal1" tabindex="-1" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-scrollable custom-size">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="myModalLabel">AutoFiC Basic Setup</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal"></button>
</div>
<div class="modal-body">
<!-- First terminal -->
<h4 class="bi bi-github"> Github repository clone</h4>
<div class="terminal-window">
<div class="terminal-header">
<span class="terminal-btn red"></span>
<span class="terminal-btn yellow"></span>
<span class="terminal-btn green"></span>
</div>
<div class="terminal-body" id="demoTerminal">
</div>
</div>
<!-- Second terminal -->
<h4 class="mt-4 bi bi-cloud-download"> Python virtual environment setup</h4>
<div class="terminal-window">
<div class="terminal-header">
<span class="terminal-btn red"></span>
<span class="terminal-btn yellow"></span>
<span class="terminal-btn green"></span>
</div>
<div class="terminal-body" id="actionsTerminal">
</div>
</div>
<!-- Third terminal -->
<h4 class="mt-4 bi bi-database-add"> .env file setup</h4>
<div class="terminal-window">
<div class="terminal-header">
<span class="terminal-btn red"></span>
<span class="terminal-btn yellow"></span>
<span class="terminal-btn green"></span>
</div>
<div class="terminal-body" id="envfileTerminal">
</div>
</div>
</div>
</div>
</div>
</div>
<!-- This is needed to use how to use section. -> First Mac explain -->
<div class="modal fade" id="myModal2" tabindex="-1" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-scrollable custom-size">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="myModalLabel">AutoFiC Basic Setup</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal"></button>
</div>
<div class="modal-body">
<!-- First terminal -->
<h4 class="bi bi-github"> Github repository clone</h4>
<div class="terminal-window">
<div class="terminal-header">
<span class="terminal-btn red"></span>
<span class="terminal-btn yellow"></span>
<span class="terminal-btn green"></span>
</div>
<div class="terminal-body" id="demoTerminal">
</div>
</div>
<!-- Second terminal -->
<h4 class="mt-4 bi bi-cloud-download"> Python virtual environment setup</h4>
<div class="terminal-window">
<div class="terminal-header">
<span class="terminal-btn red"></span>
<span class="terminal-btn yellow"></span>
<span class="terminal-btn green"></span>
</div>
<div class="terminal-body" id="actionsTerminal">
</div>
</div>
<!-- Third terminal -->
<h4 class="mt-4 bi bi-database-add"> .env file setup</h4>
<div class="terminal-window">
<div class="terminal-header">
<span class="terminal-btn red"></span>
<span class="terminal-btn yellow"></span>
<span class="terminal-btn green"></span>
</div>
<div class="terminal-body" id="envfileTerminal">
</div>
</div>
</div>
</div>
</div>
</div>
<!-- This is needed to use how to use section. -> Second window explain -->
<div class="modal fade" id="myModal3" tabindex="-1" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-scrollable custom-size">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="myModalLabel">SAST Tool Installation and Integration</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal"></button>
</div>
<div class="modal-body">
<!-- First terminal -->
<h4 class="bi bi-rocket-takeoff"> Install Semgrep</h4>
<div class="terminal-window">
<div class="terminal-header">
<span class="terminal-btn red"></span>
<span class="terminal-btn yellow"></span>
<span class="terminal-btn green"></span>
</div>
<div class="terminal-body" id="demoTerminal">
</div>
</div>
<!-- Second terminal -->
<h4 class="mt-4 bi bi-train-front"> Install CodeQL</h4>
<div class="terminal-window">
<div class="terminal-header">
<span class="terminal-btn red"></span>
<span class="terminal-btn yellow"></span>
<span class="terminal-btn green"></span>
</div>
<div class="terminal-body" id="actionsTerminal">
</div>
</div>
<!-- Third terminal -->
<h4 class="mt-4 bi bi-database-add"> Install SynkCode</h4>
<div class="terminal-window">
<div class="terminal-header">
<span class="terminal-btn red"></span>
<span class="terminal-btn yellow"></span>
<span class="terminal-btn green"></span>
</div>
<div class="terminal-body" id="envfileTerminal">
</div>
</div>
<!-- Fourth useage part(img) -->
<h6 class="mt-4 bi bi-database-add"> Enter the API key from the image below into the .env file.</h6>
<div class="terminal-image-wrapper mt-4">
<img
src="assets/img/example.png"
alt="SynkCode μ€μΉ μμ"
class="terminal-image"
/>
</div>
</div>
</div>
</div>
</div>
<!-- This is needed to use how to use section. -> Second Mac explain -->
<div class="modal fade" id="myModal4" tabindex="-1" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-scrollable custom-size">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="myModalLabel">SAST Tool Installation and Integration</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal"></button>
</div>
<div class="modal-body">
<!-- First terminal -->
<h4 class="bi bi-rocket-takeoff"> Install Semgrep</h4>
<div class="terminal-window">
<div class="terminal-header">
<span class="terminal-btn red"></span>
<span class="terminal-btn yellow"></span>
<span class="terminal-btn green"></span>
</div>
<div class="terminal-body" id="demoTerminal">
</div>
</div>
<!-- Second terminal -->
<h4 class="mt-4 bi bi-train-front"> Install CodeQL</h4>
<div class="terminal-window">
<div class="terminal-header">
<span class="terminal-btn red"></span>
<span class="terminal-btn yellow"></span>
<span class="terminal-btn green"></span>
</div>
<div class="terminal-body" id="actionsTerminal">
</div>
</div>
<!-- Third terminal -->
<h4 class="mt-4 bi bi-database-add"> Install SynkCode</h4>
<div class="terminal-window">
<div class="terminal-header">
<span class="terminal-btn red"></span>
<span class="terminal-btn yellow"></span>
<span class="terminal-btn green"></span>
</div>
<div class="terminal-body" id="envfileTerminal">
</div>
</div>
Fourth useage part(img)
<h6 class="mt-4 bi bi-database-add"> Enter the API key from the image below into the .env file.</h6>
<div class="terminal-image-wrapper mt-4">
<img
src="assets/img/example.png"
alt="SynkCode μ€μΉ μμ"
class="terminal-image"
/>
</div>
</div>
</div>
</div>
</div>
<!-- This is needed to use how to use section. -> Third Window explain -->
<div class="modal fade" id="myModal5" tabindex="-1" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-scrollable custom-size">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="myModalLabel">How to use AutoFiC?</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal"></button>
</div>
<div class="modal-body">
<!-- First terminal -->
<h4 class="bi bi-rocket-takeoff"> How to use AutoFiC?</h4>
<div class="terminal-window">
<div class="terminal-header">
<span class="terminal-btn red"></span>
<span class="terminal-btn yellow"></span>
<span class="terminal-btn green"></span>
</div>
<div class="terminal-body" id="demoTerminal">
</div>
</div>
<!-- Second terminal -->
<h4 class="mt-4 bi bi-train-front"> Run AutoFiC Detection/Fix/PR Automation</h4>
<div class="terminal-window">
<div class="terminal-header">
<span class="terminal-btn red"></span>
<span class="terminal-btn yellow"></span>
<span class="terminal-btn green"></span>
</div>
<div class="terminal-body" id="actionsTerminal">
</div>
</div>
</div>
</div>
</div>
</div>
<!-- This is needed to use how to use section. -> Third Mac explain -->
<div class="modal fade" id="myModal6" tabindex="-1" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-scrollable custom-size">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="myModalLabel">How to use AutoFiC?</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal"></button>
</div>
<div class="modal-body">
<!-- First terminal -->
<h4 class="bi bi-rocket-takeoff"> How to use AutoFiC?</h4>
<div class="terminal-window">
<div class="terminal-header">
<span class="terminal-btn red"></span>
<span class="terminal-btn yellow"></span>
<span class="terminal-btn green"></span>
</div>
<div class="terminal-body" id="demoTerminal">
</div>
</div>
<!-- Second terminal -->
<h4 class="mt-4 bi bi-train-front"> Run AutoFiC Detection/Fix/PR Automation</h4>
<div class="terminal-window">
<div class="terminal-header">
<span class="terminal-btn red"></span>
<span class="terminal-btn yellow"></span>
<span class="terminal-btn green"></span>
</div>
<div class="terminal-body" id="actionsTerminal">
</div>
</div>
</div>
</div>
</div>
</div>
<!-- how to use playground ended -->
<!-- Team section start -->
<section id="team" class="team section">
<div class="container section-title" data-aos="fade-up" data-aos-delay="200">
<h2>AutoFiC Team</h2>
</div>
<div class="container">
<div class="row justify-content-center gx-4 gy-4">
<!-- Inyeong Jang section -->
<div class="col-6 col-md-2" data-aos="fade-up" data-aos-delay="200">
<div class="team-card position-relative rounded-3 shadow text-center p-3 mb-3">
<a href="https://github.com/inyeongjang" target="_blank" class="text-decoration-none" style="display:block">
<div class="profile-pic mx-auto mb-2">
<img src="assets/img/person/player1.png" class="img-fluid rounded-circle border" width="100" height="100" alt="Inyeong Jang">
</div>
<div class="member-name fw-bold">Inyeong Jang</div>
<div class="social">
<a href="https://github.com/inyeongjang"><i class="bi bi-github"></i></a>
<a href=""><i class="bi bi-twitter-x"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</a>
<!-- Popup part -->
<div class="popup-info rounded-3 shadow-lg p-3">
<h5>πͺͺ Project Manager</h5>
<ul>
<li>AutoFiC General Project Manager</li>
<li>Designed automation for Semgrep/CodeQL/SnykCode</li>
<li>Implemented preprocessing for Semgrep/CodeQL/SnykCode</li>
<li>Team lead and midterm presenter</li>
<li>Final presentation and report submission</li>
<li>Provided leadership and feedback across all AutoFiC activities</li>
</ul>
</div>
</div>
</div>
<!-- Minchae Kim section -->
<div class="col-6 col-md-2" data-aos="fade-up" data-aos-delay="200">
<div class="team-card position-relative rounded-3 shadow text-center p-3 mb-3">
<a href="https://github.com/minxxcozy" target="_blank" class="text-decoration-none" style="display:block">
<div class="profile-pic mx-auto mb-2">
<img src="assets/img/person/player2.jpeg" class="img-fluid rounded-circle border" width="100" height="100" alt="Inyeong Jang">
</div>
<div class="member-name fw-bold">Minchae Kim</div>
<div class="social">
<a href="https://github.com/minxxcozy"><i class="bi bi-github"></i></a>
<a href=""><i class="bi bi-twitter-x"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</a>
<!-- Popup part -->
<div class="popup-info rounded-3 shadow-lg p-3">
<h5>π©π»βπ» Development Team</h5>
<ul>
<li>Implemented automatic execution of Semgrep</li>
<li>Designed prompt engineering and templates</li>
<li>Implemented automatic prompt generation</li>
<li>Implemented diff generation and patch logic</li>
<li>Refactored the entire AutoFiC project</li>
</ul>
</div>
</div>
</div>
<!-- Eunsol Kim section -->
<div class="col-6 col-md-2" data-aos="fade-up" data-aos-delay="200">
<div class="team-card position-relative rounded-3 shadow text-center p-3 mb-3">
<a href="https://github.com/eunsol1530" target="_blank" class="text-decoration-none" style="display:block">
<div class="profile-pic mx-auto mb-2">
<img src="assets/img/person/player3.png" class="img-fluid rounded-circle border" width="100" height="100" alt="Inyeong Jang">
</div>
<div class="member-name fw-bold">Eunsol Kim</div>
<div class="social">
<a href="https://github.com/eunsol1530"><i class="bi bi-github"></i></a>
<a href=""><i class="bi bi-twitter-x"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</a>
<!-- Popup part -->
<div class="popup-info rounded-3 shadow-lg p-3">
<h5>π©π»βπ» Development Team</h5>
<ul>
<li>Implemented GitHub API integration</li>
<li>Implemented LLM API integration and automatic invocation</li>
<li>Improved UI/UX</li>
<li>Refactored the entire AutoFiC project</li>
</ul>
</div>
</div>
</div>
<!-- Seonju Park section -->
<div class="col-6 col-md-2" data-aos="fade-up" data-aos-delay="200">
<div class="team-card position-relative rounded-3 shadow text-center p-3 mb-3">
<a href="https://github.com/seoonju" target="_blank" class="text-decoration-none" style="display:block">
<div class="profile-pic mx-auto mb-2">
<img src="assets/img/person/player4.png" class="img-fluid rounded-circle border" width="100" height="100" alt="Inyeong Jang">
</div>
<div class="member-name fw-bold">Seonju Park</div>
<div class="social">
<a href="https://github.com/seoonju"><i class="bi bi-github"></i></a>
<a href=""><i class="bi bi-twitter-x"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</a>
<!-- Popup part -->
<div class="something rounded-3 shadow-lg p-3">
<h5>π¬ Research Team</h5>
<ul>
<li>Authored a research paper comparing SAST/LLM vulnerability detection performance</li>
<li>Implemented CD automation pipeline</li>
<li>Reviewed code for autofic.github.io</li>
<li>Reviewed log collection and data preprocessing code</li>
<li>Designed and implemented the dashboard back-end</li>
</ul>
</div>
</div>
</div>
<!-- Jeongmin Oh section -->
<div class="col-6 col-md-2" data-aos="fade-up" data-aos-delay="200">
<div class="team-card position-relative rounded-3 shadow text-center p-3 mb-3">
<a href="https://github.com/soonnae" target="_blank" class="text-decoration-none" style="display:block">
<div class="profile-pic mx-auto mb-2">
<img src="assets/img/person/player5.png" class="img-fluid rounded-circle border" width="100" height="100" alt="Inyeong Jang">
</div>
<div class="member-name fw-bold">Jeongmin Oh</div>
<div class="social">
<a href="https://github.com/soonnae"><i class="bi bi-github"></i></a>
<a href=""><i class="bi bi-twitter-x"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</a>
<!-- Popup part -->
<div class="something rounded-3 shadow-lg p-3">
<h5>π©π»βπ» Development Team</h5>
<ul>
<li>Implemented source code download</li>
<li>Implemented LLM response parsing</li>
<li>Implemented diff generation and patch logic</li>
<li>Prompt Engineering and UI/UX Enhancement</li>
<li>Refactored the entire AutoFiC project</li>
</ul>
</div>
</div>
</div>
</div>
<!-- Hongseo Jang section -->
<div class="row justify-content-center gx-4 gy-4">
<div class="col-6 col-md-2" data-aos="fade-up" data-aos-delay="200">
<div class="team-card position-relative rounded-3 shadow text-center p-3 mb-3">
<a href="https://github.com/pxxguin" target="_blank" class="text-decoration-none" style="display:block">
<div class="profile-pic mx-auto mb-2">
<img src="assets/img/person/player6.png" class="img-fluid rounded-circle border" width="100" height="100" alt="Inyeong Jang">
</div>
<div class="member-name fw-bold">Hongseo Jang</div>
<div class="social">
<a href="https://github.com/pxxguin"><i class="bi bi-github"></i></a>
<a href=""><i class="bi bi-twitter-x"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</a>
<!-- Popup part -->
<div class="popup-info rounded-3 shadow-lg p-3">
<h5>π¬ Research Team</h5>
<ul>
<li>Authored a research paper comparing SAST/LLM vulnerability detection performance</li>
<li>Implemented automation for fork, clone, commit, and pull request</li>
<li>Implemented CI workflow and Slack/Discord notifications</li>
<li>Automated collection of vulnerable repositories using SnykCode and CodeQL</li>
<li>Designed and developed autofic.github.io</li>
</ul>
</div>
</div>
</div>
<!-- Yunji Jung section -->
<div class="col-6 col-md-2" data-aos="fade-up" data-aos-delay="200">
<div class="team-card position-relative rounded-3 shadow text-center p-3 mb-3">
<a href="https://github.com/jungyun404" target="_blank" class="text-decoration-none" style="display:block">
<div class="profile-pic mx-auto mb-2">
<img src="assets/img/person/player7.png" class="img-fluid rounded-circle border" width="100" height="100" alt="Inyeong Jang">
</div>
<div class="member-name fw-bold">Yunji Jung</div>
<div class="social">
<a href="https://github.com/jungyun404"><i class="bi bi-github"></i></a>
<a href=""><i class="bi bi-twitter-x"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</a>
<!-- Popup part -->
<div class="popup-info rounded-3 shadow-lg p-3">
<h5>π¬ Research Team</h5>
<ul>
<li>Authored a research paper comparing SAST/LLM vulnerability detection performance</li>
<li>Implemented log collection and data preprocessing</li>
<li>Reviewed code for autofic.github.io</li>
<li>Designed and implemented the dashboard back-end</li>
<li>Automated collection of vulnerable repositories using Semgrep</li>
</ul>
</div>
</div>
</div>
<!-- Yunjeong Choe section -->
<div class="col-6 col-md-2" data-aos="fade-up" data-aos-delay="200">
<div class="team-card position-relative rounded-3 shadow text-center p-3 mb-3">
<a href="https://github.com/yjchoe818" target="_blank" class="text-decoration-none" style="display:block">
<div class="profile-pic mx-auto mb-2">
<img src="assets/img/person/player8.png" class="img-fluid rounded-circle border" width="100" height="100" alt="Inyeong Jang">
</div>
<div class="member-name fw-bold">Yunjeong Choe</div>
<div class="social">
<a href="https://github.com/yjchoe818"><i class="bi bi-github"></i></a>
<a href=""><i class="bi bi-twitter-x"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</a>
<!-- Popup part -->
<div class="popup-info rounded-3 shadow-lg p-3">
<h5>π¬ Research Team</h5>
<ul>
<li>Authored a research paper comparing SAST/LLM vulnerability detection performance</li>
<li>Reviewed log collection and data preprocessing code</li>
<li>Reviewed code for autofic.github.io</li>
<li>Designed and implemented the dashboard front-end</li>
</ul>
</div>
</div>
</div>
<!-- Suhyun Park section -->
<div class="col-6 col-md-2" data-aos="fade-up" data-aos-delay="200">
<div class="team-card position-relative rounded-3 shadow text-center p-3 mb-3">
<a href="https://github.com/lovehyun" target="_blank" class="text-decoration-none" style="display:block">
<div class="profile-pic mx-auto mb-2">
<img src="assets/img/person/player9.png" class="img-fluid rounded-circle border" width="100" height="100" alt="Inyeong Jang">
</div>
<div class="member-name fw-bold">Suhyun Park</div>
<div class="social">
<a href="https://github.com/lovehyun"><i class="bi bi-github"></i></a>
<a href=""><i class="bi bi-twitter-x"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</a>
<!-- Popup part -->
<div class="something rounded-3 shadow-lg p-3">
<h5>π¨π»βπ« Mentor</h5>
<ul>
<li>Mentoring</li>
<li>Reviewed overall project codebase</li>
<li>Guided future development direction</li>
<li>Supported patent application process</li>
<li>Served as central coordinator across all project areas</li>
</ul>
</div>
</div>
</div>
<!-- Changhyun Lee section -->
<div class="col-6 col-md-2" data-aos="fade-up" data-aos-delay="200">
<div class="team-card position-relative rounded-3 shadow text-center p-3 mb-3">
<a href="https://github.com/eeche" target="_blank" class="text-decoration-none" style="display:block">
<div class="profile-pic mx-auto mb-2">