-
-
Notifications
You must be signed in to change notification settings - Fork 181
/
index.html
2518 lines (2202 loc) · 106 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-01-05 09:22:31 -->
<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>e086db9eaccd6ddc8d7853a56ca1e1a9</td>
<td>CVE-2024-13131</td>
<td>2025-01-05 03:15:05 <img src="imgs/new.gif" /></td>
<td>A vulnerability classified as problematic has been found in Dahua IPC-HFW1200S, IPC-HFW2300R-Z, IPC-HFW5220E-Z and IPC-HDW1200S up to 20241222. This affects an unknown part of the file /web_caps/webCapsConfig of the component Web Interface. The manipulation leads to information disclosure. It is possible to initiate the attack remotely. The exploit has been disclosed to the public and may be used. The vendor was contacted early about this disclosure but did not respond in any way.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2024-13131">详情</a></td>
</tr>
<tr>
<td>99fb9048bb89df70e330ac563e328c7f</td>
<td>CVE-2024-13130</td>
<td>2025-01-05 01:15:18 <img src="imgs/new.gif" /></td>
<td>A vulnerability was found in Dahua IPC-HFW1200S, IPC-HFW2300R-Z, IPC-HFW5220E-Z and IPC-HDW1200S up to 20241222. It has been rated as problematic. Affected by this issue is some unknown functionality of the file ../mtd/Config/Sha1Account1 of the component Web Interface. The manipulation leads to path traversal: '../filedir'. The attack may be launched remotely. The exploit has been disclosed to the public and may be used. The vendor was contacted early about this disclosure but did not respond in any way.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2024-13130">详情</a></td>
</tr>
<tr>
<td>4e32f4462215eea68e5cd3f0114d794a</td>
<td>CVE-2025-0214</td>
<td>2025-01-04 17:15:07 <img src="imgs/new.gif" /></td>
<td>A vulnerability was found in TMD Custom Header Menu 4.0.0.1 on OpenCart. It has been rated as problematic. This issue affects some unknown processing of the file /admin/index.php. The manipulation of the argument headermenu_id leads to sql injection. The attack may be initiated 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 upgrade the affected component.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-0214">详情</a></td>
</tr>
<tr>
<td>fbc5c3eb2a277a3d1e7496993c926a09</td>
<td>CVE-2025-0213</td>
<td>2025-01-04 17:15:06 <img src="imgs/new.gif" /></td>
<td>A vulnerability was found in Campcodes Project Management System 1.0. It has been declared as critical. This vulnerability affects unknown code of the file /forms/update_forms.php?action=change_pic2&id=4. The manipulation of the argument file leads to unrestricted upload. The attack can be initiated 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-0213">详情</a></td>
</tr>
<tr>
<td>9fa08e0a1002f940a948d3ab745532d7</td>
<td>CVE-2025-0212</td>
<td>2025-01-04 16:15:23 <img src="imgs/new.gif" /></td>
<td>A vulnerability was found in Campcodes Student Grading System 1.0. It has been classified as critical. This affects an unknown part of the file /view_students.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-0212">详情</a></td>
</tr>
<tr>
<td>04c3eaa24dfbdca1fa1ec6dfb5bbbe3d</td>
<td>CVE-2025-0211</td>
<td>2025-01-04 15:15:07 <img src="imgs/new.gif" /></td>
<td>A vulnerability was found in Campcodes School Faculty Scheduling System 1.0 and classified as critical. Affected by this issue is some unknown functionality of the file /admin/index.php. The manipulation of the argument page leads to file inclusion. The attack may be launched 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-0211">详情</a></td>
</tr>
<tr>
<td>d1b89632f4e9255d19419d3a30b0da11</td>
<td>CVE-2024-41768</td>
<td>2025-01-04 15:15:07 <img src="imgs/new.gif" /></td>
<td>IBM Engineering Lifecycle Optimization - Publishing 7.0.2 and 7.0.3 could allow a remote attacker to cause an unhandled SSL exception which could leave the connection in an unexpected or insecure state.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2024-41768">详情</a></td>
</tr>
<tr>
<td>503530d295feeb5b96811ed447d8dd3b</td>
<td>CVE-2024-41767</td>
<td>2025-01-04 15:15:06 <img src="imgs/new.gif" /></td>
<td>IBM Engineering Lifecycle Optimization - Publishing 7.0.2 and 7.0.3 is vulnerable to SQL injection. A remote attacker could send specially crafted SQL statements, which could allow the attacker to view, add, modify, or delete information in the back-end database.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2024-41767">详情</a></td>
</tr>
<tr>
<td>1d399c6529eef8d24729357d021728fc</td>
<td>CVE-2024-41766</td>
<td>2025-01-04 15:15:06 <img src="imgs/new.gif" /></td>
<td>IBM Engineering Lifecycle Optimization - Publishing 7.0.2 and 7.0.3 could allow a remote attacker to cause a denial of service using a complex regular expression.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2024-41766">详情</a></td>
</tr>
<tr>
<td>253437585e9d474dbc1efaaac409454b</td>
<td>CVE-2024-41765</td>
<td>2025-01-04 15:15:06 <img src="imgs/new.gif" /></td>
<td>IBM Engineering Lifecycle Optimization - Publishing 7.0.2 and 7.0.3 could allow a remote attacker to traverse directories on the system. An attacker could send a specially crafted URL request containing "dot dot" sequences (/../) to view arbitrary files on the system.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2024-41765">详情</a></td>
</tr>
<tr>
<td>9cdbf81955a5a2bf6a5a2c9d1fe1800d</td>
<td>CVE-2025-0201</td>
<td>2025-01-04 04:15:05 <img src="imgs/new.gif" /></td>
<td>A vulnerability was found in code-projects Point of Sales and Inventory Management System 1.0 and classified as critical. Affected by this issue is some unknown functionality of the file /user/update_account.php. The manipulation of the argument username leads to sql injection. The attack may be launched 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-0201">详情</a></td>
</tr>
<tr>
<td>4b87beb1a3e38ff8fc1724c0c3b8803e</td>
<td>CVE-2025-0200</td>
<td>2025-01-04 03:15:07 <img src="imgs/new.gif" /></td>
<td>A vulnerability has been found in code-projects Point of Sales and Inventory Management System 1.0 and classified as critical. Affected by this vulnerability is an unknown functionality of the file /user/search_num.php. The manipulation of the argument search leads to sql injection. The attack can be launched 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-0200">详情</a></td>
</tr>
<tr>
<td>d0df659ee0ea3e4c12937fc1733651e0</td>
<td>CVE-2025-22390</td>
<td>2025-01-04 02:15:07 <img src="imgs/new.gif" /></td>
<td>An issue was discovered in Optimizely EPiServer.CMS.Core before 12.32.0. A medium-severity vulnerability exists in the CMS due to insufficient enforcement of password complexity requirements. The application permits users to set passwords with a minimum length of 6 characters, lacking adequate complexity to resist modern attack techniques such as password spraying or offline password cracking.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-22390">详情</a></td>
</tr>
<tr>
<td>501a24d4a69a334d430572046ee43951</td>
<td>CVE-2025-22389</td>
<td>2025-01-04 02:15:07 <img src="imgs/new.gif" /></td>
<td>An issue was discovered in Optimizely EPiServer.CMS.Core before 12.32.0. A medium-severity vulnerability exists in the CMS, where the application does not properly validate uploaded files. This allows the upload of potentially malicious file types, including .docm .html. When accessed by application users, these files can be used to execute malicious actions or compromise users' systems.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-22389">详情</a></td>
</tr>
<tr>
<td>6fe40196ecdc2e0949283269e83be9ef</td>
<td>CVE-2025-22388</td>
<td>2025-01-04 02:15:07 <img src="imgs/new.gif" /></td>
<td>An issue was discovered in Optimizely EPiServer.CMS.Core before 12.22.0. A high-severity Stored Cross-Site Scripting (XSS) vulnerability exists in the CMS, allowing malicious actors to inject and execute arbitrary JavaScript code, potentially compromising user data, escalating privileges, or executing unauthorized actions. The issue exists in multiple areas, including content editing, link management, and file uploads.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-22388">详情</a></td>
</tr>
<tr>
<td>44eac3b44a023d55d7d796b7c94ae573</td>
<td>CVE-2025-22387</td>
<td>2025-01-04 02:15:07 <img src="imgs/new.gif" /></td>
<td>An issue was discovered in Optimizely Configured Commerce before 5.2.2408. A medium-severity issue exists in requests for resources where the session token is submitted as a URL parameter. This exposes information about the authenticated session, which can be leveraged for session hijacking.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-22387">详情</a></td>
</tr>
<tr>
<td>c932818d037f1a535e49a3067c9661ce</td>
<td>CVE-2025-22386</td>
<td>2025-01-04 02:15:07 <img src="imgs/new.gif" /></td>
<td>An issue was discovered in Optimizely Configured Commerce before 5.2.2408. A medium-severity session issue exists in the Commerce B2B application, affecting the longevity of active sessions in the storefront. This allows session tokens tied to logged-out sessions to still be active and usable.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-22386">详情</a></td>
</tr>
<tr>
<td>71db7134a13a57178e6768787426bfaa</td>
<td>CVE-2025-22385</td>
<td>2025-01-04 02:15:07 <img src="imgs/new.gif" /></td>
<td>An issue was discovered in Optimizely Configured Commerce before 5.2.2408. For newly created accounts, the Commerce B2B application does not require email confirmation. This medium-severity issue allows the mass creation of accounts. This could affect database storage; also, non-requested storefront accounts can be created on behalf of visitors.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-22385">详情</a></td>
</tr>
<tr>
<td>7d7d6d5787efebf8a08fa7118a91e966</td>
<td>CVE-2025-22384</td>
<td>2025-01-04 02:15:06 <img src="imgs/new.gif" /></td>
<td>An issue was discovered in Optimizely Configured Commerce before 5.2.2408. A medium-severity issue concerning business logic exists in the Commerce B2B application, which allows storefront visitors to purchase discontinued products in specific scenarios where requests are altered before reaching the server.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-22384">详情</a></td>
</tr>
<tr>
<td>9f70458c56528da693544887754b2d73</td>
<td>CVE-2025-22383</td>
<td>2025-01-04 02:15:06 <img src="imgs/new.gif" /></td>
<td>An issue was discovered in Optimizely Configured Commerce before 5.2.2408. A medium-severity input validation issue exists in the Commerce B2B application, affecting the Contact Us functionality. This allows visitors to send e-mail messages that could contain unfiltered HTML markup in specific scenarios.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-22383">详情</a></td>
</tr>
<tr>
<td>5e09b79567b88ed4cdba140ad1718db5</td>
<td>CVE-2024-53842</td>
<td>2025-01-03 04:15:06</td>
<td>In cc_SendCcImsInfoIndMsg of cc_MmConManagement.c, there is a possible out of bounds write due to a missing bounds check. This could lead to remote code execution with no additional execution privileges needed. User interaction is not needed for exploitation.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2024-53842">详情</a></td>
</tr>
<tr>
<td>d7a5fe73d7255f72725803dabb5b63b5</td>
<td>CVE-2024-53841</td>
<td>2025-01-03 04:15:06</td>
<td>In startListeningForDeviceStateChanges, there is a possible Permission Bypass due to a confused deputy. This could lead to local escalation of privilege with no additional execution privileges needed. User interaction is not needed for exploitation.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2024-53841">详情</a></td>
</tr>
<tr>
<td>5d5e29e9feea4814291bc3529b3ec0ec</td>
<td>CVE-2024-53840</td>
<td>2025-01-03 04:15:06</td>
<td>there is a possible biometric bypass due to an unusual root cause. This could lead to local escalation of privilege with no additional execution privileges needed. User interaction is not needed for exploitation.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2024-53840">详情</a></td>
</tr>
<tr>
<td>c6a4a2827b0df14d7c5e6c30028030bc</td>
<td>CVE-2024-53839</td>
<td>2025-01-03 04:15:06</td>
<td>In GetCellInfoList() of protocolnetadapter.cpp, there is a possible out of bounds read due to a missing bounds check. This could lead to local information disclosure with baseband firmware compromise required. User Interaction is not needed for exploitation.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2024-53839">详情</a></td>
</tr>
<tr>
<td>e81420e31075564c77920d209faba730</td>
<td>CVE-2024-53838</td>
<td>2025-01-03 04:15:06</td>
<td>In Exynos_parsing_user_data_registered_itu_t_t35 of VendorVideoAPI.cpp, there is a possible out of bounds write due to an incorrect bounds check. This could lead to local escalation of privilege with no additional execution privileges needed. User interaction is not needed for exploitation.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2024-53838">详情</a></td>
</tr>
<tr>
<td>cc69a913af6dec5d96f073d25c4f8ef3</td>
<td>CVE-2024-53837</td>
<td>2025-01-03 04:15:06</td>
<td>In prepare_response of lwis_periodic_io.c, there is a possible out of bounds write due to an integer overflow. This could lead to local escalation of privilege with no additional execution privileges needed. User interaction is not needed for exploitation.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2024-53837">详情</a></td>
</tr>
<tr>
<td>61a8f1c166e8a268ee999e5f90e65e15</td>
<td>CVE-2024-53836</td>
<td>2025-01-03 04:15:06</td>
<td>In wbrc_bt_dev_write of wb_regon_coordinator.c, there is a possible out of bounds write due to a buffer overflow. This could lead to local escalation of privilege with System execution privileges needed. User interaction is not needed for exploitation.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2024-53836">详情</a></td>
</tr>
<tr>
<td>cee06660709997dae1babd16bed62f92</td>
<td>CVE-2024-53835</td>
<td>2025-01-03 04:15:06</td>
<td>there is a possible biometric bypass due to an unusual root cause. This could lead to local escalation of privilege with no additional execution privileges needed. User interaction is not needed for exploitation.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2024-53835">详情</a></td>
</tr>
<tr>
<td>bfb787233433bd7b21e116314ca0e08e</td>
<td>CVE-2024-53834</td>
<td>2025-01-03 04:15:06</td>
<td>In sms_DisplayHexDumpOfPrivacyBuffer of sms_Utilities.c, there is a possible out of bounds read due to an incorrect bounds check. This could lead to remote information disclosure with no additional execution privileges needed. User interaction is not needed for exploitation.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2024-53834">详情</a></td>
</tr>
<tr>
<td>87792a26c0deb5f69447ac58c7a7e75e</td>
<td>CVE-2024-53833</td>
<td>2025-01-03 04:15:06</td>
<td>In prepare_response_locked of lwis_transaction.c, there is a possible out of bounds write due to improper input validation. This could lead to local escalation of privilege with no additional execution privileges needed. User interaction is not needed for exploitation.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2024-53833">详情</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>