-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathesorics2020-extended_validation_icsa_statistics_paper_dev.json
10022 lines (10022 loc) · 440 KB
/
esorics2020-extended_validation_icsa_statistics_paper_dev.json
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
[
{
"icsa_id": "ICSA-19-192-01",
"cwe_id": "CWE-122",
"cve_id": "CVE-2019-10982",
"cvss_version": "3",
"cve_description": "Delta Electronics CNCSoft ScreenEditor, Versions 1.00.89 and prior. Multiple heap-based buffer overflow vulnerabilities may be exploited by processing specially crafted project files, allowing an attacker to remotely execute arbitrary code. There is a lack of user input validation before copying data from project files onto the heap.",
"cvss_base_score": 7.8,
"cvss_impact_score": 5.9,
"cvss_exploitability_score": 1.8,
"cvss_severity": "HIGH",
"nvd_cwe_id": "CWE-119",
"cvss_vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H",
"accessVector": "LOCAL",
"complexity": "LOW",
"availabilityImpact": "HIGH",
"integrityImpact": "HIGH",
"confidentialityImpact": "HIGH",
"allPriv": "0",
"userPriv": "0",
"otherPriv": "0",
"userInteractionRequired": "REQUIRED",
"privilegesRequired": "NONE",
"u_sys_created": "2019-07-24T15:15:00",
"u_sys_updated": "2019-10-09T23:45:00",
"u_sfp_cluster": "CWE-970",
"u_old_cat": "Memory",
"u_new_cat": "Memory",
"u_other_cat": "Unchanged",
"u_product_type": null
},
{
"icsa_id": "ICSA-19-192-05",
"cwe_id": "CWE-20",
"cve_id": "CVE-2018-20034",
"cvss_version": "3",
"cve_description": "A Denial of Service vulnerability related to adding an item to a list in lmgrd and vendor daemon components of FlexNet Publisher version 11.16.1.0 and earlier allows a remote attacker to send a combination of messages to lmgrd or the vendor daemon, causing the heartbeat between lmgrd and the vendor daemon to stop, and the vendor daemon to shut down.",
"cvss_base_score": 7.5,
"cvss_impact_score": 3.6,
"cvss_exploitability_score": 3.9,
"cvss_severity": "HIGH",
"nvd_cwe_id": "CWE-20",
"cvss_vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"accessVector": "NETWORK",
"complexity": "LOW",
"availabilityImpact": "HIGH",
"integrityImpact": "NONE",
"confidentialityImpact": "NONE",
"allPriv": "0",
"userPriv": "0",
"otherPriv": "0",
"userInteractionRequired": "NONE",
"privilegesRequired": "NONE",
"u_sys_created": "2019-03-21T21:29:00",
"u_sys_updated": "2019-07-15T13:15:00",
"u_sfp_cluster": "CWE-994",
"u_old_cat": "Tainted Input",
"u_new_cat": "Denial of Service",
"u_other_cat": "Unchanged",
"u_product_type": null
},
{
"icsa_id": "ICSA-19-211-01",
"cwe_id": "CWE-119",
"cve_id": "CVE-2019-12260",
"cvss_version": "3",
"cve_description": "Wind River VxWorks 6.9 and vx7 has a Buffer Overflow in the TCP component (issue 2 of 4). This is an IPNET security vulnerability: TCP Urgent Pointer state confusion caused by a malformed TCP AO option.",
"cvss_base_score": 9.8,
"cvss_impact_score": 5.9,
"cvss_exploitability_score": 3.9,
"cvss_severity": "CRITICAL",
"nvd_cwe_id": "CWE-119",
"cvss_vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
"accessVector": "NETWORK",
"complexity": "LOW",
"availabilityImpact": "HIGH",
"integrityImpact": "HIGH",
"confidentialityImpact": "HIGH",
"allPriv": "0",
"userPriv": "0",
"otherPriv": "0",
"userInteractionRequired": "NONE",
"privilegesRequired": "NONE",
"u_sys_created": "2019-08-09T21:15:00",
"u_sys_updated": "2019-09-10T13:15:00",
"u_sfp_cluster": "CWE-970",
"u_old_cat": "Memory",
"u_new_cat": "Memory",
"u_other_cat": "Unchanged",
"u_product_type": null
},
{
"icsa_id": "ICSA-19-211-02",
"cwe_id": "CWE-287",
"cve_id": "CVE-2019-7666",
"cvss_version": "3",
"cve_description": "Prima Systems FlexAir, Versions 2.3.38 and prior. The application allows improper authentication using the MD5 hash value of the password, which may allow an attacker with access to the database to login as admin without decrypting the password.",
"cvss_base_score": 8.8,
"cvss_impact_score": 5.9,
"cvss_exploitability_score": 2.8,
"cvss_severity": "HIGH",
"nvd_cwe_id": "CWE-287",
"cvss_vector": "CVSS:3.0/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
"accessVector": "NETWORK",
"complexity": "LOW",
"availabilityImpact": "HIGH",
"integrityImpact": "HIGH",
"confidentialityImpact": "HIGH",
"allPriv": "0",
"userPriv": "0",
"otherPriv": "0",
"userInteractionRequired": "NONE",
"privilegesRequired": "LOW",
"u_sys_created": "2019-07-01T19:15:00",
"u_sys_updated": "2019-07-31T16:15:00",
"u_sfp_cluster": "CWE-947",
"u_old_cat": "Authentication",
"u_new_cat": "Authentication",
"u_other_cat": "Unchanged",
"u_product_type": null
},
{
"icsa_id": "ICSA-19-213-06",
"cwe_id": "CWE-125",
"cve_id": "CVE-2019-10994",
"cvss_version": "3",
"cve_description": "Processing a specially crafted project file in LAquis SCADA 4.3.1.71 may trigger an out-of-bounds read, which may allow an attacker to obtain sensitive information. The attacker must have local access to the system. A CVSS v3 base score of 2.5 has been calculated; the CVSS vector string is (AV:L/AC:H/PR:N/UI:R/S:U/C:L/I:N/A:N).",
"cvss_base_score": 3.3,
"cvss_impact_score": 1.4,
"cvss_exploitability_score": 1.8,
"cvss_severity": "LOW",
"nvd_cwe_id": "CWE-125",
"cvss_vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:L/I:N/A:N",
"accessVector": "LOCAL",
"complexity": "LOW",
"availabilityImpact": "NONE",
"integrityImpact": "NONE",
"confidentialityImpact": "LOW",
"allPriv": "0",
"userPriv": "0",
"otherPriv": "0",
"userInteractionRequired": "REQUIRED",
"privilegesRequired": "NONE",
"u_sys_created": "2019-08-05T19:15:00",
"u_sys_updated": "2019-10-09T23:45:00",
"u_sfp_cluster": "CWE-970",
"u_old_cat": "Memory",
"u_new_cat": "Memory",
"u_other_cat": "Unchanged",
"u_product_type": "SCADA"
},
{
"icsa_id": "ICSA-19-253-03",
"cwe_id": "CWE-190",
"cve_id": "CVE-2019-11479",
"cvss_version": "3",
"cve_description": "Jonathan Looney discovered that the Linux kernel default MSS is hard-coded to 48 bytes. This allows a remote peer to fragment TCP resend queues significantly more than if a larger MSS were enforced. A remote attacker could use this to cause a denial of service. This has been fixed in stable kernel releases 4.4.182, 4.9.182, 4.14.127, 4.19.52, 5.1.11, and is fixed in commits 967c05aee439e6e5d7d805e195b3a20ef5c433d6 and 5f3e2bf008c2221478101ee72f5cb4654b9fc363.",
"cvss_base_score": 7.5,
"cvss_impact_score": 3.6,
"cvss_exploitability_score": 3.9,
"cvss_severity": "HIGH",
"nvd_cwe_id": "CWE-400",
"cvss_vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"accessVector": "NETWORK",
"complexity": "LOW",
"availabilityImpact": "HIGH",
"integrityImpact": "NONE",
"confidentialityImpact": "NONE",
"allPriv": "0",
"userPriv": "0",
"otherPriv": "0",
"userInteractionRequired": "NONE",
"privilegesRequired": "NONE",
"u_sys_created": "2019-06-19T00:15:00",
"u_sys_updated": "2019-06-20T20:15:00",
"u_sfp_cluster": "CWE-998",
"u_old_cat": "Risky Values",
"u_new_cat": "Memory",
"u_other_cat": "Unchanged",
"u_product_type": "RTU"
},
{
"icsa_id": "ICSA-19-253-03",
"cwe_id": "CWE-190",
"cve_id": "CVE-2019-11477",
"cvss_version": "3",
"cve_description": "Jonathan Looney discovered that the TCP_SKB_CB(skb)->tcp_gso_segs value was subject to an integer overflow in the Linux kernel when handling TCP Selective Acknowledgments (SACKs). A remote attacker could use this to cause a denial of service. This has been fixed in stable kernel releases 4.4.182, 4.9.182, 4.14.127, 4.19.52, 5.1.11, and is fixed in commit 3b4929f65b0d8249f19a50245cd88ed1a2f78cff.",
"cvss_base_score": 7.5,
"cvss_impact_score": 3.6,
"cvss_exploitability_score": 3.9,
"cvss_severity": "HIGH",
"nvd_cwe_id": "CWE-190",
"cvss_vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"accessVector": "NETWORK",
"complexity": "LOW",
"availabilityImpact": "HIGH",
"integrityImpact": "NONE",
"confidentialityImpact": "NONE",
"allPriv": "0",
"userPriv": "0",
"otherPriv": "0",
"userInteractionRequired": "NONE",
"privilegesRequired": "NONE",
"u_sys_created": "2019-06-19T00:15:00",
"u_sys_updated": "2019-06-20T20:15:00",
"u_sfp_cluster": "CWE-998",
"u_old_cat": "Risky Values",
"u_new_cat": "Memory",
"u_other_cat": "Unchanged",
"u_product_type": null
},
{
"icsa_id": "ICSA-19-253-03",
"cwe_id": "CWE-400",
"cve_id": "CVE-2019-11478",
"cvss_version": "3",
"cve_description": "Jonathan Looney discovered that the TCP retransmission queue implementation in tcp_fragment in the Linux kernel could be fragmented when handling certain TCP Selective Acknowledgment (SACK) sequences. A remote attacker could use this to cause a denial of service. This has been fixed in stable kernel releases 4.4.182, 4.9.182, 4.14.127, 4.19.52, 5.1.11, and is fixed in commit f070ef2ac66716357066b683fb0baf55f8191a2e.",
"cvss_base_score": 7.5,
"cvss_impact_score": 3.6,
"cvss_exploitability_score": 3.9,
"cvss_severity": "HIGH",
"nvd_cwe_id": "CWE-400",
"cvss_vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"accessVector": "NETWORK",
"complexity": "LOW",
"availabilityImpact": "HIGH",
"integrityImpact": "NONE",
"confidentialityImpact": "NONE",
"allPriv": "0",
"userPriv": "0",
"otherPriv": "0",
"userInteractionRequired": "NONE",
"privilegesRequired": "NONE",
"u_sys_created": "2019-06-19T00:15:00",
"u_sys_updated": "2019-06-20T20:15:00",
"u_sfp_cluster": "CWE-985",
"u_old_cat": "Resource Management",
"u_new_cat": "Denial of Service",
"u_other_cat": "Unchanged",
"u_product_type": null
},
{
"icsa_id": "ICSA-19-253-03",
"cwe_id": "CWE-400",
"cve_id": "CVE-2019-11479",
"cvss_version": "3",
"cve_description": "Jonathan Looney discovered that the Linux kernel default MSS is hard-coded to 48 bytes. This allows a remote peer to fragment TCP resend queues significantly more than if a larger MSS were enforced. A remote attacker could use this to cause a denial of service. This has been fixed in stable kernel releases 4.4.182, 4.9.182, 4.14.127, 4.19.52, 5.1.11, and is fixed in commits 967c05aee439e6e5d7d805e195b3a20ef5c433d6 and 5f3e2bf008c2221478101ee72f5cb4654b9fc363.",
"cvss_base_score": 7.5,
"cvss_impact_score": 3.6,
"cvss_exploitability_score": 3.9,
"cvss_severity": "HIGH",
"nvd_cwe_id": "CWE-400",
"cvss_vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"accessVector": "NETWORK",
"complexity": "LOW",
"availabilityImpact": "HIGH",
"integrityImpact": "NONE",
"confidentialityImpact": "NONE",
"allPriv": "0",
"userPriv": "0",
"otherPriv": "0",
"userInteractionRequired": "NONE",
"privilegesRequired": "NONE",
"u_sys_created": "2019-06-19T00:15:00",
"u_sys_updated": "2019-06-20T20:15:00",
"u_sfp_cluster": "CWE-985",
"u_old_cat": "Resource Management",
"u_new_cat": "Denial of Service",
"u_other_cat": "Unchanged",
"u_product_type": "RTU"
},
{
"icsa_id": "ICSA-19-253-04",
"cwe_id": "CWE-79",
"cve_id": "CVE-2019-13923",
"cvss_version": "3",
"cve_description": "A vulnerability has been identified in IE/WSN-PA Link WirelessHART Gateway (All versions). The integrated configuration web server of the affected device could allow Cross-Site Scripting (XSS) attacks if unsuspecting users are tricked into accessing a malicious link. User interaction is required for a successful exploitation. The user must be logged into the web interface in order for the exploitation to succeed. At the stage of publishing this security advisory no public exploitation is known.",
"cvss_base_score": 9.6,
"cvss_impact_score": 6.0,
"cvss_exploitability_score": 2.8,
"cvss_severity": "CRITICAL",
"nvd_cwe_id": "CWE-79",
"cvss_vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H",
"accessVector": "NETWORK",
"complexity": "LOW",
"availabilityImpact": "HIGH",
"integrityImpact": "HIGH",
"confidentialityImpact": "HIGH",
"allPriv": "0",
"userPriv": "0",
"otherPriv": "0",
"userInteractionRequired": "REQUIRED",
"privilegesRequired": "NONE",
"u_sys_created": "2019-09-13T17:15:00",
"u_sys_updated": "2019-09-24T22:15:00",
"u_sfp_cluster": "CWE-990",
"u_old_cat": "Tainted Input",
"u_new_cat": "Web",
"u_other_cat": "Unchanged",
"u_product_type": null
},
{
"icsa_id": "ICSA-19-253-05",
"cwe_id": "CWE-20",
"cve_id": "CVE-2019-10937",
"cvss_version": "3",
"cve_description": "A vulnerability has been identified in SIMATIC TDC CP51M1 (All versions < V1.1.7). An attacker with network access to the device could cause a Denial-of-Service condition by sending a specially crafted UDP packet. The vulnerability affects the UDP communication of the device. The security vulnerability could be exploited without authentication. No user interaction is required to exploit this security vulnerability. Successful exploitation of the security vulnerability compromises availability of the targeted system. At the time of advisory publication no public exploitation of this security vulnerability was known.",
"cvss_base_score": 7.5,
"cvss_impact_score": 3.6,
"cvss_exploitability_score": 3.9,
"cvss_severity": "HIGH",
"nvd_cwe_id": "CWE-20",
"cvss_vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"accessVector": "NETWORK",
"complexity": "LOW",
"availabilityImpact": "HIGH",
"integrityImpact": "NONE",
"confidentialityImpact": "NONE",
"allPriv": "0",
"userPriv": "0",
"otherPriv": "0",
"userInteractionRequired": "NONE",
"privilegesRequired": "NONE",
"u_sys_created": "2019-09-13T17:15:00",
"u_sys_updated": "2019-09-24T20:15:00",
"u_sfp_cluster": "CWE-994",
"u_old_cat": "Tainted Input",
"u_new_cat": "Denial of Service",
"u_other_cat": "Unchanged",
"u_product_type": null
},
{
"icsa_id": "ICSA-19-304-01",
"cwe_id": "CWE-611",
"cve_id": "CVE-2019-18227",
"cvss_version": "3",
"cve_description": "Advantech WISE-PaaS/RMM, Versions 3.3.29 and prior. XXE vulnerabilities exist that may allow disclosure of sensitive data.",
"cvss_base_score": 7.5,
"cvss_impact_score": 3.6,
"cvss_exploitability_score": 3.9,
"cvss_severity": "HIGH",
"nvd_cwe_id": "CWE-611",
"cvss_vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
"accessVector": "NETWORK",
"complexity": "LOW",
"availabilityImpact": "NONE",
"integrityImpact": "NONE",
"confidentialityImpact": "HIGH",
"allPriv": "0",
"userPriv": "0",
"otherPriv": "0",
"userInteractionRequired": "NONE",
"privilegesRequired": "NONE",
"u_sys_created": "2019-10-31T22:15:00",
"u_sys_updated": "2019-11-04T14:53:00",
"u_sfp_cluster": "CWE-990",
"u_old_cat": "Tainted Input",
"u_new_cat": "Web",
"u_other_cat": "Unchanged",
"u_product_type": null
},
{
"icsa_id": "ICSA-20-014-06",
"cwe_id": "CWE-284",
"cve_id": "CVE-2019-18273",
"cvss_version": "3",
"cve_description": "OSIsoft PI Vision, PI Vision 2017 R2 and PI Vision 2017 R2 SP1. The affected product is vulnerable to cross-site scripting, which may allow invalid input to be introduced.",
"cvss_base_score": 4.8,
"cvss_impact_score": 2.7,
"cvss_exploitability_score": 1.7,
"cvss_severity": "MEDIUM",
"nvd_cwe_id": "CWE-79",
"cvss_vector": "CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:C/C:L/I:L/A:N",
"accessVector": "NETWORK",
"complexity": "LOW",
"availabilityImpact": "NONE",
"integrityImpact": "LOW",
"confidentialityImpact": "LOW",
"allPriv": "0",
"userPriv": "0",
"otherPriv": "0",
"userInteractionRequired": "REQUIRED",
"privilegesRequired": "HIGH",
"u_sys_created": "2020-01-15T19:15:00",
"u_sys_updated": "2020-01-23T20:56:00",
"u_sfp_cluster": "CWE-944",
"u_old_cat": "Access Control",
"u_new_cat": "Access Control",
"u_other_cat": "Unchanged",
"u_product_type": null
},
{
"icsa_id": "ICSA-19-253-06",
"cwe_id": "CWE-190",
"cve_id": "CVE-2017-9765",
"cvss_version": "3",
"cve_description": "Integer overflow in the soap_get function in Genivia gSOAP 2.7.x and 2.8.x before 2.8.48, as used on Axis cameras and other devices, allows remote attackers to execute arbitrary code or cause a denial of service (stack-based buffer overflow and application crash) via a large XML document, aka Devil's Ivy. NOTE: the large document would be blocked by many common web-server configurations on general-purpose computers.",
"cvss_base_score": 8.1,
"cvss_impact_score": 5.9,
"cvss_exploitability_score": 2.2,
"cvss_severity": "HIGH",
"nvd_cwe_id": "CWE-190",
"cvss_vector": "CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"accessVector": "NETWORK",
"complexity": "HIGH",
"availabilityImpact": "HIGH",
"integrityImpact": "HIGH",
"confidentialityImpact": "HIGH",
"allPriv": "0",
"userPriv": "0",
"otherPriv": "0",
"userInteractionRequired": "NONE",
"privilegesRequired": "NONE",
"u_sys_created": "2017-07-20T00:29:00",
"u_sys_updated": "2017-09-16T10:25:00",
"u_sfp_cluster": "CWE-998",
"u_old_cat": "Risky Values",
"u_new_cat": "Memory",
"u_other_cat": "Unchanged",
"u_product_type": null
},
{
"icsa_id": "ICSA-19-260-03",
"cwe_id": "CWE-200",
"cve_id": "CVE-2019-13523",
"cvss_version": "3",
"cve_description": "In Honeywell Performance IP Cameras and Performance NVRs, the integrated web server of the affected devices could allow remote attackers to obtain web configuration data in JSON format for IP cameras and NVRs (Network Video Recorders), which can be accessed without authentication over the network. Affected performance IP Cameras: HBD3PR2,H4D3PRV3,HED3PR3,H4D3PRV2,HBD3PR1,H4W8PR2,HBW8PR2,H2W2PC1M,H2W4PER3,H2W2PER3,HEW2PER3,HEW4PER3B,HBW2PER1,HEW4PER2,HEW4PER2B,HEW2PER2,H4W2PER2,HBW2PER2,H4W2PER3, and HPW2P1. Affected Performance Series NVRs: HEN08104,HEN08144,HEN081124,HEN16104,HEN16144,HEN16184,HEN16204,HEN162244,HEN16284,HEN16304,HEN16384,HEN32104,HEN321124,HEN32204,HEN32284,HEN322164,HEN32304, HEN32384,HEN323164,HEN64204,HEN64304,HEN643164,HEN643324,HEN643484,HEN04103,HEN04113,HEN04123,HEN08103,HEN08113,HEN08123,HEN08143,HEN16103,HEN16123,HEN16143,HEN16163,HEN04103L,HEN08103L,HEN16103L,HEN32103L.",
"cvss_base_score": 5.3,
"cvss_impact_score": 1.4,
"cvss_exploitability_score": 3.9,
"cvss_severity": "MEDIUM",
"nvd_cwe_id": "CWE-200",
"cvss_vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N",
"accessVector": "NETWORK",
"complexity": "LOW",
"availabilityImpact": "NONE",
"integrityImpact": "NONE",
"confidentialityImpact": "LOW",
"allPriv": "0",
"userPriv": "0",
"otherPriv": "0",
"userInteractionRequired": "NONE",
"privilegesRequired": "NONE",
"u_sys_created": "2019-09-26T16:15:00",
"u_sys_updated": "2019-10-09T23:46:00",
"u_sfp_cluster": "CWE-963",
"u_old_cat": "Information Leakage",
"u_new_cat": "Information Leakage",
"u_other_cat": "Unchanged",
"u_product_type": null
},
{
"icsa_id": "ICSA-19-274-01",
"cwe_id": "CWE-88",
"cve_id": "CVE-2019-12262",
"cvss_version": "3",
"cve_description": "Wind River VxWorks 6.6, 6.7, 6.8, 6.9 and 7 has Incorrect Access Control in the RARP client component. IPNET security vulnerability: Handling of unsolicited Reverse ARP replies (Logical Flaw).",
"cvss_base_score": 9.8,
"cvss_impact_score": 5.9,
"cvss_exploitability_score": 3.9,
"cvss_severity": "CRITICAL",
"nvd_cwe_id": "CWE-284",
"cvss_vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
"accessVector": "NETWORK",
"complexity": "LOW",
"availabilityImpact": "HIGH",
"integrityImpact": "HIGH",
"confidentialityImpact": "HIGH",
"allPriv": "0",
"userPriv": "0",
"otherPriv": "0",
"userInteractionRequired": "NONE",
"privilegesRequired": "NONE",
"u_sys_created": "2019-08-14T20:15:00",
"u_sys_updated": "2019-09-10T13:15:00",
"u_sfp_cluster": "CWE-990",
"u_old_cat": "Tainted Input",
"u_new_cat": "Web",
"u_other_cat": "Unchanged",
"u_product_type": null
},
{
"icsa_id": "ICSA-19-297-01",
"cwe_id": "CWE-798",
"cve_id": "CVE-2019-13553",
"cvss_version": "3",
"cve_description": "Rittal Chiller SK 3232-Series web interface as built upon Carel pCOWeb firmware A1.5.3 – B1.2.4. The authentication mechanism on affected systems is configured using hard-coded credentials. These credentials could allow attackers to influence the primary operations of the affected systems, namely turning the cooling unit on and off and setting the temperature set point.",
"cvss_base_score": 9.8,
"cvss_impact_score": 5.9,
"cvss_exploitability_score": 3.9,
"cvss_severity": "CRITICAL",
"nvd_cwe_id": "CWE-798",
"cvss_vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
"accessVector": "NETWORK",
"complexity": "LOW",
"availabilityImpact": "HIGH",
"integrityImpact": "HIGH",
"confidentialityImpact": "HIGH",
"allPriv": "0",
"userPriv": "0",
"otherPriv": "0",
"userInteractionRequired": "NONE",
"privilegesRequired": "NONE",
"u_sys_created": "2019-10-25T18:15:00",
"u_sys_updated": "2020-02-10T21:50:00",
"u_sfp_cluster": null,
"u_old_cat": "Authentication",
"u_new_cat": "Default Logins",
"u_other_cat": "Unchanged",
"u_product_type": null
},
{
"icsa_id": "ICSA-19-283-01",
"cwe_id": "CWE-20",
"cve_id": "CVE-2019-10923",
"cvss_version": "3",
"cve_description": "A vulnerability has been identified in CP1604 (All versions < V2.8), CP1616 (All versions < V2.8), Development/Evaluation Kits for PROFINET IO: DK Standard Ethernet Controller (All versions < V4.1.1 Patch 05), Development/Evaluation Kits for PROFINET IO: EK-ERTEC 200 (All versions < V4.5.0 Patch 01), Development/Evaluation Kits for PROFINET IO: EK-ERTEC 200P (All versions < V4.5.0), SCALANCE X-200IRT switch family (incl. SIPLUS NET variants) (All versions < V5.2.1), SIMATIC CP1604 (All versions < V2.8), SIMATIC CP1616 (All versions < V2.8), SIMATIC ET200M (incl. SIPLUS variants) (All versions), SIMATIC ET200S (incl. SIPLUS variants) (All versions), SIMATIC ET200ecoPN (except 6ES7148-6JD00-0AB0 and 6ES7146-6FF00-0AB0) (All versions), SIMATIC ET200pro (All versions), SIMATIC ET200pro (incl. SIPLUS variants) (All versions), SIMATIC PN/PN Coupler 6ES7158-3AD01-0XA0 (incl. SIPLUS NET variant) (All versions), SIMATIC S7-300 CPU family (incl. related ET200 CPUs and SIPLUS variants) (All versions < V3.X.17), SIMATIC S7-400 PN/DP V6 and below CPU family (incl. SIPLUS variants) (All versions), SIMATIC S7-400 PN/DP V7 CPU family (incl. SIPLUS variants) (All versions), SIMATIC WinAC RTX (F) 2010 (All versions < SIMATIC WinAC RTX 2010 SP3), SIMOTION (incl. SIPLUS variants) (All versions), SINAMICS DCM (All versions < V1.5 HF1), SINAMICS DCP (All versions < V1.3), SINAMICS G110M V4.7 Control Unit (All versions < V4.7 SP10 HF5), SINAMICS G120 V4.7 Control Unit (incl. SIPLUS variants) (All versions < V4.7 SP10 HF5), SINAMICS G130 V4.7 Control Unit (All versions < V4.7 HF29), SINAMICS G150 Control Unit (All versions < V4.8), SINAMICS GH150 V4.7 Control Unit (All versions), SINAMICS GL150 V4.7 Control Unit (All versions), SINAMICS GM150 V4.7 Control Unit (All versions), SINAMICS S110 Control Unit (All versions), SINAMICS S120 V4.7 Control Unit and CBE20 (incl. SIPLUS variants) (All versions < V4.7 HF34), SINAMICS S150 Control Unit (All versions < V4.8), SINAMICS SL150 V4.7 Control Unit (All versions < V4.7 HF33), SINAMICS SM120 V4.7 Control Unit (All versions), SINUMERIK 828D (All versions < V4.8 SP5), SINUMERIK 840D sl (All versions). An attacker with network access to an affected product may cause a Denial-of-Service condition by breaking the real-time synchronization (IRT) of the affected installation. The security vulnerability could be exploited by an unauthenticated attacker with network access to the affected installation. No user interaction is required to exploit this security vulnerability. The vulnerability impacts the availability of the affected installations.",
"cvss_base_score": 7.5,
"cvss_impact_score": 3.6,
"cvss_exploitability_score": 3.9,
"cvss_severity": "HIGH",
"nvd_cwe_id": "CWE-400",
"cvss_vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"accessVector": "NETWORK",
"complexity": "LOW",
"availabilityImpact": "HIGH",
"integrityImpact": "NONE",
"confidentialityImpact": "NONE",
"allPriv": "0",
"userPriv": "0",
"otherPriv": "0",
"userInteractionRequired": "NONE",
"privilegesRequired": "NONE",
"u_sys_created": "2019-10-10T14:15:00",
"u_sys_updated": "2020-03-10T20:15:00",
"u_sfp_cluster": "CWE-994",
"u_old_cat": "Tainted Input",
"u_new_cat": "Denial of Service",
"u_other_cat": "Unchanged",
"u_product_type": null
},
{
"icsa_id": "ICSA-19-330-01",
"cwe_id": "CWE-22",
"cve_id": "CVE-2019-18253",
"cvss_version": "3",
"cve_description": "An attacker could use specially crafted paths in a specific request to read or delete files from Relion 670 Series (versions 1p1r26, 1.2.3.17, 2.0.0.10, RES670 2.0.0.4, 2.1.0.1, and prior) outside the intended directory.",
"cvss_base_score": 10.0,
"cvss_impact_score": 6.0,
"cvss_exploitability_score": 3.9,
"cvss_severity": "CRITICAL",
"nvd_cwe_id": "CWE-22",
"cvss_vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H",
"accessVector": "NETWORK",
"complexity": "LOW",
"availabilityImpact": "HIGH",
"integrityImpact": "HIGH",
"confidentialityImpact": "HIGH",
"allPriv": "0",
"userPriv": "0",
"otherPriv": "0",
"userInteractionRequired": "NONE",
"privilegesRequired": "NONE",
"u_sys_created": "2019-11-27T23:15:00",
"u_sys_updated": "2019-12-17T17:27:00",
"u_sfp_cluster": "CWE-981",
"u_old_cat": "Path Resolution",
"u_new_cat": "Web",
"u_other_cat": "Unchanged",
"u_product_type": null
},
{
"icsa_id": "ICSA-19-227-04",
"cwe_id": "CWE-400",
"cve_id": "CVE-2019-6568",
"cvss_version": "3",
"cve_description": "A vulnerability has been identified in CP1604, CP1616, CP343-1 Advanced (incl. SIPLUS NET variants), CP443-1 (incl. SIPLUS NET variants), CP443-1 Advanced (incl. SIPLUS NET variants), CP443-1 OPC UA (incl. SIPLUS NET variants), RFID 181EIP, SIMATIC CP 1616 and CP 1604, SIMATIC CP 343-1 Advanced (incl. SIPLUS NET variants), SIMATIC CP 443-1 (incl. SIPLUS NET variants), SIMATIC CP 443-1 Advanced (incl. SIPLUS NET variants), SIMATIC CP 443-1 OPC UA, SIMATIC ET 200 SP Open Controller CPU 1515SP PC (incl. SIPLUS variants), SIMATIC ET 200 SP Open Controller CPU 1515SP PC2 (incl. SIPLUS variants), SIMATIC ET 200SP Open Controller CPU 1515SP PC (incl. SIPLUS variants), SIMATIC ET 200SP Open Controller CPU 1515SP PC2 (incl. SIPLUS variants), SIMATIC HMI Comfort Outdoor Panels 7\" & 15\" (incl. SIPLUS variants), SIMATIC HMI Comfort Panels 4\" - 22\" (incl. SIPLUS variants), SIMATIC HMI KTP Mobile Panels KTP400F, KTP700, KTP700F, KTP900 and KTP900F, SIMATIC HMI KTP Mobile Panels KTP400F, KTP700, KTP700F, KTP900 and KTP900F (incl. SIPLUS variants), SIMATIC IPC DiagMonitor, SIMATIC RF181-EIP, SIMATIC RF182C, SIMATIC RF185C, SIMATIC RF186C, SIMATIC RF188C, SIMATIC RF600 family, SIMATIC RF600R, SIMATIC S7-1500 CPU family (incl. related ET200 CPUs and SIPLUS variants), SIMATIC S7-1500 Software Controller, SIMATIC S7-300 CPU family (incl. related ET200 CPUs and SIPLUS variants), SIMATIC S7-400 PN/DP V6 and below CPU family (incl. SIPLUS variants), SIMATIC S7-400 PN/DP V7 CPU family (incl. SIPLUS variants), SIMATIC S7-PLCSIM Advanced, SIMATIC Teleservice Adapter IE Advanced, SIMATIC Teleservice Adapter IE Basic, SIMATIC Teleservice Adapter IE Standard, SIMATIC WinAC RTX (F) 2010, SIMATIC WinCC Runtime Advanced, SIMOCODE pro V EIP (incl. SIPLUS variants), SIMOCODE pro V PN (incl. SIPLUS variants), SINAMICS G130 V4.6 Control Unit, SINAMICS G130 V4.7 Control Unit, SINAMICS G130 V4.7 SP1 Control Unit, SINAMICS G130 V4.8 Control Unit, SINAMICS G130 V5.1 Control Unit, SINAMICS G130 V5.1 SP1 Control Unit, SINAMICS G150 V4.6 Control Unit, SINAMICS G150 V4.7 Control Unit, SINAMICS G150 V4.7 SP1 Control Unit, SINAMICS G150 V4.8 Control Unit, SINAMICS G150 V5.1 Control Unit, SINAMICS G150 V5.1 SP1 Control Unit, SINAMICS GH150 V4.7 (Control Unit), SINAMICS GH150 V4.8 (Control Unit), SINAMICS GL150 V4.7 (Control Unit), SINAMICS GL150 V4.8 (Control Unit), SINAMICS GM150 V4.7 (Control Unit), SINAMICS GM150 V4.8 (Control Unit), SINAMICS S120 V4.6 Control Unit (incl. SIPLUS variants), SINAMICS S120 V4.7 Control Unit (incl. SIPLUS variants), SINAMICS S120 V4.7 SP1 Control Unit (incl. SIPLUS variants), SINAMICS S120 V4.8 Control Unit (incl. SIPLUS variants), SINAMICS S120 V5.1 Control Unit (incl. SIPLUS variants), SINAMICS S120 V5.1 SP1 Control Unit (incl. SIPLUS variants), SINAMICS S150 V4.6 Control Unit, SINAMICS S150 V4.7 Control Unit, SINAMICS S150 V4.7 SP1 Control Unit, SINAMICS S150 V4.8 Control Unit, SINAMICS S150 V5.1 Control Unit, SINAMICS S150 V5.1 SP1 Control Unit, SINAMICS S210 V5.1 Control Unit, SINAMICS S210 V5.1 SP1 Control Unit, SINAMICS SL150 V4.7 (Control Unit), SINAMICS SL150 V4.8 (Control Unit), SINAMICS SM120 V4.7 (Control Unit), SINAMICS SM120 V4.8 (Control Unit), SINAMICS SM150 V4.8 (Control Unit), SITOP Manager, SITOP PSU8600, SITOP UPS1600 (incl. SIPLUS variants), TIM 1531 IRC (incl. SIPLUS NET variants), TIM 1531 IRC (incl. SIPLUS variants). The webserver of the affected devices contains a vulnerability that may lead to a denial-of-service condition. An attacker may cause a denial-of-service situation which leads to a restart of the webserver of the affected device. The security vulnerability could be exploited by an attacker with network access to the affected systems. Successful exploitation requires no system privileges and no user interaction. An attacker could use the vulnerability to compromise availability of the device. At the time of advisory publication no public exploitation of this security vulnerability was known.",
"cvss_base_score": 7.5,
"cvss_impact_score": 3.6,
"cvss_exploitability_score": 3.9,
"cvss_severity": "HIGH",
"nvd_cwe_id": "CWE-20",
"cvss_vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"accessVector": "NETWORK",
"complexity": "LOW",
"availabilityImpact": "HIGH",
"integrityImpact": "NONE",
"confidentialityImpact": "NONE",
"allPriv": "0",
"userPriv": "0",
"otherPriv": "0",
"userInteractionRequired": "NONE",
"privilegesRequired": "NONE",
"u_sys_created": "2019-04-17T14:29:00",
"u_sys_updated": "2020-02-11T16:15:00",
"u_sfp_cluster": "CWE-985",
"u_old_cat": "Resource Management",
"u_new_cat": "Denial of Service",
"u_other_cat": "Unchanged",
"u_product_type": "HMI"
},
{
"icsa_id": "ICSA-19-344-01",
"cwe_id": "CWE-924",
"cve_id": "CVE-2018-14526",
"cvss_version": "3",
"cve_description": "An issue was discovered in rsn_supp/wpa.c in wpa_supplicant 2.0 through 2.6. Under certain conditions, the integrity of EAPOL-Key messages is not checked, leading to a decryption oracle. An attacker within range of the Access Point and client can abuse the vulnerability to recover sensitive information.",
"cvss_base_score": 6.5,
"cvss_impact_score": 3.6,
"cvss_exploitability_score": 2.8,
"cvss_severity": "MEDIUM",
"nvd_cwe_id": "CWE-924",
"cvss_vector": "CVSS:3.0/AV:A/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
"accessVector": "ADJACENT_NETWORK",
"complexity": "LOW",
"availabilityImpact": "NONE",
"integrityImpact": "NONE",
"confidentialityImpact": "HIGH",
"allPriv": "0",
"userPriv": "0",
"otherPriv": "0",
"userInteractionRequired": "NONE",
"privilegesRequired": "NONE",
"u_sys_created": "2018-08-08T19:29:00",
"u_sys_updated": "2019-10-03T00:03:00",
"u_sfp_cluster": null,
"u_old_cat": "Other",
"u_new_cat": "Cryptography",
"u_other_cat": "Unchanged",
"u_product_type": null
},
{
"icsa_id": "ICSA-19-344-02",
"cwe_id": "CWE-749",
"cve_id": "CVE-2019-18340",
"cvss_version": "3",
"cve_description": "A vulnerability has been identified in SiNVR 3 Central Control Server (CCS) (all versions), SiNVR 3 Video Server (all versions). Both the SiNVR 3 Video Server and the Central Control Server (CCS) store user and device passwords by applying weak cryptography. A local attacker could exploit this vulnerability to extract the passwords from the user database and/or the device configuration files to conduct further attacks.",
"cvss_base_score": 5.5,
"cvss_impact_score": 3.6,
"cvss_exploitability_score": 1.8,
"cvss_severity": "MEDIUM",
"nvd_cwe_id": "CWE-200",
"cvss_vector": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N",
"accessVector": "LOCAL",
"complexity": "LOW",
"availabilityImpact": "NONE",
"integrityImpact": "NONE",
"confidentialityImpact": "HIGH",
"allPriv": "0",
"userPriv": "0",
"otherPriv": "0",
"userInteractionRequired": "NONE",
"privilegesRequired": "LOW",
"u_sys_created": "2019-12-12T19:15:00",
"u_sys_updated": "2019-12-18T00:06:00",
"u_sfp_cluster": "CWE-975",
"u_old_cat": "Other",
"u_new_cat": "Cryptography",
"u_other_cat": "Unchanged",
"u_product_type": null
},
{
"icsa_id": "ICSA-19-351-01",
"cwe_id": "CWE-79",
"cve_id": "CVE-2019-18267",
"cvss_version": "3",
"cve_description": "An issue was found in GE S2020/S2020G Fast Switch 61850, S2020/S2020G Fast Switch 61850 Versions 07A03 and prior. An attacker can inject arbitrary Javascript in a specially crafted HTTP request that may be reflected back in the HTTP response. The device is also vulnerable to a stored cross-site scripting vulnerability that may allow session hijacking, disclosure of sensitive data, cross-site request forgery (CSRF) attacks, and remote code execution.",
"cvss_base_score": 5.4,
"cvss_impact_score": 2.7,
"cvss_exploitability_score": 2.3,
"cvss_severity": "MEDIUM",
"nvd_cwe_id": "CWE-79",
"cvss_vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N",
"accessVector": "NETWORK",
"complexity": "LOW",
"availabilityImpact": "NONE",
"integrityImpact": "LOW",
"confidentialityImpact": "LOW",
"allPriv": "0",
"userPriv": "0",
"otherPriv": "0",
"userInteractionRequired": "REQUIRED",
"privilegesRequired": "LOW",
"u_sys_created": "2019-12-18T20:15:00",
"u_sys_updated": "2020-01-07T18:33:00",
"u_sfp_cluster": "CWE-990",
"u_old_cat": "Tainted Input",
"u_new_cat": "Web",
"u_other_cat": "Unchanged",
"u_product_type": null
},
{
"icsa_id": "ICSA-19-351-02",
"cwe_id": "CWE-190",
"cve_id": "CVE-2019-18299",
"cvss_version": "3",
"cve_description": "A vulnerability has been identified in SPPA-T3000 MS3000 Migration Server (All versions). An attacker with network access to the MS3000 Server can trigger a Denial-of-Service condition by sending specifically crafted packets to port 5010/tcp. This vulnerability is independent from CVE-2019-18290, CVE-2019-18291, CVE-2019-18292, CVE-2019-18294, CVE-2019-18298, CVE-2019-18300, CVE-2019-18301, CVE-2019-18302, CVE-2019-18303, CVE-2019-18304, CVE-2019-18305, CVE-2019-18306, and CVE-2019-18307. Please note that an attacker needs to have network access to the MS3000 in order to exploit this vulnerability. At the time of advisory publication no public exploitation of this security vulnerability was known.",
"cvss_base_score": 7.5,
"cvss_impact_score": 3.6,
"cvss_exploitability_score": 3.9,
"cvss_severity": "HIGH",
"nvd_cwe_id": "CWE-190",
"cvss_vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"accessVector": "NETWORK",
"complexity": "LOW",
"availabilityImpact": "HIGH",
"integrityImpact": "NONE",
"confidentialityImpact": "NONE",
"allPriv": "0",
"userPriv": "0",
"otherPriv": "0",
"userInteractionRequired": "NONE",
"privilegesRequired": "NONE",
"u_sys_created": "2019-12-12T19:15:00",
"u_sys_updated": "2019-12-18T15:09:00",
"u_sfp_cluster": "CWE-998",
"u_old_cat": "Risky Values",
"u_new_cat": "Memory",
"u_other_cat": "Unchanged",
"u_product_type": null
},
{
"icsa_id": "ICSA-19-351-02",
"cwe_id": "CWE-190",
"cve_id": "CVE-2019-18305",
"cvss_version": "3",
"cve_description": "A vulnerability has been identified in SPPA-T3000 MS3000 Migration Server (All versions). An attacker with network access to the MS3000 Server could trigger a Denial-of-Service condition by sending specifically crafted packets to port 5010/tcp. This vulnerability is independent from CVE-2019-18290, CVE-2019-18291, CVE-2019-18292, CVE-2019-18294, CVE-2019-18298, CVE-2019-18299, CVE-2019-18300, CVE-2019-18301, CVE-2019-18302, CVE-2019-18303, CVE-2019-18304, CVE-2019-18306, and CVE-2019-18307. Please note that an attacker needs to have network access to the MS3000 in order to exploit this vulnerability. At the time of advisory publication no public exploitation of this security vulnerability was known.",
"cvss_base_score": 7.5,
"cvss_impact_score": 3.6,
"cvss_exploitability_score": 3.9,
"cvss_severity": "HIGH",
"nvd_cwe_id": "CWE-190",
"cvss_vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"accessVector": "NETWORK",
"complexity": "LOW",
"availabilityImpact": "HIGH",
"integrityImpact": "NONE",
"confidentialityImpact": "NONE",
"allPriv": "0",
"userPriv": "0",
"otherPriv": "0",
"userInteractionRequired": "NONE",
"privilegesRequired": "NONE",
"u_sys_created": "2019-12-12T19:15:00",
"u_sys_updated": "2019-12-17T19:39:00",
"u_sfp_cluster": "CWE-998",
"u_old_cat": "Risky Values",
"u_new_cat": "Memory",
"u_other_cat": "Unchanged",
"u_product_type": null
},
{
"icsa_id": "ICSA-19-353-01",
"cwe_id": "CWE-400",
"cve_id": "CVE-2019-19707",
"cvss_version": "3",
"cve_description": "On Moxa EDS-G508E, EDS-G512E, and EDS-G516E devices (with firmware through 6.0), denial of service can occur via PROFINET DCE-RPC endpoint discovery packets.",
"cvss_base_score": 7.5,
"cvss_impact_score": 3.6,
"cvss_exploitability_score": 3.9,
"cvss_severity": "HIGH",
"nvd_cwe_id": "NVD-CWE-noinfo",
"cvss_vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"accessVector": "NETWORK",
"complexity": "LOW",
"availabilityImpact": "HIGH",
"integrityImpact": "NONE",
"confidentialityImpact": "NONE",
"allPriv": "0",
"userPriv": "0",
"otherPriv": "0",
"userInteractionRequired": "NONE",
"privilegesRequired": "NONE",
"u_sys_created": "2019-12-11T02:15:00",
"u_sys_updated": "2019-12-17T17:46:00",
"u_sfp_cluster": "CWE-985",
"u_old_cat": "Resource Management",
"u_new_cat": "Denial of Service",
"u_other_cat": "Unchanged",
"u_product_type": null
},
{
"icsa_id": "ICSA-19-353-02",
"cwe_id": "CWE-89",
"cve_id": "CVE-2019-18234",
"cvss_version": "3",
"cve_description": "Equinox Control Expert all versions, is vulnerable to an SQL injection attack, which may allow an attacker to remotely execute arbitrary code.",
"cvss_base_score": 9.8,
"cvss_impact_score": 5.9,
"cvss_exploitability_score": 3.9,
"cvss_severity": "CRITICAL",
"nvd_cwe_id": "CWE-89",
"cvss_vector": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
"accessVector": "NETWORK",
"complexity": "LOW",
"availabilityImpact": "HIGH",
"integrityImpact": "HIGH",
"confidentialityImpact": "HIGH",
"allPriv": "0",
"userPriv": "0",
"otherPriv": "0",
"userInteractionRequired": "NONE",
"privilegesRequired": "NONE",
"u_sys_created": "2019-12-23T19:15:00",
"u_sys_updated": "2019-12-30T16:38:00",
"u_sfp_cluster": "CWE-990",
"u_old_cat": "Tainted Input",
"u_new_cat": "Web",
"u_other_cat": "Unchanged",
"u_product_type": null
},
{
"icsa_id": "ICSA-19-190-01",
"cwe_id": "CWE-798",
"cve_id": "CVE-2018-11691",
"cvss_version": "3",
"cve_description": "Emerson DeltaV Smart Switch Command Center application, available in versions 11.3.x and 12.3.1, was unable to change the DeltaV Smart Switches’ management password upon commissioning. Emerson released patches for DeltaV workstations to address this issue, and the patches can be downloaded from Emerson’s Guardian Support Portal. Please refer to the DeltaV Security Notification DSN19003 (KBA NK-1900-0808) for more information about this issue. DeltaV versions 13.3 and higher use the Network Device Command Center application to manage DeltaV Smart Switches, and this newer application is not impacted by this issue. After patching the Smart Switch Command Center, users are required to either commission the DeltaV Smart Switches or change password using the tool.",
"cvss_base_score": 9.8,
"cvss_impact_score": 5.9,
"cvss_exploitability_score": 3.9,
"cvss_severity": "CRITICAL",
"nvd_cwe_id": "CWE-798",
"cvss_vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
"accessVector": "NETWORK",
"complexity": "LOW",
"availabilityImpact": "HIGH",
"integrityImpact": "HIGH",
"confidentialityImpact": "HIGH",
"allPriv": "0",
"userPriv": "0",
"otherPriv": "0",
"userInteractionRequired": "NONE",
"privilegesRequired": "NONE",
"u_sys_created": "2019-05-14T16:29:00",
"u_sys_updated": "2020-02-10T21:43:00",
"u_sfp_cluster": null,
"u_old_cat": "Authentication",
"u_new_cat": "Default Logins",
"u_other_cat": "Unchanged",
"u_product_type": null
},
{
"icsa_id": "ICSA-19-190-02",
"cwe_id": "CWE-284",
"cve_id": "CVE-2019-10970",
"cvss_version": "3",
"cve_description": "In Rockwell Automation PanelView 5510 (all versions manufactured before March 13, 2019 that have never been updated to v4.003, v5.002, or later), a remote, unauthenticated threat actor with access to an affected PanelView 5510 Graphic Display, upon successful exploit, may boot-up the terminal and gain root-level access to the device’s file system.",
"cvss_base_score": 9.8,
"cvss_impact_score": 5.9,
"cvss_exploitability_score": 3.9,
"cvss_severity": "CRITICAL",
"nvd_cwe_id": "CWE-284",
"cvss_vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
"accessVector": "NETWORK",
"complexity": "LOW",
"availabilityImpact": "HIGH",
"integrityImpact": "HIGH",
"confidentialityImpact": "HIGH",
"allPriv": "0",
"userPriv": "0",
"otherPriv": "0",
"userInteractionRequired": "NONE",
"privilegesRequired": "NONE",
"u_sys_created": "2019-07-11T20:15:00",
"u_sys_updated": "2020-02-10T21:49:00",
"u_sfp_cluster": "CWE-944",
"u_old_cat": "Access Control",
"u_new_cat": "Access Control",
"u_other_cat": "Unchanged",
"u_product_type": null
},
{
"icsa_id": "ICSA-19-190-03",
"cwe_id": "CWE-416",
"cve_id": "CVE-2019-6822",
"cvss_version": "3",
"cve_description": "A Use After Free: CWE-416 vulnerability exists in Zelio Soft 2, V5.2 and earlier, which could cause remote code execution when opening a specially crafted Zelio Soft 2 project file.",
"cvss_base_score": 7.8,
"cvss_impact_score": 5.9,
"cvss_exploitability_score": 1.8,
"cvss_severity": "HIGH",
"nvd_cwe_id": "CWE-416",
"cvss_vector": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H",
"accessVector": "LOCAL",
"complexity": "LOW",
"availabilityImpact": "HIGH",
"integrityImpact": "HIGH",
"confidentialityImpact": "HIGH",
"allPriv": "0",
"userPriv": "0",
"otherPriv": "0",
"userInteractionRequired": "REQUIRED",
"privilegesRequired": "NONE",
"u_sys_created": "2019-07-15T21:15:00",
"u_sys_updated": "2019-07-22T20:15:00",
"u_sfp_cluster": "CWE-983",
"u_old_cat": "Resource Management",
"u_new_cat": "Memory",
"u_other_cat": "Unchanged",
"u_product_type": null
},
{
"icsa_id": "ICSA-19-190-04",
"cwe_id": "CWE-79",
"cve_id": "CVE-2019-10933",
"cvss_version": "3",
"cve_description": "A vulnerability has been identified in Spectrum Power 3 (Corporate User Interface) (All versions <= v3.11), Spectrum Power 4 (Corporate User Interface) (Version v4.75), Spectrum Power 5 (Corporate User Interface) (All versions < v5.50), Spectrum Power 7 (Corporate User Interface) (All versions <= v2.20). The web server could allow Cross-Site Scripting (XSS) attacks if unsuspecting users are tricked into accessing a malicious link. User interaction is required for a successful exploitation. The user does not need to be logged into the web interface in order for the exploitation to succeed.At the stage of publishing this security advisory no public exploitation is known.",
"cvss_base_score": 6.1,
"cvss_impact_score": 2.7,
"cvss_exploitability_score": 2.8,
"cvss_severity": "MEDIUM",
"nvd_cwe_id": "CWE-79",
"cvss_vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N",
"accessVector": "NETWORK",
"complexity": "LOW",
"availabilityImpact": "NONE",
"integrityImpact": "LOW",
"confidentialityImpact": "LOW",
"allPriv": "0",
"userPriv": "0",
"otherPriv": "0",
"userInteractionRequired": "REQUIRED",
"privilegesRequired": "NONE",
"u_sys_created": "2019-07-11T22:15:00",
"u_sys_updated": "2019-08-13T20:15:00",
"u_sfp_cluster": "CWE-990",
"u_old_cat": "Tainted Input",
"u_new_cat": "Web",
"u_other_cat": "Unchanged",
"u_product_type": null
},
{
"icsa_id": "ICSA-19-190-05",
"cwe_id": "CWE-20",
"cve_id": "CVE-2019-10931",
"cvss_version": "3",
"cve_description": "A vulnerability has been identified in All other SIPROTEC 5 device types with CPU variants CP300 and CP100 and the respective Ethernet communication modules (All versions ), DIGSI 5 engineering software (All versions < V7.90), SIPROTEC 5 device types 6MD85, 6MD86, 6MD89, 7UM85, 7SA87, 7SD87, 7SL87, 7VK87, 7SA82, 7SA86, 7SD82, 7SD86, 7SL82, 7SL86, 7SJ86, 7SK82, 7SK85, 7SJ82, 7SJ85, 7UT82, 7UT85, 7UT86, 7UT87 and 7VE85 with CPU variants CP300 and CP100 and the respective Ethernet communication modules (All versions < V7.90), SIPROTEC 5 relays with CPU variants CP200 and the respective Ethernet communication modules (All versions < V7.59). Specially crafted packets sent to port 443/TCP could cause a Denial of Service condition.",
"cvss_base_score": 7.5,
"cvss_impact_score": 3.6,
"cvss_exploitability_score": 3.9,
"cvss_severity": "HIGH",
"nvd_cwe_id": "CWE-20",
"cvss_vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"accessVector": "NETWORK",
"complexity": "LOW",
"availabilityImpact": "HIGH",
"integrityImpact": "NONE",
"confidentialityImpact": "NONE",
"allPriv": "0",
"userPriv": "0",
"otherPriv": "0",
"userInteractionRequired": "NONE",
"privilegesRequired": "NONE",
"u_sys_created": "2019-07-11T22:15:00",
"u_sys_updated": "2019-12-12T19:15:00",
"u_sfp_cluster": "CWE-994",
"u_old_cat": "Tainted Input",
"u_new_cat": "Denial of Service",
"u_other_cat": "Unchanged",
"u_product_type": null
},
{
"icsa_id": "ICSA-19-190-05",
"cwe_id": "CWE-20",
"cve_id": "CVE-2019-10930",
"cvss_version": "3",
"cve_description": "A vulnerability has been identified in All other SIPROTEC 5 device types with CPU variants CP300 and CP100 and the respective Ethernet communication modules (All versions ), DIGSI 5 engineering software (All versions < V7.90), SIPROTEC 5 device types 6MD85, 6MD86, 6MD89, 7UM85, 7SA87, 7SD87, 7SL87, 7VK87, 7SA82, 7SA86, 7SD82, 7SD86, 7SL82, 7SL86, 7SJ86, 7SK82, 7SK85, 7SJ82, 7SJ85, 7UT82, 7UT85, 7UT86, 7UT87 and 7VE85 with CPU variants CP300 and CP100 and the respective Ethernet communication modules (All versions < V7.90), SIPROTEC 5 relays with CPU variants CP200 and the respective Ethernet communication modules (All versions). A remote attacker could use specially crafted packets sent to port 443/TCP to upload, download or delete files in certain parts of the file system.",
"cvss_base_score": 7.5,
"cvss_impact_score": 3.6,
"cvss_exploitability_score": 3.9,
"cvss_severity": "HIGH",
"nvd_cwe_id": "CWE-434",
"cvss_vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N",
"accessVector": "NETWORK",
"complexity": "LOW",
"availabilityImpact": "NONE",
"integrityImpact": "HIGH",
"confidentialityImpact": "NONE",
"allPriv": "0",
"userPriv": "0",
"otherPriv": "0",
"userInteractionRequired": "NONE",
"privilegesRequired": "NONE",
"u_sys_created": "2019-07-11T22:15:00",
"u_sys_updated": "2019-12-12T19:15:00",
"u_sfp_cluster": "CWE-994",
"u_old_cat": "Tainted Input",
"u_new_cat": "Denial of Service",
"u_other_cat": "Unchanged",
"u_product_type": null
},
{
"icsa_id": "ICSA-19-190-05",
"cwe_id": "CWE-20",
"cve_id": "CVE-2019-10930",
"cvss_version": "3",
"cve_description": "A vulnerability has been identified in All other SIPROTEC 5 device types with CPU variants CP300 and CP100 and the respective Ethernet communication modules (All versions ), DIGSI 5 engineering software (All versions < V7.90), SIPROTEC 5 device types 6MD85, 6MD86, 6MD89, 7UM85, 7SA87, 7SD87, 7SL87, 7VK87, 7SA82, 7SA86, 7SD82, 7SD86, 7SL82, 7SL86, 7SJ86, 7SK82, 7SK85, 7SJ82, 7SJ85, 7UT82, 7UT85, 7UT86, 7UT87 and 7VE85 with CPU variants CP300 and CP100 and the respective Ethernet communication modules (All versions < V7.90), SIPROTEC 5 relays with CPU variants CP200 and the respective Ethernet communication modules (All versions). A remote attacker could use specially crafted packets sent to port 443/TCP to upload, download or delete files in certain parts of the file system.",
"cvss_base_score": 7.5,
"cvss_impact_score": 3.6,
"cvss_exploitability_score": 3.9,