-
-
Notifications
You must be signed in to change notification settings - Fork 183
/
Copy pathindex.html
2518 lines (2202 loc) · 109 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
<!-- RELEASE TIME : 2025-02-12 18:32:28 -->
<html lang="zh-cn">
<head>
<meta charset="UTF-8" />
<meta name="robots" content="noarchive" />
<link rel="shortcut icon" href="https://exp-blog.com/favicon.png"/>
<meta name="author" content="EXP: www.exp-blog.com" />
<link rel="stylesheet" type="text/css" href="./css/page.css" />
<title>Threat-Broadcast</title>
</head>
<body class="html">
<div>
<br />
<h2><a href="https://exp-blog.com" target="_blank">眈眈探求</a> | <a href="https://github.com/lyy289065406/threat-broadcast">威胁情报播报</a></h2>
<br />
<div>
<table id="360 网络安全响应中心" class="dataintable">
<tbody>
<tr>
<th width="22%">360 网络安全响应中心 [TOP 30]</th>
<th width="15%">CVES</th>
<th width="15%">TIME</th>
<th width="43%">TITLE</th>
<th width="5%">URL</th>
</tr>
<tr>
<td>4d42b2e96c478df11ac597898d1526f0</td>
<td></td>
<td>2024-04-17 11:18:19</td>
<td>2024-04 补丁日: Oracle多个产品漏洞安全风险通告</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=661faffbc09f255b91b17fa9">详情</a></td>
</tr>
<tr>
<td>448cfa0216a0757ec96f5862f86eafd4</td>
<td></td>
<td>2024-04-01 10:42:50</td>
<td>安全事件周报 2024-03-25 第13周</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=660a8fa1c09f255b91b17f77">详情</a></td>
</tr>
<tr>
<td>1205680821e2717a58c599f99a9fb422</td>
<td></td>
<td>2024-03-26 07:23:13</td>
<td>安全事件周报 2024-03-18 第12周</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=660277dfc09f255b91b17f2f">详情</a></td>
</tr>
<tr>
<td>2e93df858fc2c5b287883dc9313a87fc</td>
<td></td>
<td>2024-03-18 07:07:47</td>
<td>安全事件周报 2024-03-11 第11周</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=65f7e83bc09f255b91b17ed8">详情</a></td>
</tr>
<tr>
<td>c1cad147c12a38c089cd941022bc395e</td>
<td></td>
<td>2024-03-13 04:34:11</td>
<td>2024-03 补丁日: 微软多个漏洞安全更新通告</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=65f12c84c09f255b91b17eaf">详情</a></td>
</tr>
<tr>
<td>7119e349c423ea015d6f2a824c67ed63</td>
<td></td>
<td>2024-03-11 06:17:28</td>
<td>安全事件周报 2024-03-04 第10周</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=65eea1f1c09f255b91b17e8b">详情</a></td>
</tr>
<tr>
<td>b2c0e23dcf540c0b5d2bb144ceade98d</td>
<td>CVE-2024-27198</td>
<td>2024-03-06 08:44:35</td>
<td>CVE-2024-27198:JetBrains TeamCity 身份验证绕过漏洞通告</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=65e82cf0c09f255b91b17e65">详情</a></td>
</tr>
<tr>
<td>5e103cbd4bae3244e692ba33c1d7fcf8</td>
<td></td>
<td>2024-03-04 07:07:59</td>
<td>安全事件周报 2024-02-26 第9周</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=65e5734bc09f255b91b17e42">详情</a></td>
</tr>
<tr>
<td>cab02a763bf285b3dc009731f40f8c29</td>
<td>CVE-2024-25065</td>
<td>2024-03-01 09:06:25</td>
<td>CVE-2024-25065:Apache OFBiz目录遍历漏洞通告</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=65e1987dc09f255b91b17e2f">详情</a></td>
</tr>
<tr>
<td>194761e30d263596338cc998ac88cbaa</td>
<td></td>
<td>2024-02-28 08:51:55</td>
<td>SupermanMiner挖矿木马新变种持续活跃</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=65deee7fc09f255b91b17e0f">详情</a></td>
</tr>
<tr>
<td>213a4c5c76a220c24da1c38c605fcc10</td>
<td>CVE-2024-25600</td>
<td>2024-02-27 09:55:55</td>
<td>CVE-2024-25600:WordPress Bricks Builder远程命令执行漏洞通告</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=65ddb1a3c09f255b91b17dfe">详情</a></td>
</tr>
<tr>
<td>bc2c3923f651854c68f2dd6f99d69f0a</td>
<td></td>
<td>2024-02-26 03:00:09</td>
<td>安全事件周报 2024-02-19 第8周</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=65dbfe67c09f255b91b17dec">详情</a></td>
</tr>
<tr>
<td>55c72f6f2af616fbddbb643df06c3b3a</td>
<td>CVE-2024-21413</td>
<td>2024-02-23 06:57:46</td>
<td>CVE-2024-21413:Microsoft Outlook 远程代码执行漏洞通告</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=65d841e7c09f255b91b17dd7">详情</a></td>
</tr>
<tr>
<td>f000a20bfa53fd8b0f5231b52ff34577</td>
<td></td>
<td>2024-02-19 10:10:13</td>
<td>2024-02 补丁日: 微软多个漏洞安全更新通告</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=65d32801c09f255b91b17d93">详情</a></td>
</tr>
<tr>
<td>48ff3925c0cc22862b0d6e1f52140bdc</td>
<td></td>
<td>2024-02-06 07:10:07</td>
<td>安全事件周报 2024-01-29 第5周</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=65c1db37c09f255b91b17d68">详情</a></td>
</tr>
<tr>
<td>d8c34853fbcc6b39ae0a3783c6fa6d44</td>
<td>CVE-2024-21626</td>
<td>2024-02-01 08:38:56</td>
<td>CVE-2024-21626:runc容器逃逸漏洞通告</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=65bb589cc09f255b91b17d32">详情</a></td>
</tr>
<tr>
<td>6ff357e8344fde5ea96c964cc0161137</td>
<td></td>
<td>2024-01-29 10:02:54</td>
<td>安全事件周报 2024-01-22 第4周</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=65b777cbc09f255b91b17d08">详情</a></td>
</tr>
<tr>
<td>8fc558ad63c1387fb3ed919bf754820e</td>
<td>CVE-2024-0204</td>
<td>2024-01-25 08:26:39</td>
<td>CVE-2024-0204:GoAnywhere MFT 身份认证绕过漏洞通告</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=65b21b3bc09f255b91b17cea">详情</a></td>
</tr>
<tr>
<td>f4359caac3c70e9141439aa773e1e8a5</td>
<td></td>
<td>2024-01-22 11:39:38</td>
<td>安全事件周报 2024-01-15 第3周</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=65ae53dec09f255b91b17cc1">详情</a></td>
</tr>
<tr>
<td>4939f25b3f3d3242726cd400c645be04</td>
<td>CVE-2024-0519</td>
<td>2024-01-17 09:08:07</td>
<td>CVE-2024-0519:Google Chrome V8越界访问漏洞通告</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=65a78b1bc09f255b91b17c96">详情</a></td>
</tr>
<tr>
<td>300687d61adecf75afb4de6d78398518</td>
<td>CVE-2024-0519</td>
<td>2024-01-17 08:09:14</td>
<td>CVE-2024-0519:Google Chrome V8类型混淆漏洞通告</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=65a78b1bc09f255b91b17c96">详情</a></td>
</tr>
<tr>
<td>28f74976e64bebdcd2b71df42f44817e</td>
<td>CVE-2023-22527</td>
<td>2024-01-16 09:50:35</td>
<td>CVE-2023-22527:Atlassian Confluence 远程代码执行漏洞通告</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=65a6512ac09f255b91b17c82">详情</a></td>
</tr>
<tr>
<td>ec39eae21390157f92422897b04aad66</td>
<td></td>
<td>2024-01-15 08:28:24</td>
<td>安全事件周报 2024-01-08 第2周</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=65a4eca8c09f255b91b17c6f">详情</a></td>
</tr>
<tr>
<td>de12aee5eaff6382190430b22e2c643f</td>
<td></td>
<td>2024-01-11 10:55:37</td>
<td>2024-01 补丁日: 微软多个漏洞安全更新通告</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=659fc922c09f255b91b17c52">详情</a></td>
</tr>
<tr>
<td>c2b35c67c2732343be5c23579ebcdd04</td>
<td></td>
<td>2024-01-08 07:37:47</td>
<td>安全事件周报 2024-01-01 第1周</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=659ba624c09f255b91b17c23">详情</a></td>
</tr>
<tr>
<td>666a3a36b86650d472f7203220b3a4f5</td>
<td></td>
<td>2024-01-02 09:34:01</td>
<td>安全事件周报 2023-12-25 第52周</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=6593d87cc09f255b91b17be5">详情</a></td>
</tr>
<tr>
<td>f91862c02f62f7f8e9d01e209e59487b</td>
<td>CVE-2023-51467</td>
<td>2023-12-27 08:57:10</td>
<td>CVE-2023-51467:Apache OFBiz 未授权远程代码执行漏洞通告</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=658be6e5c09f255b91b17bbc">详情</a></td>
</tr>
<tr>
<td>0c520d1f3614bc8cba4450fee6f03f5d</td>
<td></td>
<td>2023-12-25 08:21:40</td>
<td>安全事件周报 2023-12-18 第51周</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=65893b7fc09f255b91b17b9d">详情</a></td>
</tr>
<tr>
<td>ffb5d5f9ba0fa1576f9bd8325a8d3e66</td>
<td></td>
<td>2023-12-18 08:50:39</td>
<td>安全事件周报 2023-12-11 第50周</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=658007d5c09f255b91b17b56">详情</a></td>
</tr>
<tr>
<td>382c73d6388430b9cea6072c6c61858e</td>
<td></td>
<td>2023-12-13 08:50:10</td>
<td>2023-12 补丁日: 微软多个漏洞安全更新通告</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=65796f09ea0822e9156060b4">详情</a></td>
</tr>
</tbody>
</table>
</div>
<br />
<div>
<table id="Tenable (Nessus)" class="dataintable">
<tbody>
<tr>
<th width="22%">Tenable (Nessus) [TOP 30]</th>
<th width="15%">CVES</th>
<th width="15%">TIME</th>
<th width="43%">TITLE</th>
<th width="5%">URL</th>
</tr>
<tr>
<td>5b4014503b74db0def1e4b89d77c672e</td>
<td>CVE-2025-1207</td>
<td>2025-02-12 16:15:44 <img src="imgs/new.gif" /></td>
<td>A vulnerability was found in phjounin TFTPD64 4.64. It has been declared as problematic. This vulnerability affects unknown code of the component DNS Handler. The manipulation leads to denial of service. The attack needs to be done within the local network. The complexity of an attack is rather high. The exploitation appears to be difficult. The exploit has been disclosed to the public and may be used.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-1207">详情</a></td>
</tr>
<tr>
<td>f96b13e375dfc38b40d0a118b248fe53</td>
<td>CVE-2025-0556</td>
<td>2025-02-12 16:15:43 <img src="imgs/new.gif" /></td>
<td>In Progress® Telerik® Report Server, versions prior to 2025 Q1 (11.0.25.211) when using the older .NET Framework implementation, communication of non-sensitive information between the service agent process and app host process occurs over an unencrypted tunnel, which can be subjected to local network traffic sniffing.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-0556">详情</a></td>
</tr>
<tr>
<td>e7abbc8754604566ea66f5a7b7e1ad0c</td>
<td>CVE-2025-1244</td>
<td>2025-02-12 15:15:18 <img src="imgs/new.gif" /></td>
<td>A flaw was found in the Emacs text editor. Improper handling of custom "man" URI schemes allows attackers to execute arbitrary shell commands by tricking users into visiting a specially crafted website or an HTTP URL with a redirect.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-1244">详情</a></td>
</tr>
<tr>
<td>754f1c1b1631f14a9ed709b335ec3819</td>
<td>CVE-2025-1212</td>
<td>2025-02-12 15:15:18 <img src="imgs/new.gif" /></td>
<td>An information disclosure vulnerability in GitLab CE/EE affecting all versions from 8.3 prior to 17.6.5, 17.7 prior to 17.7.4, and 17.8 prior to 17.8.2 allows an attacker to send a crafted request to a backend server to reveal sensitive information.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-1212">详情</a></td>
</tr>
<tr>
<td>e2c70e76dcc2b73ed2cee5a7d9399a08</td>
<td>CVE-2025-1206</td>
<td>2025-02-12 15:15:18 <img src="imgs/new.gif" /></td>
<td>A vulnerability was found in Codezips Gym Management System 1.0. It has been classified as critical. This affects an unknown part of the file /dashboard/admin/viewdetailroutine.php. The manipulation of the argument id leads to sql injection. It is possible to initiate the attack remotely. The exploit has been disclosed to the public and may be used.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-1206">详情</a></td>
</tr>
<tr>
<td>c2255e3a429957413416a4941620b8a1</td>
<td>CVE-2025-1202</td>
<td>2025-02-12 15:15:17 <img src="imgs/new.gif" /></td>
<td>A vulnerability classified as critical has been found in SourceCodester Best Church Management Software 1.1. Affected is an unknown function of the file /admin/edit_slider.php. The manipulation of the argument id leads to sql injection. It is possible to launch the attack remotely. The exploit has been disclosed to the public and may be used.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-1202">详情</a></td>
</tr>
<tr>
<td>bd6f149acd7c25d1a5f4c7183af23a8b</td>
<td>CVE-2025-1042</td>
<td>2025-02-12 15:15:16 <img src="imgs/new.gif" /></td>
<td>An insecure direct object reference vulnerability in GitLab EE affecting all versions from 15.7 prior to 17.6.5, 17.7 prior to 17.7.4, and 17.8 prior to 17.8.2 allows an attacker to view repositories in an unauthorized way.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-1042">详情</a></td>
</tr>
<tr>
<td>01a88ebb3d1b6748ededb7777dd11bcc</td>
<td>CVE-2025-0376</td>
<td>2025-02-12 15:15:15 <img src="imgs/new.gif" /></td>
<td>An XSS vulnerability exists in GitLab CE/EE affecting all versions from 13.3 prior to 17.6.5, 17.7 prior to 17.7.4 and 17.8 prior to 17.8.2 that allows an attacker to execute unauthorized actions via a change page.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-0376">详情</a></td>
</tr>
<tr>
<td>1d8c32a23f13f02956489218cfd28544</td>
<td>CVE-2024-54160</td>
<td>2025-02-12 15:15:15 <img src="imgs/new.gif" /></td>
<td>dashboards-reporting (aka Dashboards Reports) before 2.19.0.0, as shipped in OpenSearch before 2.19, allows XSS because Markdown is not sanitized when previewing a header or footer.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2024-54160">详情</a></td>
</tr>
<tr>
<td>30392c5aff9ebd8adfed5ccbb6befa5f</td>
<td>CVE-2024-12379</td>
<td>2025-02-12 15:15:12 <img src="imgs/new.gif" /></td>
<td>A denial of service vulnerability in GitLab CE/EE affecting all versions from 14.1 prior to 17.6.5, 17.7 prior to 17.7.4, and 17.8 prior to 17.8.2 allows an attacker to impact the availability of GitLab via unbounded symbol creation via the scopes parameter in a Personal Access Token.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2024-12379">详情</a></td>
</tr>
<tr>
<td>4ae92dfdfdb1dba02da6504de32a69a9</td>
<td>CVE-2025-24976</td>
<td>2025-02-11 16:15:52 <img src="imgs/new.gif" /></td>
<td>Distribution is a toolkit to pack, ship, store, and deliver container content. Systems running registry versions 3.0.0-beta.1 through 3.0.0-rc.2 with token authentication enabled may be vulnerable to an issue in which token authentication allows an attacker to inject an untrusted signing key in a JSON web token (JWT). The issue lies in how the JSON web key (JWK) verification is performed. When a JWT contains a JWK header without a certificate chain, the code only checks if the KeyID (`kid`) matches one of the trusted keys, but doesn't verify that the actual key material matches. A fix for the issue is available at commit 5ea9aa028db65ca5665f6af2c20ecf9dc34e5fcd and expected to be a part of version 3.0.0-rc.3. There is no way to work around this issue without patching if the system requires token authentication.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-24976">详情</a></td>
</tr>
<tr>
<td>3c933e6855b8eb644e37b6c412fa712b</td>
<td>CVE-2025-24973</td>
<td>2025-02-11 16:15:52 <img src="imgs/new.gif" /></td>
<td>Concorde, formerly know as Nexkey, is a fork of the federated microblogging platform Misskey. Prior to version 12.25Q1.1, due to an improper implementation of the logout process, authentication credentials remain in cookies even after a user has explicitly logged out, which may allow an attacker to steal authentication tokens. This could have devastating consequences if a user with admin privileges is (or was) using a shared device. Users who have logged in on a shared device should go to Settings > Security and regenerate their login tokens. Version 12.25Q1.1 fixes the issue. As a workaround, clear cookies and site data in the browser after logging out.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-24973">详情</a></td>
</tr>
<tr>
<td>71ad55cfd16291e6af7326139f78cb7d</td>
<td>CVE-2025-24900</td>
<td>2025-02-11 16:15:51 <img src="imgs/new.gif" /></td>
<td>Concorde, formerly know as Nexkey, is a fork of the federated microblogging platform Misskey. Due to a lack of CSRF countermeasures and improper settings of cookies for MediaProxy authentication, there is a vulnerability that allows MediaProxy authentication to be bypassed. In versions prior to 12.25Q1.1, the authentication cookie does not have the SameSite attribute. This allows an attacker to bypass MediaProxy authentication and load any image without restrictions under certain circumstances. In versions prior to 12.24Q2.3, this cookie was also used to authenticate the job queue management page (bull-board), so bull-board authentication is also bypassed. This may enable attacks that have a significant impact on availability and integrity. The affected versions are too old to be covered by this advisory, but the maintainers of Concorde strongly recommend not using older versions. Version 12.25Q1.1 contains a patch. There is no effective workaround other than updating.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-24900">详情</a></td>
</tr>
<tr>
<td>f90019a71f9d6c77ece00edfbcf86c9b</td>
<td>CVE-2025-24897</td>
<td>2025-02-11 16:15:51 <img src="imgs/new.gif" /></td>
<td>Misskey is an open source, federated social media platform. Starting in version 12.109.0 and prior to version 2025.2.0-alpha.0, due to a lack of CSRF protection and the lack of proper security attributes in the authentication cookies of Bull's dashboard, some of the APIs of bull-board may be subject to CSRF attacks. There is a risk of this vulnerability being used for attacks with relatively large impact on availability and integrity, such as the ability to add arbitrary jobs. This vulnerability was fixed in 2025.2.0-alpha.0. As a workaround, block all access to the `/queue` directory with a web application firewall (WAF).</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-24897">详情</a></td>
</tr>
<tr>
<td>d93e249334f4f59acb788d5673946be5</td>
<td>CVE-2025-24896</td>
<td>2025-02-11 16:15:51 <img src="imgs/new.gif" /></td>
<td>Misskey is an open source, federated social media platform. Starting in version 12.109.0 and prior to version 2025.2.0-alpha.0, a login token named `token` is stored in a cookie for authentication purposes in Bull Dashboard, but this remains undeleted even after logout is performed. The primary affected users will be users who have logged into Misskey using a public PC or someone else's device, but it's possible that users who have logged out of Misskey before lending their PC to someone else could also be affected. Version 2025.2.0-alpha.0 contains a fix for this issue.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-24896">详情</a></td>
</tr>
<tr>
<td>16443fd19e25923b63a4923497ce8841</td>
<td>CVE-2025-24807</td>
<td>2025-02-11 16:15:51 <img src="imgs/new.gif" /></td>
<td>eprosima Fast DDS is a C++ implementation of the DDS (Data Distribution Service) standard of the OMG (Object Management Group). Prior to versions 2.6.10, 2.10.7, 2.14.5, 3.0.2, 3.1.2, and 3.2.0, per design, PermissionsCA is not full chain validated, nor is the expiration date validated. Access control plugin validates only the S/MIME signature which causes an expired PermissionsCA to be taken as valid. Even though this issue is responsible for allowing `governance/permissions` from an expired PermissionsCA and having the system crash when PermissionsCA is not self-signed and contains the full-chain, the impact is low. Versions 2.6.10, 2.10.7, 2.14.5, 3.0.2, 3.1.2, and 3.2.0 contain a fix for the issue.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-24807">详情</a></td>
</tr>
<tr>
<td>af3569569d52e9860422780bd80ab982</td>
<td>CVE-2025-22467</td>
<td>2025-02-11 16:15:50 <img src="imgs/new.gif" /></td>
<td>A stack-based buffer overflow in Ivanti Connect Secure before version 22.7R2.6 allows a remote authenticated attacker to achieve remote code execution.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-22467">详情</a></td>
</tr>
<tr>
<td>a1a16922ad9e707e9197bf3e5f2d9bf2</td>
<td>CVE-2024-47908</td>
<td>2025-02-11 16:15:40 <img src="imgs/new.gif" /></td>
<td>OS command injection in the admin web console of Ivanti CSA before version 5.0.5 allows a remote authenticated attacker with admin privileges to achieve remote code execution.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2024-47908">详情</a></td>
</tr>
<tr>
<td>03dcfdc9e91e38bf99e2649ca8f7c50c</td>
<td>CVE-2024-13843</td>
<td>2025-02-11 16:15:39 <img src="imgs/new.gif" /></td>
<td>Cleartext storage of information in Ivanti Connect Secure before version 22.7R2.6 and Ivanti Policy Secure before version 22.7R1.3 allows a local authenticated attacker with admin privileges to read sensitive data.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2024-13843">详情</a></td>
</tr>
<tr>
<td>057ef1b60ed6d051e8ef7513262e7be2</td>
<td>CVE-2024-13842</td>
<td>2025-02-11 16:15:39 <img src="imgs/new.gif" /></td>
<td>A hardcoded key in Ivanti Connect Secure before version 22.7R2.3 and Ivanti Policy Secure before version 22.7R1.3 allows a local authenticated attacker with admin privileges to read sensitive data.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2024-13842">详情</a></td>
</tr>
<tr>
<td>8dc272a8021c441d44796b5b032fc770</td>
<td>CVE-2025-1193</td>
<td>2025-02-10 14:15:30</td>
<td>Improper host validation in the certificate validation component in Devolutions Remote Desktop Manager on 2024.3.19 and earlier on Windows allows an attacker to intercept and modify encrypted communications via a man-in-the-middle attack by presenting a certificate for a different host.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-1193">详情</a></td>
</tr>
<tr>
<td>01df47c6d0c1352c5a46a2ab8b69b7ac</td>
<td>CVE-2025-1148</td>
<td>2025-02-10 14:15:29</td>
<td>A vulnerability was found in GNU Binutils 2.43 and classified as problematic. Affected by this issue is the function link_order_scan of the file ld/ldelfgen.c of the component ld. The manipulation leads to memory leak. The attack may be launched remotely. The complexity of an attack is rather high. The exploitation is known to be difficult. The exploit has been disclosed to the public and may be used. It is recommended to apply a patch to fix this issue. The code maintainer explains: "I'm not going to commit some of the leak fixes I've been working on to the 2.44 branch due to concern that would destabilise ld. All of the reported leaks in this bugzilla have been fixed on binutils master."</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-1148">详情</a></td>
</tr>
<tr>
<td>3b0c5ec1ca3939435b09b51da061dc61</td>
<td>CVE-2025-1147</td>
<td>2025-02-10 14:15:29</td>
<td>A vulnerability has been found in GNU Binutils 2.43 and classified as problematic. Affected by this vulnerability is the function __sanitizer::internal_strlen of the file binutils/nm.c of the component nm. The manipulation of the argument const leads to buffer overflow. The attack can be launched remotely. The complexity of an attack is rather high. The exploitation appears to be difficult. The exploit has been disclosed to the public and may be used.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-1147">详情</a></td>
</tr>
<tr>
<td>883e0a6eef0a5d0cc08a69d7e0690837</td>
<td>CVE-2024-11621</td>
<td>2025-02-10 14:15:29</td>
<td>Missing certificate validation in Devolutions Remote Desktop Manager on macOS, iOS, Android, Linux allows an attacker to intercept and modify encrypted communications via a man-in-the-middle attack. Versions affected are : Remote Desktop Manager macOS 2024.3.9.0 and earlier Remote Desktop Manager Linux 2024.3.2.5 and earlier Remote Desktop Manager Android 2024.3.3.7 and earlier Remote Desktop Manager iOS 2024.3.3.0 and earlier Remote Desktop Manager Powershell 2024.3.6.0 and earlier</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2024-11621">详情</a></td>
</tr>
<tr>
<td>a79683b801fb815404a8c3c2f255ba2b</td>
<td>CVE-2025-1175</td>
<td>2025-02-10 13:15:26</td>
<td>Reflected Cross-Site Scripting (XSS) vulnerability in Kelio Visio 1, Kelio Visio X7 and Kelio Visio X4, in versions between 3.2C and 5.1K. This vulnerability could allow an attacker to execute a JavaScript payload by making a POST request and injecting malicious code into the editable ‘username’ parameter of the ‘/PageLoginVisio.do’ endpoint.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-1175">详情</a></td>
</tr>
<tr>
<td>949d9acc0f2ba71d1ad2963a296979ed</td>
<td>CVE-2024-8685</td>
<td>2025-02-10 13:15:26</td>
<td>Path-Traversal vulnerability in Revolution Pi version 2022-07-28-revpi-buster from KUNBUS GmbH. This vulnerability could allow an authenticated attacker to list device directories via the ‘/pictory/php/getFileList.php’ endpoint in the ‘dir’ parameter.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2024-8685">详情</a></td>
</tr>
<tr>
<td>a233884df32805b63d542db8fa4a0b81</td>
<td>CVE-2024-8684</td>
<td>2025-02-10 13:15:26</td>
<td>OS Command Injection vulnerability in Revolution Pi version 2022-07-28-revpi-buster from KUNBUS GmbH. This vulnerability could allow an authenticated attacker to execute OS commands on the device via the ‘php/dal.php’ endpoint, in the ‘arrSaveConfig’ parameter.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2024-8684">详情</a></td>
</tr>
<tr>
<td>fea734140977d20e67e23a8e8db27197</td>
<td>CVE-2025-25247</td>
<td>2025-02-10 12:15:29</td>
<td>Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in Apache Felix Webconsole. This issue affects Apache Felix Webconsole 4.x up to 4.9.8 and 5.x up to 5.0.8. Users are recommended to upgrade to version 4.9.10 or 5.0.10 or higher, which fixes the issue.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-25247">详情</a></td>
</tr>
<tr>
<td>eebb4b56947c5cb54b1b68882adddc9f</td>
<td>CVE-2025-1099</td>
<td>2025-02-10 11:15:21</td>
<td>The TP-Link Tapo C500 V1 and V2 are a pan-and-tilt outdoor Wi-Fi security cameras designed for comprehensive surveillance. This vulnerability exists in Tapo C500 Wi-Fi camera due to hard-coded RSA private key embedded within the device firmware. An attacker with physical access could exploit this vulnerability to obtain cryptographic private keys which can then be used to perform impersonation, data decryption and man in the middle attacks on the targeted device.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-1099">详情</a></td>
</tr>
<tr>
<td>5449f1701ac7d58413b7606510d88007</td>
<td>CVE-2025-21685</td>
<td>2025-02-09 12:15:29</td>
<td>In the Linux kernel, the following vulnerability has been resolved: platform/x86: lenovo-yoga-tab2-pro-1380-fastcharger: fix serdev race The yt2_1380_fc_serdev_probe() function calls devm_serdev_device_open() before setting the client ops via serdev_device_set_client_ops(). This ordering can trigger a NULL pointer dereference in the serdev controller's receive_buf handler, as it assumes serdev->ops is valid when SERPORT_ACTIVE is set. This is similar to the issue fixed in commit 5e700b384ec1 ("platform/chrome: cros_ec_uart: properly fix race condition") where devm_serdev_device_open() was called before fully initializing the device. Fix the race by ensuring client ops are set before enabling the port via devm_serdev_device_open(). Note, serdev_device_set_baudrate() and serdev_device_set_flow_control() calls should be after the devm_serdev_device_open() call.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-21685">详情</a></td>
</tr>
</tbody>
</table>
</div>
<br />
<div>
<table id="国家信息安全漏洞共享平台(CNVD)" class="dataintable">
<tbody>
<tr>
<th width="22%">国家信息安全漏洞共享平台(CNVD) [TOP 30]</th>
<th width="15%">CVES</th>
<th width="15%">TIME</th>
<th width="43%">TITLE</th>
<th width="5%">URL</th>
</tr>
<tr>
<td>8686fda9b2b49e4e1666b54e2248f935</td>
<td>CNVD-2021-74882</td>
<td>2021-11-14 16:43:52</td>
<td>四创科技有限公司建站系统存在SQL注入漏洞</td>
<td><a target="_blank" href="https://www.cnvd.org.cn/flaw/show/CNVD-2021-74882">详情</a></td>
</tr>
<tr>
<td>8f6972d84ad188b05ff9cc14d4334949</td>
<td>CNVD-2021-87021 (CVE-2020-4690)</td>
<td>2021-11-12 12:43:14</td>
<td>IBM Security Guardium硬编码凭证漏洞</td>
<td><a target="_blank" href="https://www.cnvd.org.cn/flaw/show/CNVD-2021-87021">详情</a></td>
</tr>
<tr>
<td>3bfe7b053a0c59d8a3d38c18f86aa143</td>
<td>CNVD-2021-87022 (CVE-2021-38870)</td>
<td>2021-11-12 12:43:12</td>
<td>IBM Aspera跨站脚本漏洞</td>
<td><a target="_blank" href="https://www.cnvd.org.cn/flaw/show/CNVD-2021-87022">详情</a></td>
</tr>
<tr>
<td>a4649bb17f4db4d1c7f879ebceb46ed0</td>
<td>CNVD-2021-87011 (CVE-2021-29753)</td>
<td>2021-11-12 12:43:11</td>
<td>IBM Business Automation Workflow存在未明漏洞</td>
<td><a target="_blank" href="https://www.cnvd.org.cn/flaw/show/CNVD-2021-87011">详情</a></td>
</tr>
<tr>
<td>094c613f9ed4b8b9d887dc912789043c</td>
<td>CNVD-2021-87025 (CVE-2021-20563)</td>
<td>2021-11-12 12:43:10</td>
<td>IBM Sterling File Gateway信息泄露漏洞</td>
<td><a target="_blank" href="https://www.cnvd.org.cn/flaw/show/CNVD-2021-87025">详情</a></td>
</tr>
<tr>
<td>41c47f01a4c65dcb6efc9ebf483fe762</td>
<td>CNVD-2021-87010 (CVE-2021-38887)</td>
<td>2021-11-12 12:43:08</td>
<td>IBM InfoSphere Information Server信息泄露漏洞</td>
<td><a target="_blank" href="https://www.cnvd.org.cn/flaw/show/CNVD-2021-87010">详情</a></td>
</tr>
<tr>
<td>f51d33e7a09fd61ca90ede453515a830</td>
<td>CNVD-2021-87016 (CVE-2021-29764)</td>
<td>2021-11-12 12:43:07</td>
<td>IBM Sterling B2B Integrator跨站脚本漏洞</td>
<td><a target="_blank" href="https://www.cnvd.org.cn/flaw/show/CNVD-2021-87016">详情</a></td>
</tr>
<tr>
<td>33615a5f78df822e82e6d3436045c48c</td>
<td>CNVD-2021-87026 (CVE-2021-38877)</td>
<td>2021-11-12 12:43:06</td>
<td>IBM Jazz for Service Management跨站脚本漏洞</td>
<td><a target="_blank" href="https://www.cnvd.org.cn/flaw/show/CNVD-2021-87026">详情</a></td>
</tr>
<tr>
<td>8e729177bcb4105dd831fb1e123ed1bb</td>
<td>CNVD-2021-87014 (CVE-2021-29679)</td>
<td>2021-11-12 12:43:04</td>
<td>IBM Cognos Analytics远程代码执行漏洞</td>
<td><a target="_blank" href="https://www.cnvd.org.cn/flaw/show/CNVD-2021-87014">详情</a></td>
</tr>
<tr>
<td>1a3b856f78e9fbdca12aeddc7d665aca</td>
<td>CNVD-2021-87029 (CVE-2021-29752)</td>
<td>2021-11-12 12:43:03</td>
<td>IBM Db2信息泄露漏洞</td>
<td><a target="_blank" href="https://www.cnvd.org.cn/flaw/show/CNVD-2021-87029">详情</a></td>
</tr>
<tr>
<td>6f1aa3a0cb819d97519baa47fd0232d5</td>
<td>CNVD-2021-87015 (CVE-2021-29745)</td>
<td>2021-11-12 12:43:02</td>
<td>IBM Cognos Analytics权限提升漏洞</td>
<td><a target="_blank" href="https://www.cnvd.org.cn/flaw/show/CNVD-2021-87015">详情</a></td>
</tr>
<tr>
<td>cbcb12f5f51d6e7d6d8a9fa581aa863a</td>
<td>CNVD-2021-73908</td>
<td>2021-11-11 16:42:44</td>
<td>泛微e-cology存在SQL注入漏洞</td>
<td><a target="_blank" href="https://www.cnvd.org.cn/flaw/show/CNVD-2021-73908">详情</a></td>
</tr>
<tr>
<td>ae6fd467da55de31aa7219187cf5c2d4</td>
<td>CNVD-2021-86904 (CVE-2021-20351)</td>
<td>2021-11-11 08:31:46</td>
<td>IBM Engineering跨站脚本漏洞</td>
<td><a target="_blank" href="https://www.cnvd.org.cn/flaw/show/CNVD-2021-86904">详情</a></td>
</tr>
<tr>
<td>412a15b40959ed9cf9330ee79f99e079</td>
<td>CNVD-2021-86903 (CVE-2021-31173)</td>
<td>2021-11-11 08:31:44</td>
<td>Microsoft SharePoint Server信息泄露漏洞</td>
<td><a target="_blank" href="https://www.cnvd.org.cn/flaw/show/CNVD-2021-86903">详情</a></td>
</tr>
<tr>
<td>1cbc5d5faac431d3e82c9e5ea9588b5f</td>
<td>CNVD-2021-86902 (CVE-2021-31172)</td>
<td>2021-11-11 08:31:43</td>
<td>Microsoft SharePoint欺骗漏洞</td>
<td><a target="_blank" href="https://www.cnvd.org.cn/flaw/show/CNVD-2021-86902">详情</a></td>
</tr>
<tr>
<td>686c7cfb20933b41c3d679cbba79a2ad</td>
<td>CNVD-2021-86901 (CVE-2021-31181)</td>
<td>2021-11-11 08:31:42</td>
<td>Microsoft SharePoint远程代码执行漏洞</td>
<td><a target="_blank" href="https://www.cnvd.org.cn/flaw/show/CNVD-2021-86901">详情</a></td>
</tr>
<tr>
<td>72fdfb2d44c0d41d638e4632bdfc10b8</td>
<td>CNVD-2021-86900 (CVE-2021-3561)</td>
<td>2021-11-11 08:31:41</td>
<td>fig2dev缓冲区溢出漏洞</td>
<td><a target="_blank" href="https://www.cnvd.org.cn/flaw/show/CNVD-2021-86900">详情</a></td>
</tr>
<tr>
<td>3ba6f0e9394f9414e2cadb9495e2d5f5</td>
<td>CNVD-2021-85884 (CVE-2021-41210)</td>
<td>2021-11-10 07:24:57</td>
<td>Google TensorFlow堆分配数组越界读取漏洞</td>
<td><a target="_blank" href="https://www.cnvd.org.cn/flaw/show/CNVD-2021-85884">详情</a></td>
</tr>
<tr>
<td>4d8c4744ea972fb2fcb9673fea1fc7b7</td>
<td>CNVD-2021-85883 (CVE-2021-41226)</td>
<td>2021-11-10 07:24:56</td>
<td>Google TensorFlow堆越界访问漏洞</td>
<td><a target="_blank" href="https://www.cnvd.org.cn/flaw/show/CNVD-2021-85883">详情</a></td>
</tr>
<tr>
<td>8778f9cd924cae585ca5e2e0b8be3b3f</td>
<td>CNVD-2021-85882 (CVE-2021-41224)</td>
<td>2021-11-10 07:24:54</td>
<td>Google TensorFlow堆越界访问漏洞</td>
<td><a target="_blank" href="https://www.cnvd.org.cn/flaw/show/CNVD-2021-85882">详情</a></td>
</tr>
<tr>
<td>e1b2722e6d5c509c680b584416d9cb20</td>
<td>CNVD-2021-85881 (CVE-2021-42770)</td>
<td>2021-11-10 07:24:53</td>
<td>OPNsense跨站脚本漏洞</td>
<td><a target="_blank" href="https://www.cnvd.org.cn/flaw/show/CNVD-2021-85881">详情</a></td>
</tr>
<tr>
<td>ed09c9fa5586e2d4d9b4e95fe3b447a0</td>
<td>CNVD-2021-85880 (CVE-2021-28024)</td>
<td>2021-11-10 07:24:52</td>
<td>ServiceTonic访问控制不当漏洞</td>
<td><a target="_blank" href="https://www.cnvd.org.cn/flaw/show/CNVD-2021-85880">详情</a></td>
</tr>
<tr>
<td>8a642f0922f7f915e81b2b947276a96c</td>
<td>CNVD-2021-85879 (CVE-2021-28023)</td>
<td>2021-11-10 07:24:50</td>
<td>ServiceTonic任意文件上传漏洞</td>
<td><a target="_blank" href="https://www.cnvd.org.cn/flaw/show/CNVD-2021-85879">详情</a></td>
</tr>
<tr>
<td>c00b061c2cfdee4016a869a188135db5</td>
<td>CNVD-2021-85878 (CVE-2021-28022)</td>
<td>2021-11-10 07:24:49</td>
<td>ServiceTonic SQL注入漏洞</td>
<td><a target="_blank" href="https://www.cnvd.org.cn/flaw/show/CNVD-2021-85878">详情</a></td>
</tr>
<tr>
<td>9c4b20a28ad2bd4ab916448f0e1272bd</td>
<td>CNVD-2021-85877 (CVE-2021-32483)</td>
<td>2021-11-10 07:24:48</td>
<td>Cloudera Manager不正确访问控制漏洞</td>
<td><a target="_blank" href="https://www.cnvd.org.cn/flaw/show/CNVD-2021-85877">详情</a></td>
</tr>
<tr>
<td>4d4423857b7b1f38e49738f00e8949ba</td>
<td>CNVD-2021-85876 (CVE-2021-32481)</td>
<td>2021-11-10 07:24:46</td>
<td>Cloudera Hue跨站脚本漏洞</td>
<td><a target="_blank" href="https://www.cnvd.org.cn/flaw/show/CNVD-2021-85876">详情</a></td>
</tr>
<tr>
<td>6b12b7fc216d603e8e07351603851c86</td>
<td>CNVD-2021-85875 (CVE-2021-29994)</td>
<td>2021-11-10 07:24:45</td>
<td>Cloudera Hue跨站脚本漏洞</td>
<td><a target="_blank" href="https://www.cnvd.org.cn/flaw/show/CNVD-2021-85875">详情</a></td>
</tr>
<tr>
<td>72894fb3a3538de240d2f6810aae63c9</td>
<td>CNVD-2021-85892 (CVE-2021-42701)</td>
<td>2021-11-10 02:38:27</td>
<td>DAQFactory中间人攻击漏洞</td>
<td><a target="_blank" href="https://www.cnvd.org.cn/flaw/show/CNVD-2021-85892">详情</a></td>
</tr>
<tr>
<td>94a1f99a64ba24540cc1594d0a0b3152</td>
<td>CNVD-2021-85893 (CVE-2021-42699)</td>
<td>2021-11-10 02:38:26</td>
<td>DAQFactory明文传输漏洞</td>
<td><a target="_blank" href="https://www.cnvd.org.cn/flaw/show/CNVD-2021-85893">详情</a></td>
</tr>
<tr>
<td>5d9bac33be8f2f88391f6de02fb89c73</td>
<td>CNVD-2021-85894 (CVE-2021-42698)</td>
<td>2021-11-10 02:38:24</td>
<td>DAQFactory反序列化漏洞</td>
<td><a target="_blank" href="https://www.cnvd.org.cn/flaw/show/CNVD-2021-85894">详情</a></td>
</tr>
</tbody>
</table>
</div>
<br />
<div>
<table id="国家信息安全漏洞库(CNNVD)" class="dataintable">
<tbody>
<tr>
<th width="22%">国家信息安全漏洞库(CNNVD) [TOP 30]</th>
<th width="15%">CVES</th>
<th width="15%">TIME</th>
<th width="43%">TITLE</th>
<th width="5%">URL</th>
</tr>
<tr>
<td>b5815af17792cf5abac5732bae3094e9</td>
<td>CNNVD-202308-131 (CVE-2023-20215)</td>
<td>2023-08-03 12:41:47</td>
<td>Cisco Secure Web Appliance 安全漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202308-131">详情</a></td>
</tr>
<tr>
<td>8d98bb094a70919c9e881cc7da5898d4</td>
<td>CNNVD-202308-132 (CVE-2023-20204)</td>
<td>2023-08-03 12:40:44</td>
<td>Cisco BroadWorks CommPilot 安全漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202308-132">详情</a></td>
</tr>
<tr>
<td>c65e18d821cb73d6036dc2df6a726951</td>
<td>CNNVD-202308-123 (CVE-2023-29409)</td>
<td>2023-08-02 12:45:03</td>
<td>Google Golang 资源管理错误漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202308-123">详情</a></td>
</tr>
<tr>
<td>452c53b54ef3a658eaf6bd8e7d93fe05</td>
<td>CNNVD-202308-124 (CVE-2023-4070)</td>
<td>2023-08-02 12:44:01</td>
<td>Google Chrome 安全漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202308-124">详情</a></td>
</tr>
<tr>
<td>ac7b17414d163c2f26008516638e3a99</td>
<td>CNNVD-202308-125 (CVE-2023-39113)</td>
<td>2023-08-02 12:42:59</td>
<td>ngiflib 安全漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202308-125">详情</a></td>
</tr>
<tr>
<td>224fd467b813dbee234efe1e61e2ec66</td>
<td>CNNVD-202308-126 (CVE-2023-39114)</td>
<td>2023-08-02 12:42:57</td>
<td>ngiflib 安全漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202308-126">详情</a></td>
</tr>
<tr>
<td>72d862f454eb3d0e4dd221413d85f6b2</td>
<td>CNNVD-202308-127 (CVE-2023-1437)</td>
<td>2023-08-02 12:42:55</td>
<td>Advantech WebAccess/SCADA 安全漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202308-127">详情</a></td>
</tr>
<tr>
<td>a3b636c53a2116b7ab85ea0c29470e76</td>
<td>CNNVD-202308-128 (CVE-2023-3329)</td>
<td>2023-08-02 12:42:53</td>
<td>SpiderControl SCADA Webserver 路径遍历漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202308-128">详情</a></td>
</tr>
<tr>
<td>0e8e3c3600e145e70920c2026bde8feb</td>
<td>CNNVD-202308-129 (CVE-2023-4069)</td>
<td>2023-08-02 12:42:51</td>
<td>Google Chrome 安全漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202308-129">详情</a></td>
</tr>
<tr>
<td>619ce483843859fb783525b2b8d00f59</td>
<td>CNNVD-202308-130 (CVE-2023-4068)</td>
<td>2023-08-02 12:41:48</td>
<td>Google Chrome 安全漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202308-130">详情</a></td>
</tr>
<tr>
<td>6a73381eaa628503bd8c242cd313f005</td>
<td>CNNVD-202308-057 (CVE-2023-36121)</td>
<td>2023-08-01 12:48:12</td>
<td>e107 跨站脚本漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202308-057">详情</a></td>
</tr>
<tr>
<td>086c171bc44677f87e0ad45c8ab5dab6</td>
<td>CNNVD-202308-058 (CVE-2023-2164)</td>
<td>2023-08-01 12:47:10</td>
<td>GitLab 跨站脚本漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202308-058">详情</a></td>
</tr>
<tr>
<td>bc6915cfb72ce7e27f2aa64ff3a35ee2</td>
<td>CNNVD-202308-059 (CVE-2023-31432)</td>
<td>2023-08-01 12:47:08</td>
<td>Brocade Fabric OS 安全漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202308-059">详情</a></td>
</tr>
<tr>
<td>915090fa2939ee9d9978125be4eeff27</td>
<td>CNNVD-202308-060 (CVE-2023-3739)</td>
<td>2023-08-01 12:46:07</td>
<td>Google Chrome 安全漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202308-060">详情</a></td>
</tr>
<tr>
<td>b790441bc923d37c914ea50edcdfaa16</td>
<td>CNNVD-202308-061 (CVE-2023-3385)</td>
<td>2023-08-01 12:46:05</td>
<td>GitLab 路径遍历漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202308-061">详情</a></td>
</tr>
<tr>
<td>a6be4479387eddda68e1c7808965c1bc</td>
<td>CNNVD-202308-062 (CVE-2022-40609)</td>
<td>2023-08-01 12:46:03</td>
<td>IBM SDK, Java Technology Edition 安全漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202308-062">详情</a></td>
</tr>
<tr>
<td>55409ee74ffe87168f7d61814b568334</td>
<td>CNNVD-202308-063 (CVE-2023-31431)</td>
<td>2023-08-01 12:46:02</td>
<td>Brocade Fabric OS 安全漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202308-063">详情</a></td>
</tr>
<tr>
<td>a4340da9d26800c671fa800a080c3d01</td>
<td>CNNVD-202308-064 (CVE-2023-36210)</td>
<td>2023-08-01 12:45:00</td>
<td>MotoCMS 安全漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202308-064">详情</a></td>
</tr>
<tr>
<td>d70ae2187ae1aa50a2af6befce15bfbd</td>
<td>CNNVD-202308-065 (CVE-2023-31428)</td>
<td>2023-08-01 12:43:58</td>
<td>Brocade Fabric OS 代码问题漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202308-065">详情</a></td>
</tr>
<tr>
<td>8b0e98f117732e813318bdec77d0fb4b</td>
<td>CNNVD-202308-066 (CVE-2023-31928)</td>
<td>2023-08-01 12:42:57</td>
<td>Brocade Fabric OS 跨站脚本漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202308-066">详情</a></td>
</tr>
<tr>
<td>73ffd9540daad0a04d3d54041ba9df14</td>
<td>CNNVD-202307-2321 (CVE-2023-37772)</td>
<td>2023-07-31 12:44:10</td>
<td>Online Shopping Portal 安全漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202307-2321">详情</a></td>
</tr>
<tr>
<td>10f462bbd81ee431ab32c6a160fc068d</td>
<td>CNNVD-202307-2322 (CVE-2023-3983)</td>
<td>2023-07-31 12:44:08</td>
<td>Advantech iView 安全漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202307-2322">详情</a></td>
</tr>
<tr>
<td>91dcd4420b85064dbae045bceabb71b9</td>
<td>CNNVD-202307-2323 (CVE-2023-37496)</td>
<td>2023-07-31 12:44:07</td>
<td>HCL Technologies HCL Verse 安全漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202307-2323">详情</a></td>
</tr>
<tr>
<td>c81e50233ec479272b638b8dbddedeea</td>
<td>CNNVD-202307-2324 (CVE-2023-38989)</td>
<td>2023-07-31 12:44:05</td>
<td>jeesite 安全漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202307-2324">详情</a></td>
</tr>
<tr>
<td>775849c6f8c5fe41588806137e12cfa8</td>
<td>CNNVD-202307-2326 (CVE-2023-3462)</td>
<td>2023-07-31 12:44:03</td>
<td>HashiCorp Vault 安全漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202307-2326">详情</a></td>
</tr>
<tr>
<td>f995ebc4f6961ed50c6d18ec0f7efcf4</td>
<td>CNNVD-202307-2327 (CVE-2022-42183)</td>