forked from EXP-Tools/threat-broadcast
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
2515 lines (2200 loc) · 107 KB
/
Copy pathindex.html
File metadata and controls
2515 lines (2200 loc) · 107 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!-- RELEASE TIME : 2025-03-03 03:02:39 -->
<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>9f04288bf30c40b91583678a46a24ebf</td>
<td>CVE-2025-27585</td>
<td>2025-03-03 01:15:12 <img src="imgs/new.gif" /></td>
<td>A stored cross-site scripting (XSS) vulnerability in Serosoft Solutions Pvt Ltd Academia Student Information System (SIS) EagleR v1.0.118 allows attackers to execute arbitrary web scripts or HTML via injecting a crafted payload into the Print Name parameter at /rest/staffResource/update.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-27585">详情</a></td>
</tr>
<tr>
<td>a65272fa7edaeefdf24840e5d9f5621e</td>
<td>CVE-2025-27584</td>
<td>2025-03-03 01:15:12 <img src="imgs/new.gif" /></td>
<td>A stored cross-site scripting (XSS) vulnerability in Serosoft Solutions Pvt Ltd Academia Student Information System (SIS) EagleR v1.0.118 allows attackers to execute arbitrary web scripts or HTML via injecting a crafted payload into the First Name parameter at /rest/staffResource/update.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-27584">详情</a></td>
</tr>
<tr>
<td>5c610c3e93da029c2b8eeafec5fc7647</td>
<td>CVE-2025-27583</td>
<td>2025-03-03 01:15:12 <img src="imgs/new.gif" /></td>
<td>Incorrect access control in the component /rest/staffResource/findAllUsersAcrossOrg of Serosoft Solutions Pvt Ltd Academia Student Information System (SIS) EagleR v1.0.118 allows create and modify user accounts, including an Administrator account.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-27583">详情</a></td>
</tr>
<tr>
<td>fc63d9afab3fd518ca996a32456a4260</td>
<td>CVE-2025-25953</td>
<td>2025-03-03 01:15:11 <img src="imgs/new.gif" /></td>
<td>Serosoft Solutions Pvt Ltd Academia Student Information System (SIS) EagleR v1.0.118 was discovered to contain an Azure JWT access token exposure. This vulnerability allows authenticated attackers to escalate privileges and access sensitive information.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-25953">详情</a></td>
</tr>
<tr>
<td>716a1e2abb537a1c8fc50ea46efc179c</td>
<td>CVE-2025-25952</td>
<td>2025-03-03 01:15:11 <img src="imgs/new.gif" /></td>
<td>An Insecure Direct Object References (IDOR) in the component /getStudemtAllDetailsById?studentId=XX of Serosoft Solutions Pvt Ltd Academia Student Information System (SIS) EagleR v1.0.118 allows attackers to access sensitive user information via a crafted API request.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-25952">详情</a></td>
</tr>
<tr>
<td>6e1578a02d8d84ec077c331086ded8db</td>
<td>CVE-2025-25951</td>
<td>2025-03-03 01:15:11 <img src="imgs/new.gif" /></td>
<td>An information disclosure vulnerability in the component /rest/cb/executeBasicSearch of Serosoft Solutions Pvt Ltd Academia Student Information System (SIS) EagleR v1.0.118 allows attackers to access sensitive user information.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-25951">详情</a></td>
</tr>
<tr>
<td>e7f618f9c50716da9292c26bdfcacae6</td>
<td>CVE-2025-25950</td>
<td>2025-03-03 01:15:11 <img src="imgs/new.gif" /></td>
<td>Incorrect access control in the component /rest/staffResource/update of Serosoft Solutions Pvt Ltd Academia Student Information System (SIS) EagleR v1.0.118 allows create and modify user accounts, including an Administrator account.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-25950">详情</a></td>
</tr>
<tr>
<td>ff452da27434b1dc0c0ad1655bcbf72a</td>
<td>CVE-2025-25949</td>
<td>2025-03-03 01:15:11 <img src="imgs/new.gif" /></td>
<td>A stored cross-site scripting (XSS) vulnerability in Serosoft Solutions Pvt Ltd Academia Student Information System (SIS) EagleR v1.0.118 allows attackers to execute arbitrary web scripts or HTML via injecting a crafted payload into the User ID parameter at /rest/staffResource/update.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-25949">详情</a></td>
</tr>
<tr>
<td>7c784497583ed8bdfe46df0b6c0e515c</td>
<td>CVE-2025-25948</td>
<td>2025-03-03 01:15:11 <img src="imgs/new.gif" /></td>
<td>Incorrect access control in the component /rest/staffResource/create of Serosoft Solutions Pvt Ltd Academia Student Information System (SIS) EagleR v1.0.118 allows create and modify user accounts, including an Administrator account.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-25948">详情</a></td>
</tr>
<tr>
<td>5d62fd331d4a7c2d2660b787768bd240</td>
<td>CVE-2025-1843</td>
<td>2025-03-03 01:15:11 <img src="imgs/new.gif" /></td>
<td>A vulnerability, which was classified as critical, has been found in Mini-Tmall up to 20250211. This issue affects the function select of the file com/xq/tmall/dao/ProductMapper.java. The manipulation of the argument orderBy leads to sql injection. The attack may be initiated 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-2025-1843">详情</a></td>
</tr>
<tr>
<td>5628397a9ad7b479da5cd4259d55af63</td>
<td>CVE-2025-25726</td>
<td>2025-03-02 02:15:36 <img src="imgs/new.gif" /></td>
<td>Rejected reason: DO NOT USE THIS CANDIDATE NUMBER. ConsultIDs: CVE-2024-53427. Reason: This candidate is a reservation duplicate of CVE-2024-53427. Notes: All CVE users should reference CVE-2024-53427 instead of this candidate. All references and descriptions in this candidate have been removed to prevent accidental usage.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-25726">详情</a></td>
</tr>
<tr>
<td>26cb7e30f5ca530699f1e649a981ca7e</td>
<td>CVE-2025-25725</td>
<td>2025-03-02 02:15:36 <img src="imgs/new.gif" /></td>
<td>Rejected reason: DO NOT USE THIS CANDIDATE NUMBER. ConsultIDs: CVE-2025-25724. Reason: This candidate is a reservation duplicate of CVE-2025-25724. Notes: All CVE users should reference CVE-2025-25724 instead of this candidate. All references and descriptions in this candidate have been removed to prevent accidental usage.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-25725">详情</a></td>
</tr>
<tr>
<td>cdcca04944149e838ca965329673b67f</td>
<td>CVE-2025-25724</td>
<td>2025-03-02 02:15:36 <img src="imgs/new.gif" /></td>
<td>list_item_verbose in tar/util.c in libarchive through 3.7.7 does not check an strftime return value, which can lead to a denial of service or unspecified other impact via a crafted TAR archive that is read with a verbose value of 2. For example, the 100-byte buffer may not be sufficient for a custom locale.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-25724">详情</a></td>
</tr>
<tr>
<td>d4befd016b1d03f8aaea5a816a4d26e8</td>
<td>CVE-2025-1808</td>
<td>2025-03-02 01:15:10 <img src="imgs/new.gif" /></td>
<td>A vulnerability has been found in Pixsoft E-Saphira 1.7.24 and classified as critical. This vulnerability affects unknown code of the file /servlet?act=login&tipo=1 of the component Login Endpoint. The manipulation of the argument txtUsuario leads to sql injection. The attack can be initiated 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-2025-1808">详情</a></td>
</tr>
<tr>
<td>937bf14cb89c7b1e992e963e089f031c</td>
<td>CVE-2025-1807</td>
<td>2025-03-02 00:15:34 <img src="imgs/new.gif" /></td>
<td>A vulnerability, which was classified as problematic, was found in Eastnets PaymentSafe 2.5.26.0. This affects an unknown part of the file /directRouter.rfc of the component Edit Manual Reply Handler. The manipulation of the argument Title leads to basic cross site scripting. 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-2025-1807">详情</a></td>
</tr>
<tr>
<td>a701ea3ed1f45a28de20b3a4f7b5de45</td>
<td>CVE-2025-1806</td>
<td>2025-03-02 00:15:33 <img src="imgs/new.gif" /></td>
<td>A vulnerability, which was classified as problematic, has been found in Eastnets PaymentSafe 2.5.26.0. Affected by this issue is some unknown functionality of the file /Default.aspx of the component URL Handler. The manipulation leads to improper authorization. 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-2025-1806">详情</a></td>
</tr>
<tr>
<td>9607761e8145e0d1d595e3b5861bf97d</td>
<td>CVE-2025-1804</td>
<td>2025-03-01 19:15:10</td>
<td>A vulnerability was found in Blizzard Battle.Net up to 2.39.0.15212 on Windows and classified as critical. Affected by this issue is some unknown functionality in the library profapi.dll. The manipulation leads to uncontrolled search path. The attack needs to be approached locally. The complexity of an attack is rather high. The exploitation is known to be difficult.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-1804">详情</a></td>
</tr>
<tr>
<td>b7cc8bb3523412a9b7d21ea8942560b1</td>
<td>CVE-2025-1800</td>
<td>2025-03-01 18:15:34</td>
<td>A vulnerability has been found in D-Link DAR-7000 3.2 and classified as critical. This vulnerability affects the function get_ip_addr_details of the file /view/vpn/sxh_vpn/sxh_vpnlic.php of the component HTTP POST Request Handler. The manipulation of the argument ethname leads to command injection. The attack can be initiated remotely. The exploit has been disclosed to the public and may be used. This vulnerability only affects products that are no longer supported by the maintainer.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-1800">详情</a></td>
</tr>
<tr>
<td>8337ce1e3c6371a24da73a6395c85988</td>
<td>CVE-2025-1799</td>
<td>2025-03-01 18:15:34</td>
<td>A vulnerability, which was classified as critical, was found in Zorlan SkyCaiji 2.9. This affects the function previewAction of the file vendor/skycaiji/app/admin/controller/Tool.php. The manipulation of the argument data leads to server-side request forgery. 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-1799">详情</a></td>
</tr>
<tr>
<td>aaaa437aa386a05fcf7104a69f48b840</td>
<td>CVE-2025-1797</td>
<td>2025-03-01 15:15:11</td>
<td>A vulnerability, which was classified as critical, has been found in Hunan Zhonghe Baiyi Information Technology Baiyiyun Asset Management and Operations System up to 20250217. Affected by this issue is some unknown functionality of the file /wuser/anyUserBoundHouse.php. The manipulation of the argument huid 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-1797">详情</a></td>
</tr>
<tr>
<td>09931f4af2ee2f6404104df74388c8f0</td>
<td>CVE-2025-27416</td>
<td>2025-03-01 01:15:28</td>
<td>Scratch-Coding-Hut.github.io is the website for Coding Hut. The website as of 28 February 2025 contained a sign in with scratch username and password form. Any user who used the sign in page would be susceptible to any other user signing into their account. As of time of publication, a fix is not available but work on a fix is underway. As a workaround, users should avoid signing in.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-27416">详情</a></td>
</tr>
<tr>
<td>93eef792bf4c32a7acb3d7c5f47bb082</td>
<td>CVE-2025-1803</td>
<td>2025-03-01 01:15:28</td>
<td>Rejected reason: ** REJECT ** DO NOT USE THIS CANDIDATE NUMBER. Reason: This candidate was issued in error. Notes: All references and descriptions in this candidate have been removed to prevent accidental usage.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-1803">详情</a></td>
</tr>
<tr>
<td>b6936f214b6b1314f8db3ab6226f240c</td>
<td>CVE-2025-25723</td>
<td>2025-02-28 23:15:11</td>
<td>Buffer Overflow vulnerability in GPAC version 2.5 allows a local attacker to execute arbitrary code.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-25723">详情</a></td>
</tr>
<tr>
<td>3f56def6b8678da789de86ef12dc99c1</td>
<td>CVE-2025-25478</td>
<td>2025-02-28 23:15:11</td>
<td>The account file upload functionality in Syspass 3.2.x fails to properly handle special characters in filenames. This mismanagement leads to the disclosure of the web application s source code, exposing sensitive information such as the database password.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-25478">详情</a></td>
</tr>
<tr>
<td>ed17a9db34d1170619efab96d0fc3085</td>
<td>CVE-2025-25476</td>
<td>2025-02-28 23:15:11</td>
<td>A stored cross-site scripting (XSS) vulnerability in SysPass 3.2.x allows a malicious user with elevated privileges to execute arbitrary Javascript code by specifying a malicious XSS payload as a notification type or notification component.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-25476">详情</a></td>
</tr>
<tr>
<td>f98299168b1fa42cf3bd25406a82a286</td>
<td>CVE-2025-25379</td>
<td>2025-02-28 23:15:10</td>
<td>Cross Site Request Forgery vulnerability in 07FLYCMS v.1.3.9 allows a remote attacker to execute arbitrary code via the id parameter of the del.html component.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-25379">详情</a></td>
</tr>
<tr>
<td>0290cefba100ac572d9362252f723532</td>
<td>CVE-2025-26466</td>
<td>2025-02-28 22:15:40</td>
<td>A flaw was found in the OpenSSH package. For each ping packet the SSH server receives, a pong packet is allocated in a memory buffer and stored in a queue of packages. It is only freed when the server/client key exchange has finished. A malicious client may keep sending such packages, leading to an uncontrolled increase in memory consumption on the server side. Consequently, the server may become unavailable, resulting in a denial of service attack.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-26466">详情</a></td>
</tr>
<tr>
<td>83a36f8d0b67ae178a294f81fe5e9153</td>
<td>CVE-2024-1509</td>
<td>2025-02-28 22:15:38</td>
<td>Brocade ASCG before 3.2.0 Web Interface is not enforcing HSTS, as defined by RFC 6797. HSTS is an optional response header that can be configured on the server to instruct the browser to only communicate via HTTPS. The lack of HSTS allows downgrade attacks, SSL-stripping man-in-the-middle attacks, and weakens cookie-hijacking protections.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2024-1509">详情</a></td>
</tr>
<tr>
<td>a029b814d5c52b661c7f55cf6653bf2f</td>
<td>CVE-2025-27414</td>
<td>2025-02-28 21:15:27</td>
<td>MinIO is a high performance object storage. Starting in RELEASE.2024-06-06T09-36-42Z and prior to RELEASE.2025-02-28T09-55-16Z, a bug in evaluating the trust of the SSH key used in an SFTP connection to MinIO allows authentication bypass and unauthorized data access. On a MinIO server with SFTP access configured and using LDAP as an external identity provider, MinIO supports SSH key based authentication for SFTP connections when the user has the `sshPublicKey` attribute set in their LDAP server. The server trusts the client's key only when the public key is the same as the `sshPublicKey` attribute. Due to the bug, when the user has no `sshPublicKey` property in LDAP, the server ends up trusting the key allowing the client to perform any FTP operations allowed by the MinIO access policies associated with the LDAP user (or any of their groups). Three requirements must be met in order to exploit the vulnerability. First, the MinIO server must be configured to allow SFTP access and use LDAP as an external identity provider. Second, the attacker must have knowledge of an LDAP username that does not have the `sshPublicKey` property set. Third, such an LDAP username or one of their groups must also have some MinIO access policy configured. When this bug is successfully exploited, the attacker can perform any FTP operations (i.e. reading, writing, deleting and listing objects) allowed by the access policy associated with the LDAP user account (and their groups). Version 1.2.0 fixes the issue.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-27414">详情</a></td>
</tr>
<tr>
<td>02ce7fc98fdb0cc85ca49fa5c9e39684</td>
<td>CVE-2025-27413</td>
<td>2025-02-28 21:15:27</td>
<td>PwnDoc is a penetration test reporting application. Prior to version 1.2.0, the backup restore functionality allows an administrator to import raw data into the database, including Path Traversal (`../`) sequences. This is problematic for the template update functionality as it uses the path from the database to write arbitrary content to, potentially overwriting source code to achieve Remote Code Execution. Any user with the `backups:create`, `backups:update` and `templates:update` permissions (only administrators by default) can write arbitrary content to anywhere on the filesystem. By overwriting source code, it is possible to achieve Remote Code Execution. Version 1.2.0 fixes the issue.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2025-27413">详情</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:44:50</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:44:48</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:47:06</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:46:04</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:46:02</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:46:01</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:45:58</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:45:56</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:45:54</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:44:53</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:49:01</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:59</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:57</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:47:55</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:47:53</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:51</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:45:49</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:47</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:44:45</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:44:43</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:49:58</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:48:56</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:48:54</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:48:52</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:47:49</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>