-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnginx.xml
1029 lines (912 loc) · 70 KB
/
nginx.xml
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
<Vulns> <Vulnerability added="2014-01-27" gvid="ID100001" id="100001" modified="2015-01-30" published="2010-02-05" version="2.0">
<cvss>(AV:N/AC:L/Au:N/C:P/I:P/A:P)</cvss>
<Tags>
<tag>Nginx</tag>
</Tags>
<AlternateIds>
<id name="URL">http://www.coresecurity.com/content/filename-pseudonyms-vulnerabilities</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService type="HTTP|HTTPS">
<Product name="nginx" vendor="nginx">
<version>
<range>
<low>0.8</low>
<high inclusive="0">0.8.33</high>
</range>
<range>
<low>0.7.52</low>
<high inclusive="0">0.7.65</high>
</range>
</version>
</Product>
</NetworkService> </Check> <Solutions>目前厂商还没有提供此漏洞的相关补丁或者升级程序,建议使用此软件的用户随时关注厂商的主页以获取最新版本:
https://www.alice-dsl.de/</Solutions> <cnnvd></cnnvd> <cvsscode>7.5</cvsscode> <severity>Critical</severity> <Description>当在Windows系统上创建文件,一个DOS-compatible8.3短文件名(以下简称&#39;8.3 alias&#39;)为了以下兼容的原因而生成。这两个名字可以用来指代相同的文件。该应用程序允许用户在Windows系统上指定文件名,应该知道这些别名,并适当地处理它们。
通常情况下,使用8.3别名文件,可以绕过IDS/IPS的检测和躲避过滤器和文件限制。导致其结果为:只有长版本的文件和文件夹的名称将被限制,且别名将不匹配长文件名。
引用其8.3的别名甚至可以更改文件的处理,由于文件扩展名的情况下,该文件的扩展名是超过三个字符长的截短文件。此问题是由于像负载平衡和缓存中介系统不具有访问被访问的实际的文件系统,并且在比较用户数据前,需要有限制的转换任意文件名和路径名到8.3别名中,鉴于系统上其他文件或文件夹具有类似名称,可能无法进行。</Description> <name>Nginx: Windows 8.3文件名假名存在漏洞(CORE-2010-0121)</name> </Vulnerability> <Vulnerability added="2014-01-27" gvid="ID100002" id="100002" modified="2014-01-27" published="2009-09-15" version="2.0">
<cvss>(AV:N/AC:L/Au:N/C:P/I:P/A:P)</cvss>
<Tags>
<tag>Nginx</tag>
<tag>Remote Execution</tag>
<tag>Web</tag>
</Tags>
<AlternateIds>
<id name="CERT-VN">180065</id>
<id name="CVE">CVE-2009-2629</id>
<id name="DEBIAN">DSA-1884</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService type="HTTP|HTTPS">
<Product name="nginx" vendor="nginx">
<version>
<range>
<low>0.1.0</low>
<high inclusive="0">0.5.38</high>
</range>
<range>
<low>0.6</low>
<high inclusive="0">0.6.39</high>
</range>
<range>
<low>0.7</low>
<high inclusive="0">0.7.62</high>
</range>
<range>
<low>0.8</low>
<high inclusive="0">0.8.15</high>
</range>
</version>
</Product>
</NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复这个安全问题,补丁下载链接:
http://nginx.net/CHANGES</Solutions> <cnnvd>CNNVD-200909-302</cnnvd> <cvsscode>7.5</cvsscode> <severity>Critical</severity> <Description>在nginx0.1.0至0.5.37版本,0.6.x至0.6.39版本,0.7.x至0.7.62版本和0.8.x至0.8.15版本的src / HTTP/ ngx_http_parse.c存在缓冲区溢出漏洞允许远程攻击者通过特制的HTTP请求执行任意代码。</Description> <name>Nginx: 缓冲区下溢漏洞(CVE-2009-2629)</name> </Vulnerability> <Vulnerability added="2014-01-27" gvid="ID100003" id="100003" modified="2016-05-27" published="2009-11-09" version="2.0">
<cvss>(AV:N/AC:M/Au:N/C:N/I:P/A:P)</cvss>
<Tags>
<tag>Nginx</tag>
<tag>OpenSSL</tag>
<tag>Web</tag>
</Tags>
<AlternateIds>
<id name="APPLE">APPLE-SA-2010-01-19-1</id>
<id name="APPLE">APPLE-SA-2010-05-18-1</id>
<id name="APPLE">APPLE-SA-2010-05-18-2</id>
<id name="BID">36935</id>
<id name="CERT">TA10-222A</id>
<id name="CERT">TA10-287A</id>
<id name="CERT-VN">120541</id>
<id name="CVE">CVE-2009-3555</id>
<id name="DEBIAN">DSA-1934</id>
<id name="DEBIAN">DSA-2141</id>
<id name="DEBIAN">DSA-3253</id>
<id name="DISA_SEVERITY">Category I</id>
<id name="DISA_VMSKEY">V0027158</id>
<id name="IAVM">2011-A-0066</id>
<id name="MS">MS10-049</id>
<id name="OVAL">OVAL10088</id>
<id name="OVAL">OVAL11578</id>
<id name="OVAL">OVAL11617</id>
<id name="OVAL">OVAL7315</id>
<id name="OVAL">OVAL7478</id>
<id name="OVAL">OVAL7973</id>
<id name="OVAL">OVAL8366</id>
<id name="OVAL">OVAL8535</id>
<id name="REDHAT">RHSA-2010:0119</id>
<id name="REDHAT">RHSA-2010:0130</id>
<id name="REDHAT">RHSA-2010:0155</id>
<id name="REDHAT">RHSA-2010:0165</id>
<id name="REDHAT">RHSA-2010:0167</id>
<id name="REDHAT">RHSA-2010:0337</id>
<id name="REDHAT">RHSA-2010:0338</id>
<id name="REDHAT">RHSA-2010:0339</id>
<id name="REDHAT">RHSA-2010:0768</id>
<id name="REDHAT">RHSA-2010:0770</id>
<id name="REDHAT">RHSA-2010:0786</id>
<id name="REDHAT">RHSA-2010:0807</id>
<id name="REDHAT">RHSA-2010:0865</id>
<id name="REDHAT">RHSA-2010:0986</id>
<id name="REDHAT">RHSA-2010:0987</id>
<id name="REDHAT">RHSA-2011:0880</id>
<id name="SUSE">SUSE-SA:2009:057</id>
<id name="SUSE">SUSE-SA:2010:061</id>
<id name="XF">54158</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService type="HTTP|HTTPS">
<Product name="nginx" vendor="nginx">
<version>
<range>
<low>0.1.0</low>
<high inclusive="0">0.7.64</high>
</range>
<range>
<low>0.8</low>
<high inclusive="0">0.8.23</high>
</range>
</version>
</Product>
</NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复这个安全问题,补丁下载链接:
http://cvs.openssl.org/chngview?cn=18790
http://www.gnu.org/software/gnutls/download.html
http://httpd.apache.org/download.cgi
</Solutions> <cnnvd>CNNVD-200911-069</cnnvd> <cvsscode>5.8</cvsscode> <severity>Severe</severity> <Description>Microsoft Internet Information Services (IIS) 7.0,Apache HTTP Server 2.2.14之前版本的mod_ssl,OpenSSL 0.9.8l之前版本,GnuTLS 2.8.5之前版本,Mozilla Network Security Services (NSS) 3.12.4及之前版本,多个Cisco产品,以及其他产品里的TLS协议,和SSL协议3.0,不正确联接重协商握手和现有链接,者允许中间人攻击者插入数据到HTTPS会话中,也可能是其他被TLS或SSL保护的类型会话,发送未认证请求,其是通过后协商语境服务器处理的追溯,与&quot;plaintext injection&quot;攻击相关,又叫&quot;Project Mogul&quot; 问题。</Description> <name>Nginx: SSL协议存在重新谈判漏洞(CVE-2009-3555)</name> </Vulnerability> <Vulnerability added="2014-01-27" gvid="ID100004" id="100004" modified="2015-02-13" published="2009-11-24" version="2.0">
<cvss>(AV:N/AC:L/Au:N/C:N/I:N/A:P)</cvss>
<Tags>
<tag>Denial of Service</tag>
<tag>Nginx</tag>
<tag>Web</tag>
</Tags>
<AlternateIds>
<id name="BID">36839</id>
<id name="CVE">CVE-2009-3896</id>
<id name="DEBIAN">DSA-1920</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService type="HTTP|HTTPS">
<Product name="nginx" vendor="nginx">
<version>
<range>
<low>0.1.0</low>
<high inclusive="0">0.5.38</high>
</range>
<range>
<low>0.6</low>
<high inclusive="0">0.6.39</high>
</range>
<range>
<low>0.7</low>
<high inclusive="0">0.7.62</high>
</range>
<range>
<low>0.8</low>
<high inclusive="0">0.8.14</high>
</range>
</version>
</Product>
</NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复这个安全问题,补丁下载链接:
Debian Linux 4.0 arm
Debian nginx_0.4.13-2+etch3_arm.deb
http://security.debian.org/pool/updates/main/n/nginx/nginx_0.4.13-2+et ch3_arm.deb
Debian Linux 5.0 ia-64
Debian nginx_0.6.32-3+lenny3_ia64.deb
http://security.debian.org/pool/updates/main/n/nginx/nginx_0.6.32-3+le nny3_ia64.deb
Debian Linux 4.0 powerpc
Debian nginx_0.4.13-2+etch3_powerpc.deb
http://security.debian.org/pool/updates/main/n/nginx/nginx_0.4.13-2+et ch3_powerpc.deb
Debian Linux 5.0 alpha
Debian nginx_0.6.32-3+lenny3_alpha.deb
http://security.debian.org/pool/updates/main/n/nginx/nginx_0.6.32-3+le nny3_alpha.deb
Debian Linux 5.0 ia-32
Debian nginx_0.6.32-3+lenny3_i386.deb
http://security.debian.org/pool/updates/main/n/nginx/nginx_0.6.32-3+le nny3_i386.deb
Debian Linux 5.0 s/390
Debian nginx_0.6.32-3+lenny3_s390.deb
http://security.debian.org/pool/updates/main/n/nginx/nginx_0.6.32-3+le nny3_s390.deb
Debian Linux 5.0 mipsel
Debian nginx_0.6.32-3+lenny3_mipsel.deb
http://security.debian.org/pool/updates/main/n/nginx/nginx_0.6.32-3+le nny3_mipsel.deb
Debian Linux 4.0 amd64
Debian nginx_0.4.13-2+etch3_amd64.deb
http://security.debian.org/pool/updates/main/n/nginx/nginx_0.4.13-2+et ch3_amd64.deb
Debian Linux 4.0 ia-32
Debian nginx_0.4.13-2+etch3_i386.deb
http://security.debian.org/pool/updates/main/n/nginx/nginx_0.4.13-2+et ch3_i386.deb
Debian Linux 5.0 hppa
Debian nginx_0.6.32-3+lenny3_hppa.deb
http://security.debian.org/pool/updates/main/n/nginx/nginx_0.6.32-3+le nny3_hppa.deb
Debian Linux 4.0 hppa
Debian nginx_0.4.13-2+etch3_hppa.deb
http://security.debian.org/pool/updates/main/n/nginx/nginx_0.4.13-2+et ch3_hppa.deb
Debian Linux 4.0 sparc
Debian nginx_0.4.13-2+etch3_sparc.deb
http://security.debian.org/pool/updates/main/n/nginx/nginx_0.4.13-2+et ch3_sparc.deb
Debian Linux 4.0 s/390
Debian nginx_0.4.13-2+etch3_s390.deb
http://security.debian.org/pool/updates/main/n/nginx/nginx_0.4.13-2+et ch3_s390.deb
Debian Linux 5.0 arm
Debian nginx_0.6.32-3+lenny3_arm.deb
http://security.debian.org/pool/updates/main/n/nginx/nginx_0.6.32-3+le nny3_arm.deb
Debian Linux 4.0 alpha
Debian nginx_0.4.13-2+etch3_alpha.deb
http://security.debian.org/pool/updates/main/n/nginx/nginx_0.4.13-2+et ch3_alpha.deb
Debian Linux 5.0 armel
Debian nginx_0.6.32-3+lenny3_armel.deb
http://security.debian.org/pool/updates/main/n/nginx/nginx_0.6.32-3+le nny3_armel.deb
Debian Linux 5.0 amd64
Debian nginx_0.6.32-3+lenny3_amd64.deb
http://security.debian.org/pool/updates/main/n/nginx/nginx_0.6.32-3+le nny3_amd64.deb
Debian Linux 4.0 mipsel
Debian nginx_0.4.13-2+etch3_mipsel.deb
http://security.debian.org/pool/updates/main/n/nginx/nginx_0.4.13-2+et ch3_mipsel.deb
Debian Linux 5.0 mips
Debian nginx_0.6.32-3+lenny3_mips.deb
http://security.debian.org/pool/updates/main/n/nginx/nginx_0.6.32-3+le nny3_mips.deb
Debian Linux 5.0 powerpc
Debian nginx_0.6.32-3+lenny3_powerpc.deb
http://security.debian.org/pool/updates/main/n/nginx/nginx_0.6.32-3+le nny3_powerpc.deb
Debian Linux 4.0 ia-64
Debian nginx_0.4.13-2+etch3_ia64.deb
http://security.debian.org/pool/updates/main/n/nginx/nginx_0.4.13-2+et ch3_ia64.deb
Debian Linux 4.0 mips
Debian nginx_0.4.13-2+etch3_mips.deb
http://security.debian.org/pool/updates/main/n/nginx/nginx_0.4.13-2+et ch3_mips.deb
Debian Linux 5.0 sparc
Debian nginx_0.6.32-3+lenny3_sparc.deb
http://security.debian.org/pool/updates/main/n/nginx/nginx_0.6.32-3+le nny3_sparc.deb
</Solutions> <cnnvd>CNNVD-200911-243</cnnvd> <cvsscode>5.0</cvsscode> <severity>Severe</severity> <Description>nginx (aka Engine X) 0.1.0至0.4.14版本, 0.5.x至0.5.38版本, 0.6.x至0.6.39版本, 0.7.x至0.7.62版本,和0.8.x至0.8.14版本的src/http/ngx_http_parse.c,能让远程攻击者通过长URL来触发拒绝服务(空指针引用和工作进程崩溃)。</Description> <name>Nginx: 空指针引用漏洞(CVE-2009-3896)</name> </Vulnerability> <Vulnerability added="2014-01-27" gvid="ID100005" id="100005" modified="2015-02-13" published="2009-11-24" version="2.0">
<cvss>(AV:N/AC:M/Au:S/C:P/I:P/A:N)</cvss>
<Tags>
<tag>Directory Traversal</tag>
<tag>Nginx</tag>
<tag>Web</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2009-3898</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService type="HTTP|HTTPS">
<Product name="nginx" vendor="nginx">
<version>
<range>
<low>0.1.0</low>
<high inclusive="0">0.7.63</high>
</range>
<range>
<low>0.8</low>
<high inclusive="0">0.8.17</high>
</range>
</version>
</Product>
</NetworkService> </Check> <Solutions></Solutions> <cnnvd>CNNVD-200911-245</cnnvd> <cvsscode>4.9</cvsscode> <severity>Severe</severity> <Description>nginx (aka Engine X) 0.7.63之前版本, 和0.8.x至0.8.17版本中的src/http/modules/ngx_http_dav_module.c存在目录遍历漏洞,允许远程认证用户通过用于WebDAV (1)复制或(2)移动方式的目标HTTP标头中.. (点 点)来创建或覆盖任意文件。</Description> <name>Nginx: 目录遍历漏洞(CVE-2009-3898)</name> </Vulnerability> <Vulnerability added="2014-01-27" gvid="ID100006" id="100006" modified="2014-01-27" published="2010-06-15" version="2.0">
<cvss>(AV:N/AC:L/Au:N/C:P/I:N/A:N)</cvss>
<Tags>
<tag>Nginx</tag>
<tag>Web</tag>
</Tags>
<AlternateIds>
<id name="BID">40760</id>
<id name="CVE">CVE-2010-2263</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService type="HTTP|HTTPS">
<Product name="nginx" vendor="nginx">
<version>
<range>
<low>0.7.52</low>
<high inclusive="0">0.7.66</high>
</range>
<range>
<low>0.8</low>
<high inclusive="0">0.8.40</high>
</range>
</version>
</Product>
</NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复这个安全问题,补丁下载链接:
Igor Sysoev nginx 0.8.36
Igor Sysoev nginx-0.8.40.zip
http://nginx.org/download/nginx-0.8.40.zip
</Solutions> <cnnvd>CNNVD-201006-224</cnnvd> <cvsscode>5.0</cvsscode> <severity>Severe</severity> <Description>Nginx的0.8至0.8.40版本和0.7至0.7.66版本,在Windows上运行时,允许远程攻击者通过附加 ::$DATA到URI获取源代码或在Web文档root目录的任意文件未解析的内容。</Description> <name>Nginx: Windows文件默认流存在漏洞(CVE-2010-2263)</name> </Vulnerability> <Vulnerability added="2014-01-27" gvid="ID100007" id="100007" modified="2014-01-27" published="2010-06-15" version="2.0">
<cvss>(AV:N/AC:L/Au:N/C:N/I:N/A:P)</cvss>
<Tags>
<tag>Denial of Service</tag>
<tag>Directory Traversal</tag>
<tag>Nginx</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2010-2266</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService type="HTTP|HTTPS">
<Product name="nginx" vendor="nginx">
<version>
<range>
<low>0.7.52</low>
<high inclusive="0">0.7.67</high>
</range>
<range>
<low>0.8</low>
<high inclusive="0">0.8.41</high>
</range>
</version>
</Product>
</NetworkService> </Check> <Solutions></Solutions> <cnnvd>CNNVD-201006-226</cnnvd> <cvsscode>5.0</cvsscode> <severity>Severe</severity> <Description>nginx 0.8.36版本允许远程攻击者通过触发内存破坏某些编码的目录遍历序列造成拒绝服务(崩溃),已被&quot;%c0.%c0.&quot; 序列证明。</Description> <name>Nginx: Windows中存在无效UTF-8序列(CVE-2010-2266)</name> </Vulnerability> <Vulnerability added="2014-01-27" gvid="ID100008" id="100008" modified="2015-02-13" published="2011-12-08" version="2.0">
<cvss>(AV:N/AC:L/Au:N/C:N/I:N/A:P)</cvss>
<Tags>
<tag>Denial of Service</tag>
<tag>Nginx</tag>
</Tags>
<AlternateIds>
<id name="BID">50710</id>
<id name="CVE">CVE-2011-4315</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService type="HTTP|HTTPS">
<Product name="nginx" vendor="nginx">
<version>
<range>
<low>0.6.18</low>
<high inclusive="0">1.0.10</high>
</range>
<range>
<low>1.1</low>
<high inclusive="0">1.1.8</high>
</range>
</version>
</Product>
</NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://nginx.org/en/download.html</Solutions> <cnnvd>CNNVD-201111-315</cnnvd> <cvsscode>5.0</cvsscode> <severity>Severe</severity> <Description>nginx 1.0.10之前版本中的core/ngx_resolver.c中的compression-pointer处理存在基于堆的缓冲区溢出漏洞允许远程解析器通过长时间相应来导致拒绝服务(后台程序崩溃)或可能产生其他未指定影响。</Description> <name>Nginx: 解析器存在缓冲区溢出(CVE-2011-4315)</name> </Vulnerability> <Vulnerability added="2014-01-27" gvid="ID100009" id="100009" modified="2014-01-27" published="2012-07-26" version="2.0">
<cvss>(AV:N/AC:L/Au:N/C:P/I:N/A:N)</cvss>
<Tags>
<tag>Nginx</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2011-4963</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService type="HTTP|HTTPS">
<Product name="nginx" vendor="nginx">
<version>
<range>
<low>0.7.52</low>
<high inclusive="0">1.2.1</high>
</range>
<range>
<low>1.3</low>
<high inclusive="0">1.3.1</high>
</range>
</version>
</Product>
</NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://nginx.org/en/security_advisories.html</Solutions> <cnnvd>CNNVD-201207-551</cnnvd> <cvsscode>5.0</cvsscode> <severity>Severe</severity> <Description>nginx/Windows的1.3.x至1.3.1版本和1.2.x至1.2.1版本允许远程攻击者通过(1)尾随(点)或(2)请求里的某些&quot; $ index_allocation&quot;序列,绕过预期的访问限制和访问限制的文件 。</Description> <name>Nginx: Windows目录别名存在漏洞(CVE-2011-4963)</name> </Vulnerability> <Vulnerability added="2014-01-27" gvid="ID100010" id="100010" modified="2018-01-05" published="2012-04-17" version="2.0">
<cvss>(AV:N/AC:L/Au:N/C:P/I:N/A:N)</cvss>
<Tags>
<tag>Nginx</tag>
<tag>Web</tag>
</Tags>
<AlternateIds>
<id name="BID">52578</id>
<id name="CVE">CVE-2012-1180</id>
<id name="DEBIAN">DSA-2434</id>
<id name="XF">74191</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService type="HTTP|HTTPS">
<Product name="nginx" vendor="nginx">
<version>
<range>
<low>0.1.0</low>
<high inclusive="0">1.0.14</high>
</range>
<range>
<low>1.1</low>
<high inclusive="0">1.1.17</high>
</range>
</version>
</Product>
</NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://nginx.org/en/security_advisories.html</Solutions> <cnnvd>CNNVD-201203-375</cnnvd> <cvsscode>5.0</cvsscode> <severity>Severe</severity> <Description>在nginx 1.0.14之前版本和1.1.x至1.1.17版本存在use-after-free漏洞允许远程HTTP服务器通过特制后端进程内存响应,结合客户要求获取敏感信息。</Description> <name>Nginx: 特制后门响应引起内存泄露(CVE-2012-1180)</name> </Vulnerability> <Vulnerability added="2014-01-27" gvid="ID100011" id="100011" modified="2017-12-21" published="2012-04-17" version="2.0">
<cvss>(AV:N/AC:H/Au:N/C:P/I:P/A:P)</cvss>
<Tags>
<tag>Denial of Service</tag>
<tag>Nginx</tag>
<tag>Remote Execution</tag>
<tag>Web</tag>
</Tags>
<AlternateIds>
<id name="BID">52999</id>
<id name="CVE">CVE-2012-2089</id>
<id name="XF">74831</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService type="HTTP|HTTPS">
<Product name="nginx" vendor="nginx">
<version>
<range>
<low>1.0.7</low>
<high inclusive="0">1.0.15</high>
</range>
<range>
<low>1.1.3</low>
<high inclusive="0">1.1.19</high>
</range>
</version>
</Product>
</NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://nginx.org/en/security_advisories.html</Solutions> <cnnvd>CNNVD-201204-276</cnnvd> <cvsscode>5.1</cvsscode> <severity>Severe</severity> <Description>nginx 1.0.7至1.0.14 和 1.1.3至1.1.18中ngx_http_mp4_module模块中gx_http_mp4_module.c上的缓冲器溢出,使用mp4指令时,允许远程攻击者通过特制的MP4文件导致拒绝服务(内存损坏)或可能执行任意代码。</Description> <name>Nginx: ngx_http_mp4_module存在缓冲区溢出 (CVE-2012-2089)</name> </Vulnerability> <Vulnerability added="2014-01-27" gvid="ID100012" id="100012" modified="2017-01-03" published="2013-07-19" version="2.0">
<cvss>(AV:N/AC:L/Au:N/C:P/I:P/A:P)</cvss>
<Tags>
<tag>Denial of Service</tag>
<tag>Nginx</tag>
<tag>Remote Execution</tag>
<tag>Web</tag>
</Tags>
<AlternateIds>
<id name="BID">59699</id>
<id name="CVE">CVE-2013-2028</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService type="HTTP|HTTPS">
<Product name="nginx" vendor="nginx">
<version>
<range>
<low>1.3.9</low>
<high inclusive="0">1.4.1</high>
</range>
</version>
</Product>
</NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://www.nginx.org/en/security_advisories.html</Solutions> <cnnvd>CNNVD-201305-143</cnnvd> <cvsscode>7.5</cvsscode> <severity>Critical</severity> <Description>nginx 1.3.9至1.4.0中http/ngx_http_parse.c中ngx_http_parse_chunked函数允许远程攻击者通过有较大的块大小的分块Transfer-Encoding请求来导致拒绝服务(崩溃)和执行任意代码,触发整数签名错误和基于堆的缓冲区溢出漏洞。</Description> <name>Nginx: 特制请求引起基于栈的缓冲区溢出(CVE-2013-2028)</name> </Vulnerability> <Vulnerability added="2014-01-27" gvid="ID100013" id="100013" modified="2015-02-13" published="2013-07-19" version="2.0">
<cvss>(AV:N/AC:M/Au:N/C:P/I:N/A:P)</cvss>
<Tags>
<tag>Denial of Service</tag>
<tag>Nginx</tag>
<tag>Web</tag>
</Tags>
<AlternateIds>
<id name="BID">59824</id>
<id name="CVE">CVE-2013-2070</id>
<id name="DEBIAN">DSA-2721</id>
<id name="XF">84172</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService type="HTTP|HTTPS">
<Product name="nginx" vendor="nginx">
<version>
<range>
<low>1.1.4</low>
<high inclusive="0">1.2.9</high>
</range>
<range>
<low>1.3.9</low>
<high inclusive="0">1.4.1</high>
</range>
</version>
</Product>
</NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://seclists.org/oss-sec/2013/q2/315</Solutions> <cnnvd>CNNVD-201305-235</cnnvd> <cvsscode>5.8</cvsscode> <severity>Severe</severity> <Description>nginx 1.1.4至1.2.8版本和1.3.0至1.4.0版本的http/modules/ngx_http_proxy_module.c,当proxy_pass用于与不可信的HTTP服务器。允许远程攻击者通过特制的代理响应导致拒绝服务(崩溃),并从工作进程内存获取敏感信息。此漏洞与CVE-2013-2028类似。</Description> <name>Nginx: 特制HTTP后门响应引起内存泄露(CVE-2013-2070)</name> </Vulnerability> <Vulnerability added="2014-01-27" gvid="ID100014" id="100014" modified="2015-02-13" published="2013-11-23" version="2.0">
<cvss>(AV:N/AC:L/Au:N/C:P/I:P/A:P)</cvss>
<Tags>
<tag>Nginx</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2013-4547</id>
<id name="DEBIAN">DSA-2802</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService type="HTTP|HTTPS">
<Product name="nginx" vendor="nginx">
<version>
<range>
<low>0.8.41</low>
<high inclusive="0">1.4.4</high>
</range>
<range>
<low>1.5</low>
<high inclusive="0">1.5.7</high>
</range>
</version>
</Product>
</NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://mailman.nginx.org/pipermail/nginx-announce/2013/000125.html</Solutions> <cnnvd>CNNVD-201311-336</cnnvd> <cvsscode>7.5</cvsscode> <severity>Critical</severity> <Description>nginx的0.8.41至1.4.3版本和1.5.x至1.5.7版本,允许远程攻击者通过在URI转义空格字符绕过预期的限制。</Description> <name>Nginx: 请求行解析漏洞(CVE-2013-4547)</name> </Vulnerability> <Vulnerability added="2014-04-10" gvid="ID100015" id="100015" modified="2014-05-02" published="2014-04-10" version="2.0">
<cvss>(AV:N/AC:L/Au:N/C:P/I:P/A:P)</cvss>
<Tags>
<tag>Nginx</tag>
<tag>Remote Execution</tag>
<tag>Web</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2014-0088</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService type="HTTP|HTTPS">
<Product name="nginx" vendor="nginx">
<version>
<range>
<low>1.5</low>
<high inclusive="0">1.5.11</high>
</range>
</version>
</Product>
</NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://mailman.nginx.org/pipermail/nginx-announce/2014/000132.html</Solutions> <cnnvd>CNNVD-201404-576</cnnvd> <cvsscode>7.5</cvsscode> <severity>Critical</severity> <Description>nginx1.5.10至1.5.11版本的ngx_http_spdy_module模块的SPDY实施,当在32位平台上运行时,允许远程攻击者通过特制的请求执行任意代码。</Description> <name>Nginx: SPDY内存损坏(CVE-2014-0088)</name> </Vulnerability> <Vulnerability added="2014-04-10" gvid="ID100016" id="100016" modified="2015-06-08" published="2014-03-28" version="2.0">
<cvss>(AV:N/AC:H/Au:N/C:P/I:P/A:P)</cvss>
<Tags>
<tag>Nginx</tag>
<tag>Remote Execution</tag>
</Tags>
<AlternateIds>
<id name="BID">66537</id>
<id name="CVE">CVE-2014-0133</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService type="HTTP|HTTPS">
<Product name="nginx" vendor="nginx">
<version>
<range>
<low>1.3.15</low>
<high inclusive="0">1.4.7</high>
</range>
<range>
<low>1.5</low>
<high inclusive="0">1.5.12</high>
</range>
</version>
</Product>
</NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://mailman.nginx.org/pipermail/nginx-announce/2014/000135.html</Solutions> <cnnvd>CNNVD-201403-536</cnnvd> <cvsscode>5.1</cvsscode> <severity>Severe</severity> <Description>nginx 1.3.15至1.4.7版本和1.5.x至1.5.12版本的中SPDY实施存在基于堆的缓冲区溢出漏洞允许远程攻击者通过特制的请求来执行任意代码。</Description> <name>Nginx: SPDY堆缓冲区溢出(CVE-2014-0133)</name> </Vulnerability> <Vulnerability added="2014-08-08" gvid="ID100017" id="100017" modified="2015-01-05" published="2014-08-08" version="2.0">
<cvss>(AV:N/AC:M/Au:N/C:P/I:N/A:N)</cvss>
<Tags>
<tag>Mail</tag>
<tag>Nginx</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2014-3556</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService type="HTTP|HTTPS">
<Product name="nginx" vendor="nginx">
<version>
<range>
<low>1.5.6</low>
<high inclusive="0">1.6.1</high>
</range>
<range>
<low>1.7</low>
<high inclusive="0">1.7.4</high>
</range>
</version>
</Product>
</NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://mailman.nginx.org/pipermail/nginx-announce/2014/000144.html</Solutions> <cnnvd>CNNVD-201408-095</cnnvd> <cvsscode>4.3</cvsscode> <severity>Severe</severity> <Description>nginx 1.5.x和1.6.x至1.6.1版本和1.7.x至1.7.4版本的中SMTP代理中mail/ngx_mail_smtp_handler.c中STARTTLS实现不正确限制I/O缓冲区,这允许中间人攻击者通过发送明文明命令,其是TLS就位后处理的,来插入命令道加密SMTP会话中,与&quot;plaintext command injection&quot;攻击有关,此漏洞与CVE-2011-0144类似。</Description> <name>Nginx: STARTTLS命令注入(CVE-2014-3556)</name> </Vulnerability> <Vulnerability added="2014-09-18" gvid="ID100018" id="100018" modified="2014-12-11" published="2014-09-18" version="2.0">
<cvss>(AV:N/AC:M/Au:N/C:N/I:P/A:N)</cvss>
<Tags>
<tag>Nginx</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2014-3616</id>
<id name="DEBIAN">DSA-3029</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService type="HTTP|HTTPS">
<Product name="nginx" vendor="nginx">
<version>
<range>
<low>0.5.6</low>
<high inclusive="0">1.6.2</high>
</range>
<range>
<low>1.7</low>
<high inclusive="0">1.7.5</high>
</range>
</version>
</Product>
</NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://mailman.nginx.org/pipermail/nginx-announce/2014/000147.html</Solutions> <cnnvd>CNNVD-201410-1268</cnnvd> <cvsscode>4.3</cvsscode> <severity>Severe</severity> <Description>多个服务器共享ssl_session_ticket_key时,nginx 0.5.6至1.7.4版本,可以重用一个和上下文无关缓存SSL会话,它允许远程攻击者用某些权限进行&quot;virtual host confusion&quot;攻击。</Description> <name>Nginx: SSL会话重用漏洞(CVE-2014-3616)</name> </Vulnerability> <Vulnerability added="2016-01-29" gvid="ID100019" id="100019" modified="2018-01-08" published="2016-01-29" version="2.0">
<cvss>(AV:N/AC:L/Au:N/C:N/I:N/A:P)</cvss>
<cvss3>CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L</cvss3>
<Tags>
<tag>DNS</tag>
<tag>Denial of Service</tag>
<tag>Nginx</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2016-0742</id>
<id name="DEBIAN">DSA-3473</id>
<id name="REDHAT">RHSA-2016:1425</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService type="HTTP|HTTPS">
<Product name="nginx" vendor="nginx">
<version>
<range>
<low>0.6.18</low>
<high inclusive="0">1.8.1</high>
</range>
<range>
<low>1.9</low>
<high inclusive="0">1.9.10</high>
</range>
</version>
</Product>
</NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://mailman.nginx.org/pipermail/nginx/2016-January/049700.html</Solutions> <cnnvd>CNNVD-201602-057</cnnvd> <cvsscode>5.0</cvsscode> <severity>Severe</severity> <Description>nginx 1.8.1之前版本和1.9.x至1.9.10版本的解析器允许远程攻击自通过特制的UDP DNS 响应导致拒绝服务(空指针引用和工作进程崩溃)。</Description> <name>Nginx: 解析器中无效指针引用(CVE-2016-0742)</name> </Vulnerability> <Vulnerability added="2016-01-29" gvid="ID100020" id="100020" modified="2018-03-26" published="2016-01-29" version="2.0">
<cvss>(AV:N/AC:L/Au:N/C:P/I:P/A:P)</cvss>
<cvss3>CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L</cvss3>
<Tags>
<tag>DNS</tag>
<tag>Denial of Service</tag>
<tag>Nginx</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2016-0746</id>
<id name="DEBIAN">DSA-3473</id>
<id name="REDHAT">RHSA-2016:1425</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService type="HTTP|HTTPS">
<Product name="nginx" vendor="nginx">
<version>
<range>
<low>0.6.18</low>
<high inclusive="0">1.8.1</high>
</range>
<range>
<low>1.9</low>
<high inclusive="0">1.9.10</high>
</range>
</version>
</Product>
</NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://mailman.nginx.org/pipermail/nginx/2016-January/049700.html</Solutions> <cnnvd>CNNVD-201602-058</cnnvd> <cvsscode>7.5</cvsscode> <severity>Critical</severity> <Description>nginx 0.6.18到1.8.0中的解析程序中的使用后释放漏洞以及1.9.10之前的1.9.x允许远程攻击者导致拒绝服务(工作进程崩溃)或可能通过不确定的其他影响 与CNAME响应处理相关的精心设计的DNS响应。</Description> <name>Nginx: 解析器处理CNAME响应存在Use-after-free漏洞(CVE-2016-0746)</name> </Vulnerability> <Vulnerability added="2016-01-29" gvid="ID100021" id="100021" modified="2018-01-08" published="2016-01-29" version="2.0">
<cvss>(AV:N/AC:L/Au:N/C:N/I:N/A:P)</cvss>
<cvss3>CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L</cvss3>
<Tags>
<tag>Denial of Service</tag>
<tag>Nginx</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2016-0747</id>
<id name="DEBIAN">DSA-3473</id>
<id name="REDHAT">RHSA-2016:1425</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService type="HTTP|HTTPS">
<Product name="nginx" vendor="nginx">
<version>
<range>
<low>0.6.18</low>
<high inclusive="0">1.8.1</high>
</range>
<range>
<low>1.9</low>
<high inclusive="0">1.9.10</high>
</range>
</version>
</Product>
</NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://mailman.nginx.org/pipermail/nginx/2016-January/049700.html</Solutions> <cnnvd>CNNVD-201602-059</cnnvd> <cvsscode>5.0</cvsscode> <severity>Severe</severity> <Description>nginx 1.8.1之前版本和1.9.x至1.9.10版本的解析器未合理限制CNAME解析,这允远程攻击者通过与任意名称解析相关的向量导致拒绝服务(工作进程资源消耗)。</Description> <name>Nginx: 解析器中CNAME解析限制不够(CVE-2016-0747)</name> </Vulnerability> <Vulnerability added="2016-06-01" gvid="ID100022" id="100022" modified="2018-01-08" published="2016-06-01" version="2.0">
<cvss>(AV:N/AC:L/Au:N/C:N/I:N/A:P)</cvss>
<cvss3>CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H</cvss3>
<Tags>
<tag>Denial of Service</tag>
<tag>Nginx</tag>
</Tags>
<AlternateIds>
<id name="BID">90967</id>
<id name="CVE">CVE-2016-4450</id>
<id name="DEBIAN">DSA-3592</id>
<id name="REDHAT">RHSA-2016:1425</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService type="HTTP|HTTPS">
<Product name="nginx" vendor="nginx">
<version>
<range>
<low>1.3.9</low>
<high inclusive="0">1.10.1</high>
</range>
<range>
<low>1.11</low>
<high inclusive="0">1.11.1</high>
</range>
</version>
</Product>
</NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://mailman.nginx.org/pipermail/nginx-announce/2016/000179.html</Solutions> <cnnvd>CNNVD-201606-010</cnnvd> <cvsscode>5.0</cvsscode> <severity>Severe</severity> <Description>nginx 1.10.1之前版本和1.11.x至1.11.1版本的os/unix/ngx_files.c允许远程攻击者通过特制的请求导致拒绝服务(空指针引用和工作进程崩溃),这涉及将请求正文写入临时文件。</Description> <name>Nginx: 写入客户端请求主体存在空指针引用(CVE-2016-4450)</name> </Vulnerability> <Vulnerability added="2017-07-12" gvid="ID100023" id="100023" modified="2018-01-08" published="2017-07-12" version="2.0">
<severity>5</severity>
<cvss>(AV:N/AC:L/Au:N/C:P/I:N/A:N)</cvss>
<cvss3>CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N</cvss3>
<Tags>
<tag>Nginx</tag>
</Tags>
<AlternateIds>
<id name="BID">99534</id>
<id name="CVE">CVE-2017-7529</id>
<id name="REDHAT">RHSA-2017:2538</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService type="HTTP|HTTPS">
<Product name="nginx" vendor="nginx">
<version>
<range>
<low>0.5.6</low>
<high inclusive="0">1.12.1</high>
</range>
<range>
<low>1.13</low>
<high inclusive="0">1.13.3</high>
</range>
</version>
</Product>
</NetworkService> </Check> <Solutions>目前厂商已发布升级补丁以修复漏洞,补丁获取链接:
http://mailman.nginx.org/pipermail/nginx-announce/2017/000200.html</Solutions> <cnnvd>CNNVD-201707-563</cnnvd> <name>Nginx: 範圍過濾器中的整數溢出 (CVE-2017-7529)</name> <Description>Nginx版本从0.5.6到1.53.2都容易受到nginx范围过滤器模块中的整数溢出漏洞的影响,从而导致由特制请求触发的潜在敏感信息洩漏.</Description> </Vulnerability> <Vulnerability added="2018-11-07" gvid="ID100024" id="100024" modified="2018-12-13" published="2018-11-07" version="2.0">
<cvss>(AV:N/AC:L/Au:N/C:N/I:N/A:C)</cvss>
<cvss3>CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H</cvss3>
<Tags>
<tag>Nginx</tag>
<tag>Web</tag>
</Tags>
<AlternateIds>
<id name="BID">105868</id>
<id name="CVE">CVE-2018-16843</id>
<id name="DEBIAN">DSA-4335</id>
<id name="REDHAT">RHSA-2018:3653</id>
<id name="REDHAT">RHSA-2018:3680</id>
<id name="REDHAT">RHSA-2018:3681</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService type="HTTP|HTTPS">
<Product name="nginx" vendor="nginx">
<version>
<range>
<low>1.9.5</low>
<high inclusive="0">1.14.1</high>
</range>
<range>
<low>1.15</low>
<high inclusive="0">1.15.6</high>
</range>
</version>
</Product>
</NetworkService> </Check> <Solutions>目前厂商已发布升级补丁以修复漏洞,补丁获取链接:
http://mailman.nginx.org/pipermail/nginx-announce/2018/000220.html</Solutions> <cnnvd>CNNVD-201811-131</cnnvd> <cvsscode>7.8</cvsscode> <severity>Critical</severity> <Description>nginx before versions 1.15.6 and 1.14.1 has a vulnerability in the implementation of HTTP/2 that can allow for excessive memory consumption. This issue affects nginx compiled with the ngx_http_v2_module (not compiled by default) if the &#39;http2&#39; option of the &#39;listen&#39; directive is used in a configuration file.</Description> <name>Nginx:HTTP/2中的内存使用率过高(CVE-2018-16843)</name> </Vulnerability> <Vulnerability added="2018-11-07" gvid="ID100025" id="100025" modified="2018-12-13" published="2018-11-07" version="2.0">
<cvss>(AV:N/AC:L/Au:N/C:N/I:N/A:C)</cvss>
<cvss3>CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H</cvss3>
<Tags>
<tag>Nginx</tag>
<tag>Web</tag>
</Tags>
<AlternateIds>
<id name="BID">105868</id>
<id name="CVE">CVE-2018-16844</id>
<id name="DEBIAN">DSA-4335</id>
<id name="REDHAT">RHSA-2018:3680</id>
<id name="REDHAT">RHSA-2018:3681</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService type="HTTP|HTTPS">
<Product name="nginx" vendor="nginx">
<version>
<range>
<low>1.9.5</low>
<high inclusive="0">1.14.1</high>
</range>
<range>
<low>1.15</low>
<high inclusive="0">1.15.6</high>
</range>
</version>
</Product>
</NetworkService> </Check> <Solutions>目前厂商已发布升级补丁以修复漏洞,补丁获取链接:
http://mailman.nginx.org/pipermail/nginx-announce/2018/000220.html?_ga=2.143807029.1839563140.1541529087-1530719350.1541529087</Solutions> <cnnvd>CNNVD-201811-120</cnnvd> <cvsscode>7.8</cvsscode> <severity>Critical</severity> <Description>nginx before versions 1.15.6 and 1.14.1 has a vulnerability in the implementation of HTTP/2 that can allow for excessive CPU usage. This issue affects nginx compiled with the ngx_http_v2_module (not compiled by default) if the &#39;http2&#39; option of the &#39;listen&#39; directive is used in a configuration file.</Description> <name>Nginx:HTTP/2中CPU使用率过高(CVE-2018-16844)</name> </Vulnerability> <Vulnerability added="2018-11-07" gvid="ID100026" id="100026" modified="2019-02-04" published="2018-11-07" version="2.0">
<cvss>(AV:N/AC:M/Au:N/C:P/I:N/A:P)</cvss>
<cvss3>CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:L/I:N/A:H</cvss3>
<Tags>
<tag>Nginx</tag>
<tag>Web</tag>
</Tags>
<AlternateIds>
<id name="BID">105868</id>
<id name="CVE">CVE-2018-16845</id>
<id name="DEBIAN">DSA-4335</id>
<id name="REDHAT">RHSA-2018:3652</id>
<id name="REDHAT">RHSA-2018:3653</id>
<id name="REDHAT">RHSA-2018:3680</id>
<id name="REDHAT">RHSA-2018:3681</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService type="HTTP|HTTPS">
<Product name="nginx" vendor="nginx">
<version>
<range>
<low>1.0.7</low>
<high inclusive="0">1.14.1</high>
</range>
<range>
<low>1.15</low>
<high inclusive="0">1.15.6</high>
</range>
</version>
</Product>
</NetworkService> </Check> <Solutions>目前厂商已发布升级补丁以修复漏洞,补丁获取链接:
http://mailman.nginx.org/pipermail/nginx-announce/2018/000221.html</Solutions> <cnnvd>CNNVD-201811-119</cnnvd> <cvsscode>5.8</cvsscode> <severity>Severe</severity> <Description>nginx before versions 1.15.6, 1.14.1 has a vulnerability in the ngx_http_mp4_module, which might allow an attacker to cause infinite loop in a worker process, cause a worker process crash, or might result in worker process memory disclosure by using a specially crafted mp4 file. The issue only affects nginx if it is built with the ngx_http_mp4_module (the module is not built by default) and the .mp4. directive is used in the configuration file. Further, the attack is only possible if an attacker is able to trigger processing of a specially crafted mp4 file with the ngx_http_mp4_module.</Description> <name>Nginx:ngx_http_mp4_module中的内存泄露(CVE-2018-16845)</name> </Vulnerability> <Vulnerability added="2019-08-14" gvid="ID100027" id="100027" modified="2019-11-28" published="2019-08-14" version="2.0">
<cvss>(AV:N/AC:L/Au:N/C:N/I:N/A:C)</cvss>
<cvss3>CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H</cvss3>
<Tags>
<tag>Denial of Service</tag>
<tag>Nginx</tag>
<tag>Web</tag>
</Tags>
<AlternateIds>
<id name="CERT-VN">605641</id>
<id name="CVE">CVE-2019-9511</id>
<id name="DEBIAN">DSA-4505</id>
<id name="DEBIAN">DSA-4511</id>
<id name="REDHAT">RHSA-2019:2692</id>
<id name="REDHAT">RHSA-2019:2745</id>
<id name="REDHAT">RHSA-2019:2746</id>
<id name="REDHAT">RHSA-2019:2775</id>
<id name="REDHAT">RHSA-2019:2799</id>
<id name="REDHAT">RHSA-2019:2925</id>
<id name="REDHAT">RHSA-2019:2939</id>
<id name="REDHAT">RHSA-2019:2949</id>
<id name="REDHAT">RHSA-2019:2955</id>
<id name="REDHAT">RHSA-2019:2966</id>
<id name="REDHAT">RHSA-2019:3041</id>
<id name="REDHAT">RHSA-2019:3932</id>
<id name="REDHAT">RHSA-2019:3933</id>
<id name="REDHAT">RHSA-2019:3935</id>
<id name="REDHAT">RHSA-2019:4018</id>
<id name="REDHAT">RHSA-2019:4019</id>
<id name="REDHAT">RHSA-2019:4020</id>
<id name="REDHAT">RHSA-2019:4021</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService type="HTTP|HTTPS">
<Product name="nginx" vendor="nginx">
<version>
<range>
<low>1.9.5</low>
<high inclusive="0">1.16.1</high>
</range>
<range>
<low>1.17</low>
<high inclusive="0">1.17.3</high>
</range>
</version>
</Product>
</NetworkService> </Check> <Solutions>目前厂商已发布升级补丁以修复漏洞,详情请关注厂商主页:
https://http2.github.io/</Solutions> <cnnvd>CNNVD-201908-924</cnnvd> <cvsscode>7.8</cvsscode> <severity>Critical</severity> <Description>Some HTTP/2 implementations are vulnerable to window size manipulation and stream prioritization manipulation, potentially leading to a denial of service. The attacker requests a large amount of data from a specified resource over multiple streams. They manipulate window size and stream priority to force the server to queue the data in 1-byte chunks. Depending on how efficiently this data is queued, this can consume excess CPU, memory, or both.</Description> <name>Nginx : HTTP/2小窗口更新中的CPU使用率过高 (CVE-2019-9511)</name> </Vulnerability> <Vulnerability added="2019-08-14" gvid="ID100028" id="100028" modified="2019-11-22" published="2019-08-14" version="2.0">
<cvss>(AV:N/AC:L/Au:N/C:N/I:N/A:C)</cvss>
<cvss3>CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H</cvss3>
<Tags>
<tag>Denial of Service</tag>
<tag>Nginx</tag>
<tag>Web</tag>
</Tags>
<AlternateIds>
<id name="CERT-VN">605641</id>
<id name="CVE">CVE-2019-9513</id>
<id name="DEBIAN">DSA-4505</id>
<id name="DEBIAN">DSA-4511</id>
<id name="REDHAT">RHSA-2019:2692</id>
<id name="REDHAT">RHSA-2019:2745</id>
<id name="REDHAT">RHSA-2019:2746</id>
<id name="REDHAT">RHSA-2019:2775</id>
<id name="REDHAT">RHSA-2019:2799</id>
<id name="REDHAT">RHSA-2019:2925</id>
<id name="REDHAT">RHSA-2019:2939</id>
<id name="REDHAT">RHSA-2019:2949</id>
<id name="REDHAT">RHSA-2019:2955</id>
<id name="REDHAT">RHSA-2019:2966</id>
<id name="REDHAT">RHSA-2019:3041</id>
<id name="REDHAT">RHSA-2019:3932</id>
<id name="REDHAT">RHSA-2019:3933</id>
<id name="REDHAT">RHSA-2019:3935</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService type="HTTP|HTTPS">
<Product name="nginx" vendor="nginx">
<version>
<range>
<low>1.9.5</low>
<high inclusive="0">1.16.1</high>
</range>
<range>
<low>1.17</low>
<high inclusive="0">1.17.3</high>
</range>
</version>
</Product>
</NetworkService> </Check> <Solutions>目前厂商已发布升级补丁以修复漏洞,详情请关注厂商主页:
https://http2.github.io/</Solutions> <cnnvd>CNNVD-201908-935</cnnvd> <cvsscode>7.8</cvsscode> <severity>Critical</severity> <Description>Some HTTP/2 implementations are vulnerable to resource loops, potentially leading to a denial of service. The attacker creates multiple request streams and continually shuffles the priority of the streams in a way that causes substantial churn to the priority tree. This can consume excess CPU.</Description> <name>Nginx : 优先级更改的HTTP/2中CPU使用率过高(CVE-2019-9513)</name> </Vulnerability> <Vulnerability added="2019-08-14" gvid="ID100029" id="100029" modified="2019-11-22" published="2019-08-14" version="2.0">
<cvss>(AV:N/AC:L/Au:N/C:N/I:N/A:C)</cvss>
<cvss3>CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H</cvss3>
<Tags>
<tag>Denial of Service</tag>
<tag>Nginx</tag>
<tag>Web</tag>
</Tags>
<AlternateIds>
<id name="CERT-VN">605641</id>
<id name="CVE">CVE-2019-9516</id>
<id name="DEBIAN">DSA-4505</id>
<id name="REDHAT">RHSA-2019:2745</id>
<id name="REDHAT">RHSA-2019:2746</id>