forked from fusion-scan/fusion-scan.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
4840 lines (4373 loc) · 192 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
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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="keywords"
content="Qingkai Shi, QingkaiShi, Pinpoint, Fusion, Static Code Analysis, Static Code Analyzer, Program Analysis and Testing">
<title>Fusion and Pinpoint Scan - Static Analysis</title>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
</head>
<body text="#000000" bgcolor="#ffffff" link="#005bb7" vlink="#005bb7">
<font face="helvetica">
<center>
<br>
<h2>Fusion and Pinpoint Scan - Static Analysis</h2>
<p>This is an incomplete list collecting a part of bugs reported by Fusion and Pinpoint Scan (Total: <b
id="total">200</b> Bugs)</p>
<br>
<a href="#" onclick="display('papers');">[Related Papers]</a> |
<a href="https://qingkaishi.github.io/CVE.html" target="_blank">[CVE Identifiers]</a> |
<a href="#" onclick="display('bugs');">[Discovered Bugs]</a> |
<a href="#" onclick="display('statistics');">[Statistics]</a> |
<a href="https://qingkaishi.github.io/" target="_blank">[About]</a>
</center>
<div id="papers" style="display: none;">
<br clear="all">
<hr>
<h3>Related Papers</h3>
<ul style="text-align:justify; text-justify:inter-ideograph; margin-right: 5mm; line-height: 140%">
<li style="margin-bottom: 10px;"><a style="text-decoration:none;font-weight:bold;color:black;"
href="/#">USENIX Security'23</a>: <a
style="text-decoration:none;font-weight:bold;color:black;" href="/#">
Place Your Locks Well: Understanding and Detecting Lock Misuse Bugs</a><br />
Yuandao Cai, Peisen Yao, Chengfeng Ye, Charles Zhang<br />
The USENIX Security Symposium<br />
</li>
<li style="margin-bottom: 10px;"><a style="text-decoration:none;font-weight:bold;color:black;"
href="/#">TOSEM'23</a>: <a
style="text-decoration:none;font-weight:bold;color:black;" href="/#">
Anchor: Fast and Precise Value-Flow Analysis for Containers via Memory Orientation</a><br />
Chengpeng Wang, Wenyang Wang, Peisen Yao, <a href="https://qingkaishi.github.io/">Qingkai Shi</a>, Jinguo Zhou, Xiao Xiao, Charles Zhang<br />
ACM Transactions on Software Engineering and Methodology<br />
</li>
<li style="margin-bottom: 10px;"><a style="text-decoration:none;font-weight:bold;color:black;"
href="/#">ESEC/FSE'22</a>: <a
style="text-decoration:none;font-weight:bold;color:black;" href="/#">
Peahen: Fast and Precise Static Deadlock Detection via Context Reduction</a><br />
Yuandao Cai, Chengfeng Ye, <a href="https://qingkaishi.github.io/">Qingkai Shi</a>, Charles Zhang<br />
The ACM Joint European Software Engineering Conference and Symposium on the Foundations of Software Engineering<br />
</li>
<li style="margin-bottom: 10px;"><a style="text-decoration:none;font-weight:bold;color:black;"
href="/#">OOPSLA'22</a>: <a
style="text-decoration:none;font-weight:bold;color:black;" href="/#">
Indexing the Extended Dyck-CFL Reachability for Context-Sensitive Program Analysis</a><br />
<a href="https://qingkaishi.github.io/">Qingkai Shi</a>, Yongchao Wang, Peisen Yao, Charles Zhang<br />
The ACM SIGPLAN Conference on Objected Oriented Programming, Systems, Languages, and
Applications<br />
</li>
<li style="margin-bottom: 10px;"><a style="text-decoration:none;font-weight:bold;color:black;"
href="/#">OOPSLA'22</a>: <a
style="text-decoration:none;font-weight:bold;color:black;" href="/#">
Complexity-Guided Container Replacement Synthesis</a><br />
Chengpeng Wang, Peisen Yao, Wensheng Tang, <a href="https://qingkaishi.github.io/">Qingkai Shi</a>, Charles Zhang<br />
The ACM SIGPLAN Conference on Objected Oriented Programming, Systems, Languages, and
Applications<br />
</li>
<li style="margin-bottom: 10px;"><a style="text-decoration:none;font-weight:bold;color:black;"
href="https://conf.researchr.org/home/icse-2022">ICSE'22</a>: <a
style="text-decoration:none;font-weight:bold;color:black;" href="/#">Precise Divide-By-Zero Detection with Affirmative Evidence</a><br />
Yiyuan Guo, Jinguo Zhou, Peisen Yao, <a href="https://qingkaishi.github.io/">Qingkai Shi</a>, Charles Zhang<br />
The ACM/IEEE International Conference on Software Engineering<br />
</li>
<li style="margin-bottom: 10px;"><a style="text-decoration:none;font-weight:bold;color:black;"
href="https://conf.researchr.org/home/ase-2021">ASE'21</a>: <a
style="text-decoration:none;font-weight:bold;color:black;" href="/#">Transcode: Detecting Status
Code Mapping Errors in Large-Scale Systems</a><br />
Wensheng Tang, Yikun Hu, Gang Fan, Peisen Yao, Rongxin Wu, Guangyuan Bai, Pengcheng Wang, Charles
Zhang<br />
The ACM/IEEE International Conference on Automated Software Engineering<br />
</li>
<li style="margin-bottom: 10px;"><a style="text-decoration:none;font-weight:bold;color:black;"
href="https://2021.splashcon.org/track/splash-2021-oopsla">OOPSLA'21</a>: <a
style="text-decoration:none;font-weight:bold;color:black;" href="/#">Program Analysis via
Efficient Symbolic Abstraction</a><br />
Peisen Yao, <a href="https://qingkaishi.github.io/">Qingkai Shi</a>, Heqing Huang, Charles
Zhang<br />
The ACM SIGPLAN Conference on Objected Oriented Programming, Systems, Languages, and
Applications<br />
</li>
<li style="margin-bottom: 10px;"><a style="text-decoration:none;font-weight:bold;color:black;"
href="https://pldi21.sigplan.org/home">PLDI'21</a>: <a
style="text-decoration:none;font-weight:bold;color:black;"
href="https://qingkaishi.github.io/public_pdfs/PLDI21-Fusion.pdf">Path-Sensitive Sparse Analysis
without
Path Conditions</a><br />
<a href="https://qingkaishi.github.io/">Qingkai Shi</a>, Peisen Yao, Rongxin Wu, Charles Zhang<br />
The ACM SIGPLAN Conference on Programming Language Design and Implementation<br />
</li>
<li style="margin-bottom: 10px;"><a style="text-decoration:none;font-weight:bold;color:black;"
href="https://pldi21.sigplan.org/home">PLDI'21</a>: <a
style="text-decoration:none;font-weight:bold;color:black;"
href="https://home.cse.ust.hk/~charlesz/canary.pdf">Canary: Practical Static Detection of
Inter-Thread Value-Flow Bugs</a><br />
Yuandao Cai, Peisen Yao, Charles Zhang<br />
The ACM SIGPLAN Conference on Programming Language Design and Implementation<br />
</li>
<li style="margin-bottom: 10px;"><a style="text-decoration:none;font-weight:bold;color:black;"
href="https://conf.researchr.org/home/issta-2020">ISSTA'20</a>: <a
style="text-decoration:none;font-weight:bold;color:black;"
href="https://qingkaishi.github.io/public_pdfs/ISSTA20-Trident.pdf">Fast Bit-Vector
Satisfiability</a><br />
Peisen Yao, <a href="https://qingkaishi.github.io/">Qingkai Shi</a>, Heqing Huang, Charles
Zhang<br />
The ACM SIGSOFT International Symposium on Software Testing and Analysis<br />
</li>
<li style="margin-bottom: 10px;"><a style="text-decoration:none;font-weight:bold;color:black;"
href="https://conf.researchr.org/home/issta-2020">ISSTA'20</a>: <a
style="text-decoration:none;font-weight:bold;color:black;"
href="https://qingkaishi.github.io/public_pdfs/ISSTA20-CCD.pdf">Functional Code Clone Detection
with Syntax and Semantics Fusion Learning</a><br />
Chunrong Fang, Zixi Liu, Yangyang Shi, Jeff Huang, <a href="https://qingkaishi.github.io/">Qingkai
Shi</a><br />
The ACM SIGSOFT International Symposium on Software Testing and Analysis<br />
</li>
<li style="margin-bottom: 10px;"><a style="text-decoration:none;font-weight:bold;color:black;"
href="https://conf.researchr.org/home/icse-2020">ICSE'20</a>: <a
style="text-decoration:none;font-weight:bold;color:black;"
href="https://qingkaishi.github.io/public_pdfs/ICSE2020a.pdf">Pipelining Bottom-up Data Flow
Analysis</a><br />
<a href="https://qingkaishi.github.io/">Qingkai Shi</a>, Charles Zhang<br />
The ACM/IEEE International Conference on Software Engineering<br />
</li>
<li style="margin-bottom: 10px;"><a style="text-decoration:none;font-weight:bold;color:black;"
href="https://conf.researchr.org/home/icse-2020">ICSE'20</a>: <a
style="text-decoration:none;font-weight:bold;color:black;"
href="https://qingkaishi.github.io/public_pdfs/ICSE2020b.pdf">Conquering the Extensional
Scalability Problem
for Value-Flow Analysis Frameworks</a><br />
<a href="https://qingkaishi.github.io/">Qingkai Shi</a>, Rongxin Wu, Gang Fan, Charles Zhang<br />
The ACM/IEEE International Conference on Software Engineering<br />
</li>
<li style="margin-bottom: 10px;"><a style="text-decoration:none;font-weight:bold;color:black;"
href="https://conf.researchr.org/home/icse-2019">ICSE'19</a>: <a
style="text-decoration:none;font-weight:bold;color:black;"
href="https://qingkaishi.github.io/public_pdfs/ICSE2019.pdf">Smoke: Scalable Path-Sensitive
Memory Leak
Detection for Millions of Lines of Code</a><br />
Gang Fan, Rongxin Wu, <a href="https://qingkaishi.github.io/">Qingkai Shi</a>, Xiao Xiao, Jinguo
Zhou, Charles Zhang<br />
The ACM/IEEE International Conference on Software Engineering<br />
</li>
<li style="margin-bottom: 10px;"><a style="text-decoration:none;font-weight:bold;color:black;"
href="https://pldi18.sigplan.org/home">PLDI'18</a>: <a
style="text-decoration:none;font-weight:bold;color:black;"
href="https://qingkaishi.github.io/public_pdfs/PLDI2018.pdf">Pinpoint: Fast and Precise Sparse
Value Flow
Analysis for Million Lines of Code</a><br />
<a href="https://qingkaishi.github.io/">Qingkai Shi</a>, Xiao Xiao, Rongxin Wu, Jinguo Zhou, Gang
Fan, Charles Zhang<br />
The ACM SIGPLAN Conference on Programming Language Design and Implementation<br />
</li>
</ul>
</div>
<!--confirmed bugs-->
<div id="bugs" style="display: none;">
<br clear=all>
<hr>
<h3 id="buglist">Bug List</h3>
<ul style="list-style-type: none;" id="confirmed_UL">
<li style="display:none" projname="libshout" bugtype="476">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="/static/no-icon.png" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/476.html">CWE-476: Null Pointer Dereference</a>
|
<a href="https://gitlab.xiph.org/xiph/icecast-server/-/issues/2450" , target="_blank">Report
Link</a>
<br><br>
<p>in libshout, a null pointer dereference occurs.</p>
<br><br>
</div>
<br clear=all><br>
</li>
<li style="display:none" projname="tmux" bugtype="476">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="/static/no-icon.png" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/476.html">CWE-476: Null Pointer Dereference</a>
|
<a href="https://github.com/tmux/tmux/issues/3312" , target="_blank">Report
Link</a>
<br><br>
<p>in tmux 3.0, a null pointer dereference occurs.</p>
<br><br>
</div>
<br clear=all><br>
</li>
<li style="display:none" projname="binutils" bugtype="401">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="/static/bftpd.png" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/401.html">CWE-401: Memory Leak</a> |
<a href="https://sourceware.org/bugzilla/show_bug.cgi?id=29254" , target="_blank">Report Link</a>
<br><br>
<p>In Binutils 2.39, A memory leak occurs</p>
<h3>This was assigned CVE-2022-47007</h3>
<br><br>
</div>
<br clear=all><br>
</li>
<li style="display:none" projname="binutils" bugtype="401">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="/static/bftpd.png" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/401.html">CWE-401: Memory Leak</a> |
<a href="https://sourceware.org/bugzilla/show_bug.cgi?id=29255" , target="_blank">Report Link</a>
<br><br>
<p>In Binutils 2.39, A memory leak occurs</p>
<h3>This was assigned CVE-2022-47008</h3>
<br><br>
</div>
<br clear=all><br>
</li>
<li style="display:none" projname="binutils" bugtype="401">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="/static/bftpd.png" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/401.html">CWE-401: Memory Leak</a> |
<a href="https://sourceware.org/bugzilla/show_bug.cgi?id=29256" , target="_blank">Report Link</a>
<br><br>
<p>In Binutils 2.39, A memory leak occurs</p>
<br><br>
</div>
<br clear=all><br>
</li>
<li style="display:none" projname="binutils" bugtype="401">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="/static/bftpd.png" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/401.html">CWE-401: Memory Leak</a> |
<a href="https://sourceware.org/bugzilla/show_bug.cgi?id=29261" , target="_blank">Report Link</a>
<br><br>
<p>In Binutils 2.39, A memory leak occurs</p>
<h3>This was assigned CVE-2022-47011</h3>
<br><br>
</div>
<br clear=all><br>
</li>
<li style="display:none" projname="binutils" bugtype="401">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="/static/bftpd.png" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/401.html">CWE-401: Memory Leak</a> |
<a href="https://sourceware.org/bugzilla/show_bug.cgi?id=29262" , target="_blank">Report Link</a>
<br><br>
<p>In Binutils 2.39, A memory leak occurs</p>
<h3>This was assigned CVE-2022-47010</h3>
<br><br>
</div>
<br clear=all><br>
</li>
<li style="display:none" projname="binutils" bugtype="401">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="/static/no-icon.png" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/401.html">CWE-401: Memory Leak</a> |
<a href="https://sourceware.org/bugzilla/show_bug.cgi?id=29262" , target="_blank">Report Link</a>
<br><br>
<p>In Binutils 2.39, A memory leak occurs</p>
<br><br>
</div>
<br clear=all><br>
</li>
<li style="display:none" projname="libSDL" bugtype="416">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="/static/no-icon.png" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/416.html">CWE-416: Use After Free</a> |
<a href="https://github.com/libsdl-org/SDL-1.2/issues/863" , target="_blank">Report Link</a>
<br><br>
<p>In libSDL 1.2, a use after free occurs</p>
<h3>This was assigned CVE-2022-34568</h3>
<br><br>
</div>
<br clear=all><br>
</li>
<li style="display:none" projname="dynamips" bugtype="457">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="/static/no-icon.png" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/457.html">CWE-457: Use of Uninitialzed Variable</a> |
<a href="https://github.com/GNS3/dynamips/issues/125" , target="_blank">Report Link</a>
<br><br>
<p>In dynamips 0.2.23, a use of uninitialized variable occurs</p>
<h3>This was assigned CVE-2022-47012</h3>
<br><br>
</div>
<br clear=all><br>
</li>
<li style="display:none" projname="openldap" bugtype="476">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="/static/no-icon.png" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/476.html">CWE-476: Null Pointer Dereference</a>
|
<a href="https://bugs.openldap.org/show_bug.cgi?id=9904" , target="_blank">Report
Link</a>
<br><br>
<p>in openldap 2.4.2, six sites may occur null pointer dereference.</p>
<h3>This was assigned CVE-2023-2953</h3>
<br><br>
</div>
<br clear=all><br>
</li>
<li style="display:none" projname="openssl" bugtype="476">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="/static/no-icon.png" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/476.html">CWE-476: Null Pointer Dereference</a>
|
<a href="https://github.com/openssl/openssl/issues/19050" , target="_blank">Report
Link</a>
<br><br>
<p>in openssl 1.1.1, twenty-one sites may occur null pointer dereference.</p>
<br><br>
</div>
<br clear=all><br>
</li>
<li style="display:none" projname="vim" bugtype="476">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="/static/vim.png" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/476.html">CWE-476: Null Pointer Dereference</a>
|
<a href="https://github.com/vim/vim/issues/11020" , target="_blank">Report
Link</a>
<br><br>
<p>in vim 8.1.2269, one site may occur null pointer dereference.</p>
<h3>This was assigned CVE-2022-47024</h3>
<br><br>
</div>
<br clear=all><br>
</li>
<li style="display:none" projname="libsndfile" bugtype="476">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="/static/no-icon.png" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/476.html">CWE-476: Null Pointer Dereference</a>
|
<a href="https://github.com/libsndfile/libsndfile/issues/863" , target="_blank">Report
Link</a>
<br><br>
<p>in libsndfile 1.0.28, a null pointer dereference occurs.</p>
<br><br>
</div>
<br clear=all><br>
</li>
<li style="display:none" projname="hwloc" bugtype="476">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="/static/no-icon.png" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/476.html">CWE-476: Null Pointer Dereference</a>
|
<a href="https://github.com/open-mpi/hwloc/issues/544" , target="_blank">Report
Link</a>
<br><br>
<p>in hwloc 2.1.0, a null pointer dereference occurs.</p>
<h3>This was assigned CVE-2022-47022</h3>
<br><br>
</div>
<br clear=all><br>
</li>
<li style="display:none" projname="vlc" bugtype="476">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="/static/no-icon.png" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/476.html">CWE-476: Null Pointer Dereference</a>
|
<a href="https://code.videolan.org/videolan/vlc/-/issues/27319" , target="_blank">Report
Link</a>
<br><br>
<p>in vlc 3.0.9.2, a null pointer dereference occurs.</p>
<br><br>
</div>
<br clear=all><br>
</li>
<li style="display:none" projname="opusfile" bugtype="476">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="/static/no-icon.png" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/476.html">CWE-476: Null Pointer Dereference</a>
|
<a href="https://github.com/xiph/opusfile/issues/36" , target="_blank">Report
Link</a>
<br><br>
<p>in opusfile, a null pointer dereference occurs.</p>
<h3>This was assigned CVE-2022-47021</h3>
<br><br>
</div>
<br clear=all><br>
</li>
<li style="display:none" projname="libxi" bugtype="476">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="/static/no-icon.png" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/476.html">CWE-476: Null Pointer Dereference</a>
|
<a href="https://gitlab.freedesktop.org/xorg/lib/libxi/-/issues/15" , target="_blank">Report
Link</a>
<br><br>
<p>in libxi, a null pointer dereference occurs.</p>
<br><br>
</div>
<br clear=all><br>
</li>
<li style="display:none" projname="libshout" bugtype="476">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="/static/no-icon.png" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/476.html">CWE-476: Null Pointer Dereference</a>
|
<a href="https://gitlab.xiph.org/xiph/icecast-server/-/issues/2451" , target="_blank">Report
Link</a>
<br><br>
<p>in libshout, a null pointer dereference occurs.</p>
<br><br>
</div>
<br clear=all><br>
</li>
<li style="display:none" projname="mariadb" bugtype="476">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="/static/no-icon.png" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/476.html">CWE-476: Null Pointer Dereference</a>
|
<a href="https://jira.mariadb.org/browse/MDEV-29881?filter=-2" , target="_blank">Report
Link</a>
<br><br>
<p>in mariadb 10.11.0, a null pointer dereference occurs.</p>
<br><br>
</div>
<br clear=all><br>
</li>
<li style="display:none" projname="mariadb" bugtype="476">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="/static/no-icon.png" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/476.html">CWE-476: Null Pointer Dereference</a>
|
<a href="https://jira.mariadb.org/browse/MDEV-29644?filter=-2" , target="_blank">Report
Link</a>
<br><br>
<p>in mariadb 10.11.0, a null pointer dereference occurs.</p>
<h3>This was assigned CVE-2022-47015</h3>
<br><br>
</div>
<br clear=all><br>
</li>
<li style="display:none" projname="mariadb" bugtype="476">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="/static/no-icon.png" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/476.html">CWE-476: Null Pointer Dereference</a>
|
<a href="https://jira.mariadb.org/browse/MDEV-29643?filter=-2" , target="_blank">Report
Link</a>
<br><br>
<p>in mariadb 10.11.0, a null pointer dereference occurs.</p>
<br><br>
</div>
<br clear=all><br>
</li>
<li style="display:none" projname="amazon-s3" bugtype="362">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="/static/amazon-s3.png" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/362.html">CWE-362: Data Race</a> |
<a href="https://github.com/s3fs-fuse/s3fs-fuse/issues/633" , target="_blank">Report Link</a>
<br><br>
<p>A data race condition issue from curl.cpp#L1486 to curl.cpp#L1495 in
<strong>s3fs-fuse</strong></p>
<br><br>
</div>
<br clear=all><br>
</li>
<li style="display:none" projname="apache" bugtype="562">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="/static/apache.png" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/562.html">CWE-562: Return of Stack Address</a> |
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=59844" , target="_blank">Report Link</a>
<br><br>
<p>A stack address escapes to the caller function. There are several similar ones. This is the
<strong>FIRST</strong> issue we confirmed with software developers.</p>
<br><br>
</div>
<br clear=all><br>
</li>
<li style="display:none" projname="apache" bugtype="562">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="/static/apache.png" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/562.html">CWE-562: Return of Stack Address</a> |
<a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=61228" , target="_blank">Report Link</a>
<br><br>
<p>An Invalid Reference to Stack Memory (modules/http/chunk_filters.c).</p>
<br><br>
</div>
<br clear=all><br>
</li>
<li style="display:none" projname="axel" bugtype="362">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="/static/axel.png" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/362.html">CWE-362: Data Race</a> |
<a href="https://github.com/eribertomota/axel/issues/58" , target="_blank">Report Link</a>
<br><br>
<p>A data race in <a href="https://github.com/eribertomota/axel">axel</a></p>
<br><br>
</div>
<br clear=all><br>
</li>
<li style="display:none" projname="baidu" bugtype="476">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="/static/baidu.png" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/476.html">CWE-476: Null Pointer Dereference</a>
|
<a href="https://github.com/baidu/sofa-pbrpc/issues/184" , target="_blank">Report Link</a>
<br><br>
<p>inconsistent operation on a pointer in baidu's sofa-pbrpc.</p>
<br><br>
</div>
<br clear=all><br>
</li>
<li style="display:none" projname="baidu" bugtype="362">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="/static/baidu.png" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/362.html">CWE-362: Data Race</a> |
<a href="https://github.com/baidu/sofa-pbrpc/issues/203" , target="_blank">Report Link</a>
<br><br>
<p>A data race in baidu's sofa-pbrp.</p>
<br><br>
</div>
<br clear=all><br>
</li>
<li style="display:none" projname="sofastack" bugtype="476">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="https://avatars.githubusercontent.com/u/36956638?s=200&v=4" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/476.html">CWE-476: Null Pointer Dereference</a>
|
<a href="https://github.com/sofastack/sofa-rpc/issues/1048" , target="_blank">Report Link</a>
<br><br>
<p>inconsistent operation on a pointer in sofa-rpc.</p>
<br><br>
</div>
<br clear=all><br>
</li>
<li style="display:none" projname="bento4" bugtype="121">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="/static/bento4.jpg" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/121.html">CWE-121: Stack/Heap Buffer
Overflow</a> |
<a href="https://github.com/axiomatic-systems/Bento4/issues/396" , target="_blank">Report
Link</a>
<br><br>
<p>buffer overflow detected by static analysis and reproduced by fuzzing</p>
<p><strong>CVE-2019–13238</strong></p>
<br><br>
</div>
<br clear=all><br>
</li>
<li style="display:none" projname="bento4" bugtype="476">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="/static/bento4.jpg" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/476.html">CWE-476: Null Pointer Dereference</a>
|
<a href="https://github.com/axiomatic-systems/Bento4/issues/394" , target="_blank">Report
Link</a>
<br><br>
<p>null deref detected by static analysis and reproduced by fuzzing</p>
<p><strong>CVE-2019–13959</strong></p>
<br><br>
</div>
<br clear=all><br>
</li>
<li style="display:none" projname="bftpd" bugtype="401">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="/static/bftpd.png" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/401.html">CWE-401: Memory Leak</a> |
<a href="http://bftpd.sourceforge.net/downloads/CHANGELOG" , target="_blank">Report Link</a>
<br><br>
<p>In Bftpd 4.6, A memory leak occurs in a malcrafted sequence of FTP requests.</p>
<h3>This was assigned CVE-2017-16892.</h3>
<br><br>
</div>
<br clear=all><br>
</li>
<li style="display:none" projname="bftpd" bugtype="590">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="/static/bftpd.png" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/590.html">CWE-590: Free of Memory not on the
Heap</a> |
<a href="http://bftpd.sourceforge.net/downloads/CHANGELOG" , target="_blank">Report Link</a>
<br><br>
<p>In Bftpd 4.7, a non-heap memory stored in <code>remotehostname</code> may be released at the
end of the main function.</p>
<br><br>
</div>
<br clear=all><br>
</li>
<li style="display:none" projname="chromev8" bugtype="401">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="/static/chromev8.png" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/401.html">CWE-401: Memory Leak</a> |
<a href="https://bugs.chromium.org/p/v8/issues/detail?id=7433" , target="_blank">Report Link</a>
<br><br>
<p>A memory leak found in V8</p>
<br><br>
</div>
<br clear=all><br>
</li>
<li style="display:none" projname="chromev8" bugtype="401">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="/static/chromev8.png" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/401.html">CWE-401: Memory Leak</a> |
<a href="https://bugs.chromium.org/p/v8/issues/list?can=2&q=reporter%3Afan.gang.cn%40gmail.com"
, target="_blank">Report Link</a>
<br><br>
<!-- <p>Comment #5 on issue 7434 by [email protected]: A memory leak in handler-outside.cc:158<br>
<a href="https://bugs.chromium.org/p/v8/issues/detail?id=7434#c5">https://bugs.chromium.org/p/v8/issues/detail?id=7434#c5</a></p>
<p>The following revision refers to this bug:<br>
<a href="https://chromium.googlesource.com/v8/v8.git/+/ef8dae3f3db59a47c4fc6d994d5621806a47f579">https://chromium.googlesource.com/v8/v8.git/+/ef8dae3f3db59a47c4fc6d994d5621806a47f579</a></p>
<p>commit ef8dae3f3db59a47c4fc6d994d5621806a47f579<br>
Author: Eric Holk <a href="mailto:[email protected]">[email protected]</a><br>
Date: Wed Feb 21 00:15:19 2018</p>
<p>[wasm] [trap handler] do not leak memory on failure path</p> -->
<p>There were two failure paths where the CodeProtectionInfo object would not be<br>
freed. This adds a free() on those paths to prevent a memory leak.</p>
<br><br>
</div>
<br clear=all><br>
</li>
<li style="display:none" projname="cjson" bugtype="476">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="/static/cjson.png" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/476.html">CWE-476: Null Pointer Dereference</a>
|
<a href="https://github.com/DaveGamble/cJSON/commit/cdc35ebf88c5d440b8f63e9a69412c22c0abb6fa" ,
target="_blank">Report Link</a>
<br><br>
<p>A null pointer deref in CJson.</p>
<br><br>
</div>
<br clear=all><br>
</li>
<li style="display:none" projname="eyescale" bugtype="362">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="/static/eyescale.png" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/362.html">CWE-362: Data Race</a> |
<a href="https://github.com/Eyescale/Lunchbox/issues/315" , target="_blank">Report Link</a>
<br><br>
<p>A data race in eyescale/lunchbox.</p>
<br><br>
</div>
<br clear=all><br>
</li>
<li style="display:none" projname="fastjson" bugtype="476">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="/static/fastjson.png" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/476.html">CWE-476: Null Pointer Dereference</a>
|
<a href="https://github.com/alibaba/fastjson/issues/1613" , target="_blank">Report Link</a>
<br><br>
<p>There are paths that could lead to <code>exBeanDeser</code> dereferencing when
<code>exBeanDeser</code> is null.</p>
<br><br>
</div>
<br clear=all><br>
</li>
<li style="display:none" projname="fastjson" bugtype="476">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="/static/fastjson.png" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/476.html">CWE-476: Null Pointer Dereference</a>
|
<a href="https://github.com/alibaba/fastjson/issues/1614" , target="_blank">Report Link</a>
<br><br>
<p>There paths could lead to <code>class_gd</code> dereferencing when <code>class_gd</code> is
null.</p>
<br><br>
</div>
<br clear=all><br>
</li>
<li style="display:none" projname="ffmpeg" bugtype="401">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="/static/ffmpeg.png" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/401.html">CWE-401: Memory Leak</a> |
<a href="https://trac.FFmpeg.org/ticket/7019#ticket" , target="_blank">Report Link</a>
<br><br>
<p>Memory Leak found in FFMpeg</p>
<br><br>
</div>
<br clear=all><br>
</li>
<li style="display:none" projname="ffmpeg" bugtype="416">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="/static/ffmpeg.png" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/416.html">CWE-416: Use After Free/Double
Free</a> |
<a href="https://trac.ffmpeg.org/ticket/8222" , target="_blank">Report Link</a>
<br><br>
<p>A use after free bug detected by the persistence</p>
<br><br>
</div>
<br clear=all><br>
</li>
<li style="display:none" projname="ffmpeg" bugtype="416">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="/static/ffmpeg.png" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/416.html">CWE-416: Use After Free/Double
Free</a> |
<a href="https://trac.ffmpeg.org/ticket/8224" , target="_blank">Report Link</a>
<br><br>
<p>A double free bug detected by the persistence</p>
<br><br>
</div>
<br clear=all><br>
</li>
<li style="display:none" projname="ffmpeg" bugtype="416">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="/static/ffmpeg.png" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/416.html">CWE-416: Use After Free/Double
Free</a> |
<a href="https://trac.ffmpeg.org/ticket/8226" , target="_blank">Report Link</a>
<br><br>
<p>A Use-After-Free bug detected by the persistence</p>
<br><br>
</div>
<br clear=all><br>
</li>
<li style="display:none" projname="firefox" bugtype="362">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="/static/firefox.png" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/362.html">CWE-362: Data Race</a> |
<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1387937" , target="_blank">Report Link</a>
<br><br>
<p>Since the two frees follow each other immediately it's hard to see how an attacker could take
advantage of it. maybe something on another thread could be allocating things meanwhile, but
that'd be a nightmarish timing needle to thread.</p>
<br><br>
</div>
<br clear=all><br>
</li>
<li style="display:none" projname="firefox" bugtype="401">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="/static/firefox.png" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/401.html">CWE-401: Memory Leak</a> |
<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1441836" , target="_blank">Report Link</a>
<br><br>
<p>Actual results:</p>
<p>File: dom/media/encoder/VP8TrackEncoder.cpp:254</p>
<p>videoData allocated on line 279 is not freed when the function returns on line
286/293/300/306. Since videodata is considered a big data, it may cause severe memory leaks.
</p>
<!-- <p>I've uploaded a screenshot with source code and comments for a better description.</p> -->
<br><br>
</div>
<br clear=all><br>
</li>
<li style="display:none" projname="firefox" bugtype="401">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="/static/firefox.png" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/401.html">CWE-401: Memory Leak</a> |
<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1441842" , target="_blank">Report Link</a>
<br><br>
<p>Actual results:</p>
<p>File: media/libvpx/libvpx/vp8/vp8_cx_iface.c:594</p>
<p>The memory shared_mem_loc allocated on line 587 is leaked when the program takes the true
branch on line 594. It is a rare case, but better fix it.</p>
<!-- <p>I've uploaded a screenshot with source code and comments for a better description.</p> -->
<br><br>
</div>
<br clear=all><br>
</li>
<li style="display:none" projname="firefox" bugtype="401">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="/static/firefox.png" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/401.html">CWE-401: Memory Leak</a> |
<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1441831" , target="_blank">Report Link</a>
<br><br>
<p>Actual results:</p>
<p>File mozilla-unified/media/mtransport/nr_timer.cpp:216</p>
<p>The allocated variable callback on line 210 is leaked when the program returns on line 217.
</p>
<!-- <p>I've uploaded a screenshot with source code and comments for a better description.</p> -->
<br><br>
</div>
<br clear=all><br>
</li>
<li style="display:none" projname="firefox" bugtype="401">
<div style="float: left; height: 150px; margin-right: 1cm;">
<img src="/static/firefox.png" width="150px" />
</div>
<div style="width: 1000px">
<a href="https://cwe.mitre.org/data/definitions/401.html">CWE-401: Memory Leak</a> |
<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1441828" , target="_blank">Report Link</a>
<br><br>
<p>Actual results:</p>
<p>The memory allocated by strdup(appEnv) on line 179 is never freed in the program.</p>
<p>File: browser/app/nsBrowserApp.cpp:179</p>
<br><br>