forked from EXP-Tools/threat-broadcast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2499 lines (2186 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 : 2023-07-24 01:45:07 -->
<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>94765bc3e9d185457ae053686f3afa52</td>
<td>CVE-2023-38408</td>
<td>2023-07-21 08:19:40</td>
<td>CVE-2023-38408:OpenSSH ssh-agent 远程代码执行漏洞通告</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=64ba3eb141dbcfd3932b47ab">详情</a></td>
</tr>
<tr>
<td>140b3f275cc9bedcc60c01a135f359a5</td>
<td>CVE-2023-3519</td>
<td>2023-07-19 07:59:22</td>
<td>CVE-2023-3519:Citrix ADC/Gateway 远程代码执行漏洞通告</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=64b792c841dbcfd3932b478d">详情</a></td>
</tr>
<tr>
<td>0b67f13b9db74dfddbe7afa167388280</td>
<td>CVE-2023-31248</td>
<td>2023-07-18 09:47:28</td>
<td>CVE-2023-31248:Linux Kernel 本地权限提升漏洞通告</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=64b65f6041dbcfd3932b477e">详情</a></td>
</tr>
<tr>
<td>9d17c81907549684e71f5c8b80de3202</td>
<td>CVE-2023-37582</td>
<td>2023-07-18 08:56:24</td>
<td>CVE-2023-37582:Apache RocketMQ 远程代码执行漏洞通告</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=64b653b841dbcfd3932b4778">详情</a></td>
</tr>
<tr>
<td>de81200cf6bb59604da0b1817b29cd54</td>
<td></td>
<td>2023-07-17 08:26:35</td>
<td>安全事件周报 2023-07-10 第28周</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=64b4f65041dbcfd3932b4769">详情</a></td>
</tr>
<tr>
<td>fb6140d679aeaf4cc7a9c0db715568a5</td>
<td></td>
<td>2023-07-12 09:12:13</td>
<td>2023-07 补丁日: 微软多个漏洞安全更新通告</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=64ae6e6dd5b5ed368982cf8c">详情</a></td>
</tr>
<tr>
<td>4835542a408a1bf2d21120a9d53dde91</td>
<td></td>
<td>2023-07-11 09:46:46</td>
<td>泛微E-Cology SQL注入漏洞安全通告</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=64ad2506d5b5ed368982cf75">详情</a></td>
</tr>
<tr>
<td>2a43b1c37d1c08dccfb3e41f91c73d22</td>
<td></td>
<td>2023-07-10 09:46:02</td>
<td>安全事件周报 2023-07-03 第27周</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=64abd35ad5b5ed368982cf60">详情</a></td>
</tr>
<tr>
<td>3411013fd367ea6471b09d5e354b35ca</td>
<td></td>
<td>2023-07-04 08:09:52</td>
<td>Smartbi 多个高危漏洞通告</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=64a3d168d5b5ed368982cf2e">详情</a></td>
</tr>
<tr>
<td>02e37cb7c16d12e7403df28ba2b3fa6d</td>
<td></td>
<td>2023-07-03 06:32:56</td>
<td>安全事件周报 2023-06-26 第26周</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=64a26b98d5b5ed368982cf19">详情</a></td>
</tr>
<tr>
<td>d92e31b54922d78f0bae865e5ab36d61</td>
<td></td>
<td>2023-06-26 09:06:19</td>
<td>安全事件周报 2023-06-19 第25周</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=6499550bd5b5ed368982cec8">详情</a></td>
</tr>
<tr>
<td>4f157cb7f00767cb18c727e2be417981</td>
<td>CVE-2023-3128</td>
<td>2023-06-26 08:31:02</td>
<td>CVE-2023-3128:Grafana 身份认证绕过漏洞通告</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=64994cc6d5b5ed368982cec3">详情</a></td>
</tr>
<tr>
<td>7542a798bef560092a46b9257931245b</td>
<td>CVE-2023-33299</td>
<td>2023-06-26 08:18:02</td>
<td>CVE-2023-33299:FortiNAC 反序列化漏洞通告</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=649949bad5b5ed368982cebe">详情</a></td>
</tr>
<tr>
<td>af0acfc7292ff6c219c437915d0e394b</td>
<td>CVE-2023-1829</td>
<td>2023-06-21 08:47:08</td>
<td>CVE-2023-1829:Linux Kernel 权限提升漏洞通告</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=6492b90cd5b5ed368982ce9d">详情</a></td>
</tr>
<tr>
<td>be9890aef0df3efe1f70af2051219da0</td>
<td></td>
<td>2023-06-19 07:13:37</td>
<td>安全事件周报 2023-06-12 第24周</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=64900021d5b5ed368982ce7a">详情</a></td>
</tr>
<tr>
<td>f3edaf059c6d995891c6600eba69a66b</td>
<td></td>
<td>2023-06-14 08:40:09</td>
<td>2023-06 补丁日: 微软多个漏洞安全更新通告</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=64897b72d5b5ed368982ce48">详情</a></td>
</tr>
<tr>
<td>0f20504a41f3b11e52379d4009a57d44</td>
<td>CVE-2023-27997</td>
<td>2023-06-12 08:49:44</td>
<td>CVE-2023-27997:Fortinet FortiOS SSL-VPN 远程代码执行漏洞通告</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=6486dc28d5b5ed368982ce20">详情</a></td>
</tr>
<tr>
<td>7916c575c9d4f0e063a84a8d0e15446e</td>
<td></td>
<td>2023-06-12 08:37:02</td>
<td>安全事件周报 2023-06-05 第23周</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=6486d92ed5b5ed368982ce1b">详情</a></td>
</tr>
<tr>
<td>b41b352152aab7c6ef57a7aadc61da50</td>
<td>CVE-2023-20887</td>
<td>2023-06-08 07:46:46</td>
<td>CVE-2023-20887:VMware Aria Operations for Networks命令注入漏洞通告</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=64818739d5b5ed368982cde3">详情</a></td>
</tr>
<tr>
<td>41b51bc94ff0953f4b36a03ee8725b4b</td>
<td></td>
<td>2023-06-07 08:09:03</td>
<td>Nacos 反序列化漏洞通告</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=648037e9d5b5ed368982cdc7">详情</a></td>
</tr>
<tr>
<td>bb1461870abbec4870cb53fd7ca9001b</td>
<td>CVE-2023-3079</td>
<td>2023-06-06 07:24:31</td>
<td>CVE-2023-3079:Google V8类型混淆漏洞通告</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=647edf2dd5b5ed368982cdae">详情</a></td>
</tr>
<tr>
<td>2228b404ccd3d527ee5bced401fa3f96</td>
<td></td>
<td>2023-06-05 06:50:09</td>
<td>安全事件周报 2023-05-29 第22周</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=647d85a1d5b5ed368982cd95">详情</a></td>
</tr>
<tr>
<td>8673ad2a7712694529bdcc80a9b9c795</td>
<td>CVE-2023-33246</td>
<td>2023-06-01 07:55:56</td>
<td>CVE-2023-33246:Apache RocketMQ 远程代码执行漏洞通告</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=64784de801dc7167b394d4dd">详情</a></td>
</tr>
<tr>
<td>76940954759f4d1122fd6cf1ba59354e</td>
<td></td>
<td>2023-05-29 07:13:01</td>
<td>安全事件周报 2023-05-22 第21周</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=6474507d01dc7167b394d498">详情</a></td>
</tr>
<tr>
<td>ad4254fec631c297a09f71812f05a763</td>
<td>CVE-2023-2825</td>
<td>2023-05-24 07:34:45</td>
<td>CVE-2023-2825:GitLab 目录遍历漏洞通告</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=646dbe1501dc7167b394d452">详情</a></td>
</tr>
<tr>
<td>c22654761dfc4bd86106c5b7f1f5ab1c</td>
<td></td>
<td>2023-05-22 08:52:33</td>
<td>安全事件周报 2023-05-15 第20周</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=646b2d5101dc7167b394d422">详情</a></td>
</tr>
<tr>
<td>b13f7a6b041480cf34bb8732805b6230</td>
<td></td>
<td>2023-05-19 10:09:41</td>
<td>Apple WebKit 多个漏洞通告</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=64674ae501dc7167b394d401">详情</a></td>
</tr>
<tr>
<td>db011599bbee4c7eaf7f5de90aace14f</td>
<td></td>
<td>2023-05-17 08:59:38</td>
<td>泛微多个漏洞通告</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=6464961301dc7167b394d3c2">详情</a></td>
</tr>
<tr>
<td>ff7b2a220ee1ae11386b5fede1c2884b</td>
<td>CVE-2023-32233</td>
<td>2023-05-17 08:58:18</td>
<td>CVE-2023-32233:Linux Kernel 权限提升漏洞通告</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=6464926d01dc7167b394d3bc">详情</a></td>
</tr>
<tr>
<td>46c67d8b625a3844f6de918103d0f1be</td>
<td></td>
<td>2023-05-15 06:57:11</td>
<td>安全事件周报 2023-05-08 第19周</td>
<td><a target="_blank" href="https://cert.360.cn/warning/detail?id=6461d7c701dc7167b394d37c">详情</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>b1a65b16bbf698af6efa91bf80b0ca40</td>
<td>CVE-2023-3854</td>
<td>2023-07-23 23:15:00 <img src="imgs/new.gif" /></td>
<td>A vulnerability classified as critical has been found in phpscriptpoint BloodBank 1.1. Affected is an unknown function of the file /search of the component POST Parameter Handler. The manipulation of the argument country/city/blood_group_id leads to sql injection. It is possible to launch the attack remotely. VDB-235206 is the identifier assigned to this vulnerability. NOTE: 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-2023-3854">详情</a></td>
</tr>
<tr>
<td>6cb2e465e4ab58748108fb9dd955ab36</td>
<td>CVE-2023-3853</td>
<td>2023-07-23 23:15:00 <img src="imgs/new.gif" /></td>
<td>A vulnerability was found in phpscriptpoint BloodBank 1.1. It has been rated as problematic. This issue affects some unknown processing of the file page.php. The manipulation leads to cross site scripting. The attack may be initiated remotely. The identifier VDB-235205 was assigned to this vulnerability. NOTE: 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-2023-3853">详情</a></td>
</tr>
<tr>
<td>3cd610e729762e521fbc35c06e2f3713</td>
<td>CVE-2023-3852</td>
<td>2023-07-23 22:15:00 <img src="imgs/new.gif" /></td>
<td>A vulnerability was found in OpenRapid RapidCMS up to 1.3.1. It has been declared as critical. This vulnerability affects unknown code of the file /admin/upload.php. 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. The name of the patch is 4dff387283060961c362d50105ff8da8ea40bcbe. It is recommended to apply a patch to fix this issue. The identifier of this vulnerability is VDB-235204.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2023-3852">详情</a></td>
</tr>
<tr>
<td>280408e45f89c9452dc1cb2afc4806a4</td>
<td>CVE-2023-3850</td>
<td>2023-07-23 10:15:00 <img src="imgs/new.gif" /></td>
<td>A vulnerability has been found in SourceCodester Lost and Found Information System 1.0 and classified as critical. Affected by this vulnerability is an unknown functionality of the file /classes/Master.php?f=delete_category of the component HTTP POST Request Handler. The manipulation of the argument id leads to sql injection. The attack can be launched remotely. The identifier VDB-235201 was assigned to this vulnerability.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2023-3850">详情</a></td>
</tr>
<tr>
<td>b451c00bab415b0b7c9cf8ec80b7a3d3</td>
<td>CVE-2023-28133</td>
<td>2023-07-23 10:15:00 <img src="imgs/new.gif" /></td>
<td>Local privilege escalation in Checkpoint Endpoint Security (version E87.30) via crafted OpenSSL configuration file</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2023-28133">详情</a></td>
</tr>
<tr>
<td>c7a74b5bf68449af8cef86cbdf0ef1b2</td>
<td>CVE-2023-28133</td>
<td>2023-07-23 10:15:00 <img src="imgs/new.gif" /></td>
<td>Local privilege escalation in Check Point Endpoint Security Client (version E87.30) via crafted OpenSSL configuration file</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2023-28133">详情</a></td>
</tr>
<tr>
<td>1257d2e611a868796506f6a96d9e4052</td>
<td>CVE-2023-3849</td>
<td>2023-07-23 09:15:00 <img src="imgs/new.gif" /></td>
<td>A vulnerability, which was classified as problematic, was found in mooSocial mooDating 1.2. Affected is an unknown function of the file /find-a-match of the component URL Handler. The manipulation leads to cross site scripting. It is possible to launch the attack remotely. The identifier of this vulnerability is VDB-235200. NOTE: We tried to contact the vendor early about the disclosure but the official mail address was not working properly.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2023-3849">详情</a></td>
</tr>
<tr>
<td>b36d9acaa0bfdc263d1f332c7325ad51</td>
<td>CVE-2023-3848</td>
<td>2023-07-23 08:15:00 <img src="imgs/new.gif" /></td>
<td>A vulnerability, which was classified as problematic, has been found in mooSocial mooDating 1.2. This issue affects some unknown processing of the file /users/view of the component URL Handler. The manipulation leads to cross site scripting. The attack may be initiated remotely. The associated identifier of this vulnerability is VDB-235199. NOTE: We tried to contact the vendor early about the disclosure but the official mail address was not working properly.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2023-3848">详情</a></td>
</tr>
<tr>
<td>cfa9ad1d555264311a96307876a2cfb9</td>
<td>CVE-2023-3847</td>
<td>2023-07-23 08:15:00 <img src="imgs/new.gif" /></td>
<td>A vulnerability classified as problematic was found in mooSocial mooDating 1.2. This vulnerability affects unknown code of the file /users of the component URL Handler. The manipulation leads to cross site scripting. The attack can be initiated remotely. VDB-235198 is the identifier assigned to this vulnerability. NOTE: We tried to contact the vendor early about the disclosure but the official mail address was not working properly.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2023-3847">详情</a></td>
</tr>
<tr>
<td>ceae6bf592bf4bb0d469100b933cf36e</td>
<td>CVE-2023-3846</td>
<td>2023-07-23 07:15:00 <img src="imgs/new.gif" /></td>
<td>A vulnerability classified as problematic has been found in mooSocial mooDating 1.2. This affects an unknown part of the file /pages of the component URL Handler. The manipulation leads to cross site scripting. It is possible to initiate the attack remotely. The identifier VDB-235197 was assigned to this vulnerability. NOTE: We tried to contact the vendor early about the disclosure but the official mail address was not working properly.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2023-3846">详情</a></td>
</tr>
<tr>
<td>27dee435d0b768aea2ce8c968239480e</td>
<td>CVE-2023-3845</td>
<td>2023-07-23 06:15:00 <img src="imgs/new.gif" /></td>
<td>A vulnerability was found in mooSocial mooDating 1.2. It has been rated as problematic. Affected by this issue is some unknown functionality of the file /friends/ajax_invite of the component URL Handler. The manipulation leads to cross site scripting. The attack may be launched remotely. The identifier of this vulnerability is VDB-235196. NOTE: We tried to contact the vendor early about the disclosure but the official mail address was not working properly.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2023-3845">详情</a></td>
</tr>
<tr>
<td>b1cc7722b57d8e8cf1e70d0236ce9367</td>
<td>CVE-2023-3844</td>
<td>2023-07-23 06:15:00 <img src="imgs/new.gif" /></td>
<td>A vulnerability was found in mooSocial mooDating 1.2. It has been declared as problematic. Affected by this vulnerability is an unknown functionality of the file /friends of the component URL Handler. The manipulation leads to cross site scripting. The attack can be launched remotely. The associated identifier of this vulnerability is VDB-235195. NOTE: We tried to contact the vendor early about the disclosure but the official mail address was not working properly.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2023-3844">详情</a></td>
</tr>
<tr>
<td>51ac0a9c4fa15490fc3d08ebdf3d4548</td>
<td>CVE-2023-3843</td>
<td>2023-07-23 05:15:00 <img src="imgs/new.gif" /></td>
<td>A vulnerability was found in mooSocial mooDating 1.2. It has been classified as problematic. Affected is an unknown function of the file /matchmakings/question of the component URL Handler. The manipulation leads to cross site scripting. It is possible to launch the attack remotely. VDB-235194 is the identifier assigned to this vulnerability. NOTE: We tried to contact the vendor early about the disclosure but the official mail address was not working properly.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2023-3843">详情</a></td>
</tr>
<tr>
<td>830a8017656240ecb6a8f6ccd1ded38d</td>
<td>CVE-2023-3842</td>
<td>2023-07-23 04:15:00 <img src="imgs/new.gif" /></td>
<td>A vulnerability was found in Pointware EasyInventory 1.0.12.0 and classified as critical. This issue affects some unknown processing of the file C:\Program Files (x86)\EasyInventory\Easy2W.exe. The manipulation leads to unquoted search path. Attacking locally is a requirement. The identifier VDB-235193 was assigned to this vulnerability. NOTE: 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-2023-3842">详情</a></td>
</tr>
<tr>
<td>1b237151f04764658226f6e6fead505c</td>
<td>CVE-2023-3841</td>
<td>2023-07-23 03:15:00 <img src="imgs/new.gif" /></td>
<td>A vulnerability has been found in NxFilter 4.3.2.5 and classified as problematic. This vulnerability affects unknown code of the file user.jsp. The manipulation leads to cross-site request forgery. The attack can be initiated remotely. The identifier of this vulnerability is VDB-235192. NOTE: 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-2023-3841">详情</a></td>
</tr>
<tr>
<td>bcc24d29e6a1de6c23755f02dac0a0d6</td>
<td>CVE-2023-3840</td>
<td>2023-07-23 03:15:00 <img src="imgs/new.gif" /></td>
<td>A vulnerability, which was classified as problematic, was found in NxFilter 4.3.2.5. This affects an unknown part of the file /report,daily.jsp?stime=2023%2F07%2F12&timeOption=yesterday&. The manipulation of the argument user leads to cross site scripting. It is possible to initiate the attack remotely. The associated identifier of this vulnerability is VDB-235191. NOTE: 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-2023-3840">详情</a></td>
</tr>
<tr>
<td>3741831b06abdb103c06ef72232e7cc3</td>
<td>CVE-2023-3839</td>
<td>2023-07-23 02:15:00 <img src="imgs/new.gif" /></td>
<td>A vulnerability, which was classified as problematic, has been found in DedeBIZ 6.2.10. Affected by this issue is some unknown functionality of the file /admin/sys_sql_query.php. The manipulation of the argument sqlquery leads to sql injection. 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. VDB-235190 is the identifier assigned to this vulnerability. NOTE: 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-2023-3839">详情</a></td>
</tr>
<tr>
<td>ee73f40993c1b10484244a33da98f000</td>
<td>CVE-2023-3838</td>
<td>2023-07-23 02:15:00 <img src="imgs/new.gif" /></td>
<td>A vulnerability classified as problematic was found in DedeBIZ 6.2.10. Affected by this vulnerability is an unknown functionality of the file /admin/vote_edit.php. The manipulation leads to cross site scripting. The attack can be launched remotely. The exploit has been disclosed to the public and may be used. The identifier VDB-235189 was assigned to this vulnerability. NOTE: 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-2023-3838">详情</a></td>
</tr>
<tr>
<td>01dfe4630871784dd2d8ea5efa1c9e8a</td>
<td>CVE-2023-2430</td>
<td>2023-07-23 02:15:00 <img src="imgs/new.gif" /></td>
<td>A vulnerability was found due to missing lock for IOPOLL flaw in io_cqring_event_overflow() in io_uring.c in Linux Kernel. This flaw allows a local attacker with user privilege to trigger a Denial of Service threat.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2023-2430">详情</a></td>
</tr>
<tr>
<td>96c118a0e4b729e4880763e088f8255b</td>
<td>CVE-2023-3837</td>
<td>2023-07-22 21:15:00</td>
<td>A vulnerability classified as problematic has been found in DedeBIZ 6.2.10. Affected is an unknown function of the file /admin/sys_sql_query.php. The manipulation leads to cross site scripting. It is possible to launch the attack remotely. The exploit has been disclosed to the public and may be used. The identifier of this vulnerability is VDB-235188. NOTE: 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-2023-3837">详情</a></td>
</tr>
<tr>
<td>60b9e745dc16120a0f5cb7f8882ac7bb</td>
<td>CVE-2023-3836</td>
<td>2023-07-22 18:15:00</td>
<td>A vulnerability classified as critical was found in Dahua Smart Park Management up to 20230713. This vulnerability affects unknown code of the file /emap/devicePoint_addImgIco?hasSubsystem=true. The manipulation of the argument upload leads to unrestricted upload. The attack can be initiated remotely. The exploit has been disclosed to the public and may be used. VDB-235162 is the identifier assigned to this vulnerability. NOTE: 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-2023-3836">详情</a></td>
</tr>
<tr>
<td>7ddc9bd553d3deb14fa2b2179bbb4c39</td>
<td>CVE-2023-3835</td>
<td>2023-07-22 18:15:00</td>
<td>A vulnerability classified as problematic has been found in Bug Finder MineStack 1.0. This affects an unknown part of the file /user/ticket/create of the component Ticket Handler. The manipulation of the argument message leads to cross site scripting. It is possible to initiate the attack remotely. The identifier VDB-235161 was assigned to this vulnerability. NOTE: 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-2023-3835">详情</a></td>
</tr>
<tr>
<td>8f97fbf9ad17910bc9ff9bb6890b4a33</td>
<td>CVE-2023-38633</td>
<td>2023-07-22 17:15:00</td>
<td>A directory traversal problem in the URL decoder of librsvg before 2.56.3 could be used by local or remote attackers to disclose files (on the local filesystem outside of the expected area), as demonstrated by href=".?../../../../../../../../../../etc/passwd" in an xi:include element.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2023-38633">详情</a></td>
</tr>
<tr>
<td>4a4fe5986faac5694269ca157ec20ac1</td>
<td>CVE-2023-3834</td>
<td>2023-07-22 17:15:00</td>
<td>A vulnerability was found in Bug Finder EX-RATE 1.0. It has been rated as problematic. Affected by this issue is some unknown functionality of the file /user/ticket/create of the component Ticket Handler. The manipulation of the argument message leads to cross site scripting. The attack may be launched remotely. The identifier of this vulnerability is VDB-235160. NOTE: 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-2023-3834">详情</a></td>
</tr>
<tr>
<td>11a08cb09ff955d32e9bd13b945ae91d</td>
<td>CVE-2023-38195</td>
<td>2023-07-22 17:15:00</td>
<td>Datalust Seq before 2023.2.9489 allows insertion of sensitive information into an externally accessible file or directory. This is exploitable only when external (SQL Server or PostgreSQL) metadata storage is used. Exploitation can only occur from a high-privileged user account.</td>
<td><a target="_blank" href="https://www.tenable.com/cve/CVE-2023-38195">详情</a></td>
</tr>
<tr>
<td>a7dd193d1fe2973594500e4d46e1bae7</td>
<td>CVE-2023-3833</td>
<td>2023-07-22 16:15:00</td>
<td>A vulnerability was found in Bug Finder Montage 1.0. It has been declared as problematic. Affected by this vulnerability is an unknown functionality of the file /user/ticket/create of the component Ticket Handler. The manipulation of the argument message leads to cross site scripting. The attack can be launched remotely. The associated identifier of this vulnerability is VDB-235159. NOTE: 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-2023-3833">详情</a></td>
</tr>
<tr>
<td>a7914e18ef33669f32e427f68cebc99a</td>
<td>CVE-2023-3832</td>
<td>2023-07-22 16:15:00</td>
<td>A vulnerability was found in Bug Finder Wedding Wonders 1.0. It has been classified as problematic. Affected is an unknown function of the file /user/ticket/create of the component Ticket Handler. The manipulation of the argument message leads to cross site scripting. It is possible to launch the attack remotely. VDB-235158 is the identifier assigned to this vulnerability. NOTE: 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-2023-3832">详情</a></td>
</tr>
<tr>
<td>f1147e472e3963eb5bc38aee34f9bb7d</td>
<td>CVE-2023-3831</td>
<td>2023-07-22 15:15:00</td>
<td>A vulnerability was found in Bug Finder Finounce 1.0 and classified as problematic. This issue affects some unknown processing of the file /user/ticket/create of the component Ticket Handler. The manipulation of the argument message leads to cross site scripting. The attack may be initiated remotely. The identifier VDB-235157 was assigned to this vulnerability. NOTE: 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-2023-3831">详情</a></td>
</tr>
<tr>
<td>9686c9bcd12c0eb42507e3224d59c2cd</td>
<td>CVE-2023-3830</td>
<td>2023-07-22 15:15:00</td>
<td>A vulnerability was found in Bug Finder SASS BILLER 1.0. It has been rated as problematic. This issue affects some unknown processing of the file /company/store. The manipulation of the argument name leads to cross site scripting. The attack may be initiated remotely. The associated identifier of this vulnerability is VDB-235151. NOTE: 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-2023-3830">详情</a></td>
</tr>
<tr>
<td>ebaa0ff597965d74db60736afef2361f</td>
<td>CVE-2023-3829</td>
<td>2023-07-22 12:15:00</td>
<td>A vulnerability was found in Bug Finder ICOGenie 1.0. It has been declared as problematic. This vulnerability affects unknown code of the file /user/ticket/create of the component Support Ticket Handler. The manipulation of the argument message leads to cross site scripting. The attack can be initiated remotely. VDB-235150 is the identifier assigned to this vulnerability. NOTE: 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-2023-3829">详情</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>ed6a22a2cfcc7c1bc3e72e792c280f71</td>
<td>CNNVD-202307-1778 (CVE-2023-3800)</td>
<td>2023-07-20 23:21:11</td>
<td>EasyAdmin8 代码问题漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202307-1778">详情</a></td>
</tr>
<tr>
<td>983048af921872ef898791c9973f1716</td>
<td>CNNVD-202307-1712 (CVE-2023-3347)</td>
<td>2023-07-20 21:19:05</td>
<td>Samba 安全漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202307-1712">详情</a></td>
</tr>
<tr>
<td>fc74d32b41845978b2cbb2f5ba885529</td>
<td>CNNVD-202307-1773 (CVE-2023-37645)</td>
<td>2023-07-20 19:19:18</td>
<td>EyouCms 安全漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202307-1773">详情</a></td>
</tr>
<tr>
<td>08a190aacc3774bc8ebfd8661c478535</td>
<td>CNNVD-202307-1776 (CVE-2023-3798)</td>
<td>2023-07-20 19:18:09</td>
<td>Chengdu Flash Flood Disaster Monitoring and Warning System 代码问题漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202307-1776">详情</a></td>
</tr>
<tr>
<td>58b22d27daf1b10691d151f559f7a680</td>
<td>CNNVD-202307-1771 (CVE-2023-32624)</td>
<td>2023-07-20 18:31:02</td>
<td>WordPress Plugin TS Webfonts for SAKURA 安全漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202307-1771">详情</a></td>
</tr>
<tr>
<td>90622944429a9aa142cb99d59a3da226</td>
<td>CNNVD-202307-1775 (CVE-2023-3797)</td>
<td>2023-07-20 18:29:52</td>
<td>Mountain Torrent Disaster Prevention and Control of Monitoring and Early Warning System 代码问题漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202307-1775">详情</a></td>
</tr>
<tr>
<td>df963de91baad7b629483d3767d5f9a4</td>
<td>CNNVD-202307-1779 (CVE-2023-3787)</td>
<td>2023-07-20 18:27:41</td>
<td>Tiva Events Calender 跨站脚本漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202307-1779">详情</a></td>
</tr>
<tr>
<td>5f181acb22bf425e9b5a2a24f657b3b5</td>
<td>CNNVD-202307-1714 (CVE-2023-34967)</td>
<td>2023-07-20 17:23:09</td>
<td>Samba 安全漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202307-1714">详情</a></td>
</tr>
<tr>
<td>c3b4149d7b1055bc99fbf3a3ef915726</td>
<td>CNNVD-202307-1713 (CVE-2023-34966)</td>
<td>2023-07-20 16:30:03</td>
<td>Samba 安全漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202307-1713">详情</a></td>
</tr>
<tr>
<td>58d330c57ae47541651384c510ca9c09</td>
<td>CNNVD-202307-1772 (CVE-2023-38357)</td>
<td>2023-07-20 15:24:39</td>
<td>RWS WorldServer 安全漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202307-1772">详情</a></td>
</tr>
<tr>
<td>a751b528645a191f681d57a2ba00f37c</td>
<td>CNNVD-202307-1777 (CVE-2023-3802)</td>
<td>2023-07-20 15:22:26</td>
<td>Chengdu Flash Flood Disaster Monitoring and Warning System 代码问题漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202307-1777">详情</a></td>
</tr>
<tr>
<td>b064cdba1c5a03cce86142b0e527ef8d</td>
<td>CNNVD-202307-1780 (CVE-2023-32481)</td>
<td>2023-07-20 15:22:18</td>
<td>Dell Wyse Management Suite 安全漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202307-1780">详情</a></td>
</tr>
<tr>
<td>9e773bcc573e42dad8b9976c4a90b389</td>
<td>CNNVD-202307-1709 (CVE-2023-33951)</td>
<td>2023-07-20 14:26:51</td>
<td>Linux kernel 安全漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202307-1709">详情</a></td>
</tr>
<tr>
<td>992b932aa52280f05fec299df439d4d1</td>
<td>CNNVD-202307-1710 (CVE-2023-33952)</td>
<td>2023-07-20 14:26:49</td>
<td>Linux kernel 安全漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202307-1710">详情</a></td>
</tr>
<tr>
<td>3406a679cbb284ed607e13b94c19bfea</td>
<td>CNNVD-202307-1711 (CVE-2022-2127)</td>
<td>2023-07-20 14:26:46</td>
<td>Samba 安全漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202307-1711">详情</a></td>
</tr>
<tr>
<td>5674f66140383b3e50b5b2db4d77e6d4</td>
<td>CNNVD-202307-1774 (CVE-2023-3799)</td>
<td>2023-07-20 10:26:22</td>
<td>IBOS SQL注入漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202307-1774">详情</a></td>
</tr>
<tr>
<td>cc7b79649d8da93450bb6fdcb624783b</td>
<td>CNNVD-202307-1706 (CVE-2023-34394)</td>
<td>2023-07-19 14:26:58</td>
<td>Keysight Technologies N6854A Geolocation server 安全漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202307-1706">详情</a></td>
</tr>
<tr>
<td>46b15565a524762530d721d8903ec72f</td>
<td>CNNVD-202307-1707 (CVE-2023-36853)</td>
<td>2023-07-19 14:26:56</td>
<td>Keysight Technologies N6854A Geolocation server 安全漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202307-1707">详情</a></td>
</tr>
<tr>
<td>d4905ca53b656c7443fd3edb8475250a</td>
<td>CNNVD-202307-1708 (CVE-2023-3300)</td>
<td>2023-07-19 14:26:54</td>
<td>HashiCorp Nomad 安全漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202307-1708">详情</a></td>
</tr>
<tr>
<td>4ed65bdfc42934100f13fd73e7cbd1be</td>
<td>CNNVD-202307-1705 (CVE-2023-3722)</td>
<td>2023-07-19 07:22:58</td>
<td>Avaya Aura Device Services 安全漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202307-1705">详情</a></td>
</tr>
<tr>
<td>a94bcecefa4bcbdc38f731a866ac0c7c</td>
<td>CNNVD-202307-1638 (CVE-2023-3730)</td>
<td>2023-07-18 15:24:13</td>
<td>Google Chrome 安全漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202307-1638">详情</a></td>
</tr>
<tr>
<td>6f7fe410d3aa6a4948ed41eb8f5d71f4</td>
<td>CNNVD-202307-1639 (CVE-2023-3527)</td>
<td>2023-07-18 14:24:36</td>
<td>Avaya Call Management System 安全漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202307-1639">详情</a></td>
</tr>
<tr>
<td>89fb72e3ed113c50adbba4766e643b69</td>
<td>CNNVD-202307-1640 (CVE-2023-22062)</td>
<td>2023-07-18 14:24:34</td>
<td>Oracle Hyperion 安全漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202307-1640">详情</a></td>
</tr>
<tr>
<td>585f9fa4cffae4bc1671552e0a837646</td>
<td>CNNVD-202307-1641 (CVE-2023-22505)</td>
<td>2023-07-18 14:24:32</td>
<td>Atlassian Confluence 安全漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202307-1641">详情</a></td>
</tr>
<tr>
<td>6e67804b7791823fad3cbaf7da54bec2</td>
<td>CNNVD-202307-1642 (CVE-2023-22508)</td>
<td>2023-07-18 14:24:30</td>
<td>Atlassian Jira 安全漏洞</td>
<td><a target="_blank" href="http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-202307-1642">详情</a></td>
</tr>
<tr>
<td>1f0c268655c2ada5b7512a280b0505a2</td>
<td>CNNVD-202307-1643 (CVE-2023-3751)</td>