-
Notifications
You must be signed in to change notification settings - Fork 17
/
desc-nlp-io.json
2732 lines (2732 loc) · 82.7 KB
/
desc-nlp-io.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
{
"Mimo Baby 2": [
{
"id": "CVE-2018-10825",
"cleaned_description": "mimo babi 2 devic use authent encrypt bluetooth low energi ble commun turtl lilypad allow attack inject fake inform posit temperatur babi via replay spoof attack",
"sorted_tokens": [
"babi",
"temperatur",
"turtl",
"inject",
"low",
"commun",
"mimo",
"inform",
"attack",
"energi",
"bluetooth",
"encrypt",
"via",
"posit",
"ble",
"replay",
"authent",
"use",
"spoof",
"allow",
"fake",
"devic",
"babi",
"2",
"lilypad"
],
"nlp i/o": ["no authentication->spoofing attack"],
"description": "Mimo Baby 2 devices do not use authentication or encryption for the Bluetooth Low Energy (BLE) communication from a Turtle to a Lilypad, which allows attackers to inject fake information about the position and temperature of a baby via a replay or spoofing attack.",
"i/o": []
}
],
"Roku Media Player": [
{
"id": "CVE-2018-11314",
"cleaned_description": "extern control api roku roku tv product allow unauthor access via dn rebind attack result remot devic control privileg devic network inform exfiltr attack",
"sorted_tokens": [
"roku",
"roku",
"control",
"control",
"tv",
"devic",
"devic",
"extern",
"exfiltr",
"result",
"unauthor",
"product",
"dn",
"rebind",
"privileg",
"network",
"api",
"attack",
"attack",
"access",
"inform",
"via",
"remot",
"allow"
],
"nlp i/o": ["DNS Rebinding->Roku:Root Privileges"],
"description": "The External Control API in Roku and Roku TV products allow unauthorized access via a DNS Rebind attack. This can result in remote device control and privileged device and network information to be exfiltrated by an attacker.",
"i/o": [
"DNS Rebinding->this:Root Priv",
"DNS Rebinding->this:Config File"
]
}
],
"Hoermann BiSecur": [
{
"id": "CVE-2015-7908",
"cleaned_description": "hoermann bisecur devic 2018 vulner exploit record singl radio transmiss attack intercept arbitrari radio frame exchang bisecur transmitt receiv obtain encrypt packet 32bit serial number intercept onetim pair process specif requir due use aes128 initi static random valu static data vector static inform across differ custom instal attack easili deriv util encrypt key decrypt intercept packet key verifi decrypt intercept packet check known plaintext subsequ attack creat arbitrari radio frame correct encrypt key control bisecur garag entranc gate oper possibl bisecur system well wireless clone conduct attack low cost softwar defin radio sdr suffici affect hoermann hand transmitt hs5868b hse1868b hse2868b devic",
"sorted_tokens": [
"bisecur",
"intercept",
"intercept",
"intercept",
"bisecur",
"bisecur",
"intercept",
"bisecur",
"radio",
"radio",
"radio",
"radio",
"static",
"packet",
"packet",
"static",
"static",
"packet",
"key",
"key",
"key",
"encrypt",
"encrypt",
"encrypt",
"transmitt",
"frame",
"frame",
"hoermann",
"transmitt",
"hoermann",
"decrypt",
"decrypt",
"arbitrari",
"arbitrari",
"attack",
"attack",
"attack",
"attack",
"random",
"serial",
"exchang",
"32bit",
"hse2868b",
"onetim",
"aes128",
"deriv",
"differ",
"across",
"initi",
"util",
"gate",
"entranc",
"known",
"clone",
"plaintext",
"hse1868b",
"sdr",
"subsequ",
"well",
"check",
"correct",
"suffici",
"hand",
"cost",
"hs5868b",
"garag",
"devic",
"devic",
"transmiss",
"receiv",
"softwar",
"defin",
"easili",
"custom",
"creat",
"number",
"singl",
"possibl",
"pair",
"specif",
"requir",
"due",
"record",
"low",
"2018",
"verifi",
"conduct",
"oper",
"vector",
"instal",
"wireless",
"affect",
"system",
"process",
"data",
"control",
"obtain",
"inform",
"use",
"valu",
"exploit",
"vulner"
],
"nlp i/o": ["Unprotected Expose->Private Key"],
"description": "On Hoermann BiSecur devices before 2018, a vulnerability can be exploited by recording a single radio transmission. An attacker can intercept an arbitrary radio frame exchanged between a BiSecur transmitter and a receiver to obtain the encrypted packet and the 32-bit serial number. The interception of the one-time pairing process is specifically not required. Due to use of AES-128 with an initial static random value and static data vector (all of this static information is the same across different customers' installations), the attacker can easily derive the utilized encryption key and decrypt the intercepted packet. The key can be verified by decrypting the intercepted packet and checking for known plaintext. Subsequently, an attacker can create arbitrary radio frames with the correct encryption key to control BiSecur garage and entrance gate operators and possibly other BiSecur systems as well (\"wireless cloning\"). To conduct the attack, a low cost Software Defined Radio (SDR) is sufficient. This affects Hoermann Hand Transmitter HS5-868-BS, HSE1-868-BS, and HSE2-868-BS devices.",
"i/o": []
}
],
"Insteon Hub": [
{
"id": "CVE-2017-5251",
"cleaned_description": "version 1012 prior insteon insteon hub radio transmiss use commun hub connect devic encrypt",
"sorted_tokens": [
"insteon",
"insteon",
"1012",
"hub",
"hub",
"transmiss",
"commun",
"radio",
"prior",
"encrypt",
"connect",
"use",
"devic",
"version"
],
"nlp i/o": ["Unprotected Expose->Credentials"],
"description": "In version 1012 and prior of Insteon's Insteon Hub, the radio transmissions used for communication between the hub and connected devices are not encrypted.",
"i/o": []
},
{
"id": "CVE-2017-5250",
"cleaned_description": "version 197 prior insteon insteon hub android app oauth token use app author user access store encrypt secur manner",
"sorted_tokens": [
"insteon",
"insteon",
"app",
"app",
"197",
"manner",
"oauth",
"token",
"author",
"store",
"prior",
"secur",
"user",
"encrypt",
"android",
"access",
"use",
"hub",
"version"
],
"nlp i/o": ["Credentials->Insteon:Account Access"],
"description": "In version 1.9.7 and prior of Insteon's Insteon for Hub Android app, the OAuth token used by the app to authorize user access is not stored in an encrypted and secure manner.",
"i/o": []
}
],
"Ring": [
{
"id": "CVE-2015-4400",
"cleaned_description": "ring formerli doorbot video doorbel allow remot attack obtain sensit inform wireless network configur press set button leverag api gainspan wifi modul",
"sorted_tokens": [
"ring",
"doorbel",
"gainspan",
"formerli",
"doorbot",
"button",
"video",
"press",
"modul",
"leverag",
"wireless",
"configur",
"network",
"wifi",
"api",
"sensit",
"set",
"obtain",
"inform",
"remot",
"allow",
"attack"
],
"nlp i/o": ["Unprotected Expose->Credentials"],
"description": "Ring (formerly DoorBot) video doorbells allow remote attackers to obtain sensitive information about the wireless network configuration by pressing the set up button and leveraging an API in the GainSpan Wi-Fi module.",
"i/o": []
}
],
"Philips In.Sight": [
{
"id": "CVE-2015-2884",
"cleaned_description": "philip insight b12037 allow remot attack obtain sensit inform via direct request relat yoicsnet url streamm3u8 uri camserviceenablecgi",
"sorted_tokens": [
"camserviceenablecgi",
"uri",
"streamm3u8",
"yoicsnet",
"direct",
"url",
"b12037",
"insight",
"philip",
"relat",
"sensit",
"obtain",
"request",
"inform",
"via",
"remot",
"allow",
"attack"
],
"nlp i/o": ["Unprotected Expose->Credentials"],
"description": "Philips In.Sight B120/37 allows remote attackers to obtain sensitive information via a direct request, related to yoics.net URLs, stream.m3u8 URIs, and cam_service_enable.cgi.",
"i/o": [
"Unprotected Expose->Credentials"
]
},
{
"id": "CVE-2015-2883",
"cleaned_description": "philip insight b12037 xss relat weav cloud web servic demonstr name paramet devicesettingsphp sharedevicephp",
"sorted_tokens": [
"sharedevicephp",
"devicesettingsphp",
"weav",
"demonstr",
"cloud",
"paramet",
"b12037",
"name",
"xss",
"insight",
"philip",
"web",
"relat",
"servic"
],
"nlp i/o": ["name parameter->devicesettings.php"],
"description": "Philips In.Sight B120/37 has XSS, related to the Weaved cloud web service, as demonstrated by the name parameter to deviceSettings.php or shareDevice.php.",
"i/o": [
"XSS->Cookies",
"XSS->Credentials"
]
},
{
"id": "CVE-2015-2882",
"cleaned_description": "philip insight b12037 password b120root backdoor root account password admin backdoor admin account password merlin backdoor mg3500 account password m1004674448 backdoor user account password m1004674448 backdoor admin account",
"sorted_tokens": [
"backdoor",
"backdoor",
"backdoor",
"backdoor",
"backdoor",
"account",
"account",
"account",
"account",
"account",
"password",
"password",
"password",
"password",
"password",
"admin",
"admin",
"admin",
"m1004674448",
"m1004674448",
"merlin",
"mg3500",
"b120root",
"b12037",
"root",
"insight",
"philip",
"user"
],
"nlp i/o": ["Unprotected Expose->In.Sight:Root Privileges"],
"description": "Philips In.Sight B120/37 has a password of b120root for the backdoor root account, a password of /ADMIN/ for the backdoor admin account, a password of merlin for the backdoor mg3500 account, a password of M100-4674448 for the backdoor user account, and a password of M100-4674448 for the backdoor admin account.",
"i/o": [
"Unprotected Expose->this:Root Privileges"
]
}
],
"HP Inkjet": [
{
"id": "Non-CVE info: HP Inkjet",
"description": "Non-CVE I/O",
"cleaned_description": "noncv io",
"i/o": [
"HP Inkjet:Root Privileges->Privacy Breach"
],
"sorted_tokens": [
"noncv",
"io"
]
},
{
"id": "CVE-2018-5925",
"cleaned_description": "secur vulner identifi certain hp inkjet printer malici craft file sent affect devic caus static buffer overflow could allow remot code execut",
"sorted_tokens": [
"hp",
"inkjet",
"static",
"printer",
"sent",
"identifi",
"certain",
"caus",
"code",
"malici",
"could",
"affect",
"secur",
"craft",
"execut",
"file",
"buffer",
"overflow",
"devic",
"remot",
"vulner",
"allow"
],
"nlp i/o": ["HP Inkjet:Buffer Overflow->Remote Code Injection"],
"description": "A security vulnerability has been identified with certain HP Inkjet printers. A maliciously crafted file sent to an affected device can cause a static buffer overflow, which could allow remote code execution.",
"i/o": [
"HP Inkjet:Buffer Overflow->Credentials",
"HP Inkjet:Buffer Overflow->HP Inkjet:Root Privileges"
]
},
{
"id": "CVE-2018-5924",
"cleaned_description": "secur vulner identifi certain hp inkjet printer malici craft file sent affect devic caus stack buffer overflow could allow remot code execut",
"sorted_tokens": [
"hp",
"inkjet",
"printer",
"sent",
"identifi",
"certain",
"caus",
"code",
"could",
"malici",
"affect",
"secur",
"stack",
"craft",
"execut",
"file",
"buffer",
"overflow",
"devic",
"remot",
"vulner",
"allow"
],
"nlp i/o": ["HP Inkjet:Buffer Overflow->Credentials"],
"description": "A security vulnerability has been identified with certain HP Inkjet printers. A maliciously crafted file sent to an affected device can cause a stack buffer overflow, which could allow remote code execution.",
"i/o": [
"HP Inkjet:Buffer Overflow->Credentials",
"HP Inkjet:Buffer Overflow->HP Inkjet:Root Privileges"
]
}
],
"Radio Thermostat CT50": [
{
"id": "CVE-2018-11315",
"cleaned_description": "local http api radio thermostat ct50 ct80 10484 product allow unauthor access via dn rebind attack result remot devic temperatur control demonstr tstat theat request access devic purchas spring 2018 set home target temperatur 95 degre fahrenheit vulner might describ addendum cve20134860",
"sorted_tokens": [
"temperatur",
"temperatur",
"access",
"access",
"fahrenheit",
"degre",
"95",
"theat",
"target",
"might",
"addendum",
"tstat",
"spring",
"purchas",
"10484",
"cve20134860",
"devic",
"devic",
"ct80",
"demonstr",
"ct50",
"thermostat",
"describ",
"2018",
"result",
"unauthor",
"radio",
"product",
"rebind",
"dn",
"local",
"api",
"set",
"control",
"request",
"home",
"via",
"http",
"remot",
"vulner",
"allow",
"attack"
],
"nlp i/o": ["DNS Rebinding->CT50:Root Privileges"],
"description": "The Local HTTP API in Radio Thermostat CT50 and CT80 1.04.84 and below products allows unauthorized access via a DNS rebinding attack. This can result in remote device temperature control, as demonstrated by a tstat t_heat request that accesses a device purchased in the Spring of 2018, and sets a home's target temperature to 95 degrees Fahrenheit. This vulnerability might be described as an addendum to CVE-2013-4860.",
"i/o": []
},
{
"id": "CVE-2013-4860",
"cleaned_description": "radio thermostat ct80 ct50 firmwar 1464 earlier restrict access api allow remot attack chang oper mode wifi connect set temperatur threshold set via unspecifi vector",
"sorted_tokens": [
"set",
"set",
"restrict",
"threshold",
"1464",
"thermostat",
"ct80",
"ct50",
"mode",
"temperatur",
"oper",
"chang",
"unspecifi",
"vector",
"earlier",
"radio",
"connect",
"api",
"wifi",
"access",
"via",
"firmwar",
"remot",
"allow",
"attack"
],
"nlp i/o": ["misc->settings"],
"description": "Radio Thermostat CT80 And CT50 with firmware 1.4.64 and earlier does not restrict access to the API, which allows remote attackers to change the operation mode, wifi connection settings, temperature thresholds, and other settings via unspecified vectors.",
"i/o": []
}
],
"Osram Lightify Pro": [
{
"id": "CVE-2016-5059",
"cleaned_description": "osram sylvania osram lightifi pro 20160726 allow attack obtain sensit inform read screenshot privatevarmobilecontainersdataappl",
"sorted_tokens": [
"osram",
"osram",
"screenshot",
"privatevarmobilecontainersdataappl",
"read",
"pro",
"sensit",
"20160726",
"lightifi",
"sylvania",
"obtain",
"inform",
"allow",
"attack"
],
"nlp i/o": ["Unprotected Expose->Credentials"],
"description": "OSRAM SYLVANIA Osram Lightify Pro before 2016-07-26 allows attackers to obtain sensitive information by reading screenshots under /private/var/mobile/Containers/Data/Application.",
"i/o": []
},
{
"id": "CVE-2016-5058",
"cleaned_description": "osram sylvania osram lightifi pro 20160726 allow zigbe replay",
"sorted_tokens": [
"osram",
"osram",
"replay",
"zigbe",
"pro",
"20160726",
"lightifi",
"sylvania",
"allow"
],
"nlp i/o": ["misc->zigbee replay"],
"description": "OSRAM SYLVANIA Osram Lightify Pro through 2016-07-26 allows Zigbee replay.",
"i/o": []
},
{
"id": "CVE-2016-5057",
"cleaned_description": "osram sylvania osram lightifi pro 20160726 use ssl pin",
"sorted_tokens": [
"osram",
"osram",
"pin",
"pro",
"ssl",
"20160726",
"lightifi",
"sylvania",
"use"
],
"nlp i/o": ["Unprotected Expose->Credentials"],
"description": "OSRAM SYLVANIA Osram Lightify Pro through 2016-07-26 does not use SSL pinning.",
"i/o": []
},
{
"id": "CVE-2016-5056",
"cleaned_description": "osram sylvania osram lightifi pro 20160726 use 8 hex digit psk",
"sorted_tokens": [
"osram",
"osram",
"hex",
"8",
"digit",
"pro",
"20160726",
"lightifi",
"sylvania",
"use"
],
"nlp i/o": ["Weak Encryption->Osram:PSK"],
"description": "OSRAM SYLVANIA Osram Lightify Pro before 2016-07-26 uses only 8 hex digits for a PSK.",
"i/o": []
},
{
"id": "CVE-2016-5055",
"cleaned_description": "osram sylvania osram lightifi pro 20160726 xss usernam field wireless client mode configur page",
"sorted_tokens": [
"osram",
"osram",
"page",
"client",
"mode",
"usernam",
"xss",
"wireless",
"pro",
"configur",
"20160726",
"lightifi",
"sylvania",
"field"
],
"nlp i/o": ["XSS->Credentials"],
"description": "OSRAM SYLVANIA Osram Lightify Pro before 2016-07-26 has XSS in the username field and Wireless Client Mode configuration page.",
"i/o": []
},
{
"id": "CVE-2016-5053",
"cleaned_description": "osram sylvania osram lightifi home 20160726 allow remot attack execut arbitrari command via tcp port 4000",
"sorted_tokens": [
"osram",
"osram",
"4000",
"tcp",
"command",
"port",
"execut",
"20160726",
"lightifi",
"sylvania",
"arbitrari",
"home",
"via",
"remot",
"allow",
"attack"
],
"nlp i/o": ["Unprotected Expose->Osram:Root Privileges"],
"description": "OSRAM SYLVANIA Osram Lightify Home before 2016-07-26 allows remote attackers to execute arbitrary commands via TCP port 4000.",
"i/o": []
},
{
"id": "CVE-2016-5051",
"cleaned_description": "osram sylvania osram lightifi home 20160726 store psk cleartext privatevarmobilecontainersdataappl",
"sorted_tokens": [
"osram",
"osram",
"privatevarmobilecontainersdataappl",
"psk",
"store",
"cleartext",
"20160726",
"lightifi",
"sylvania",
"home"
],
"nlp i/o": ["Unprotected Expose->Osram:PSK"],
"description": "OSRAM SYLVANIA Osram Lightify Home before 2016-07-26 stores a PSK in cleartext under /private/var/mobile/Containers/Data/Application.",
"i/o": []
}
],
"Belkin WeMo": [
{
"id": "CVE-2018-6692",
"cleaned_description": "stackbas buffer overflow vulner libupnphndlrso belkin wemo insight smart plug allow remot attack bypass local secur protect via craft http post packet",
"sorted_tokens": [
"post",
"libupnphndlrso",
"plug",
"packet",
"protect",
"insight",
"local",
"bypass",
"belkin",
"wemo",
"smart",
"stackbas",
"secur",
"craft",
"via",
"buffer",
"overflow",
"http",
"remot",
"vulner",
"allow",
"attack"
],
"nlp i/o": ["Belkin WeMo:Buffer Overflow->Belkin WeMo:Root Privileges"],
"description": "Stack-based Buffer Overflow vulnerability in libUPnPHndlr.so in Belkin Wemo Insight Smart Plug allows remote attackers to bypass local security protection via a crafted HTTP post packet.",
"i/o": [
"Belkin WeMo:Buffer Overflow->Credentials",
"Belkin WeMo:Buffer Overflow->Belkin WeMo:GPG Key"
]
},
{
"id": "CVE-2013-6952",
"cleaned_description": "belkin wemo home autom firmwar 3949 hardcod gpg key make easier remot attack spoof firmwar updat execut arbitrari code via craft sign data",
"sorted_tokens": [
"hardcod",
"gpg",
"make",
"easier",
"sign",
"firmwar",
"firmwar",
"code",
"3949",
"spoof",
"updat",
"autom",
"wemo",
"key",
"belkin",
"craft",
"execut",
"data",
"arbitrari",
"home",
"via",
"remot",
"attack"
],
"nlp i/o": ["Belkin WeMo:GPG Key->arbitrary code"],
"description": "The Belkin WeMo Home Automation firmware before 3949 has a hardcoded GPG key, which makes it easier for remote attackers to spoof firmware updates and execute arbitrary code via crafted signed data.",
"i/o": [
"Belkin WeMo:GPG Key->Belkin WeMo:Root Privileges"
]
},
{
"id": "CVE-2013-6951",
"cleaned_description": "belkin wemo home autom firmwar 3949 maintain set certif author public key allow maninthemiddl attack spoof ssl server via arbitrari x509 certif",
"sorted_tokens": [
"certif",
"certif",
"x509",
"maintain",
"public",
"author",
"maninthemiddl",
"3949",
"spoof",
"ssl",
"wemo",
"autom",
"belkin",
"key",
"set",
"arbitrari",
"home",
"via",
"server",
"firmwar",
"allow",
"attack"
],
"nlp i/o": ["MITM->certificate"],
"description": "The Belkin WeMo Home Automation firmware before 3949 does not maintain a set of Certification Authority public keys, which allows man-in-the-middle attackers to spoof SSL servers via an arbitrary X.509 certificate.",
"i/o": [
"MITM->Belkin WeMo:Root Privileges"
]
},
{
"id": "CVE-2013-6950",
"cleaned_description": "belkin wemo home autom firmwar 3949 use ssl distribut feed allow maninthemiddl attack instal arbitrari firmwar spoof distribut server",
"sorted_tokens": [
"distribut",
"distribut",
"feed",
"firmwar",
"firmwar",
"maninthemiddl",
"instal",
"3949",
"spoof",
"wemo",
"autom",
"belkin",
"ssl",
"arbitrari",
"use",
"home",
"server",
"allow",
"attack"
],
"nlp i/o": ["MITM->arbitrary code"],
"description": "The Belkin WeMo Home Automation firmware before 3949 does not use SSL for the distribution feed, which allows man-in-the-middle attackers to install arbitrary firmware by spoofing a distribution server.",
"i/o": [
"MITM->Belkin WeMo:Root Privileges"
]
},
{
"id": "CVE-2013-6949",
"cleaned_description": "belkin wemo home autom firmwar 3949 properli use stun turn protocol allow remot attack hijack connect possibl unspecifi impact leverag access singl wemo devic",
"sorted_tokens": [
"wemo",
"wemo",
"protocol",
"impact",
"properli",
"hijack",
"stun",
"singl",
"possibl",
"turn",
"unspecifi",
"leverag",
"3949",
"belkin",
"autom",
"connect",
"access",
"home",
"use",
"firmwar",
"devic",
"remot",
"allow",
"attack"
],
"nlp i/o": ["MITM->connections"],
"description": "The Belkin WeMo Home Automation firmware before 3949 does not properly use the STUN and TURN protocols, which allows remote attackers to hijack connections and possibly have unspecified other impact by leveraging access to a single WeMo device.",
"i/o": [
"MITM->Belkin WeMo:Root Privileges"
]
},
{
"id": "CVE-2013-6948",
"cleaned_description": "peeraddress api belkin wemo home autom firmwar 3949 allow remot attack read arbitrari file via xml document contain extern entiti declar conjunct entiti refer relat xml extern entiti xxe issu",
"sorted_tokens": [
"entiti",
"entiti",
"entiti",
"xml",
"xml",
"extern",
"extern",
"peeraddress",
"xxe",
"refer",
"conjunct",
"declar",
"contain",
"document",
"issu",
"read",
"3949",
"relat",
"autom",
"wemo",
"belkin",
"api",
"file",
"arbitrari",
"home",
"via",
"firmwar",
"remot",
"allow",
"attack"
],
"nlp i/o": ["xml external entity->Credentials"],
"description": "The peerAddresses API in the Belkin WeMo Home Automation firmware before 3949 allows remote attackers to read arbitrary files via an XML document containing an external entity declaration in conjunction with an entity reference, related to an XML External Entity (XXE) issue.",
"i/o": [
"Code Injection->Credentials",
"Code Injection->Belkin WeMo:GPG Key",
"Code Injection->Remote Device Control:WeMo"
]
},
{
"id": "Non-CVE Info",
"description": "Non-CVE I/O",
"cleaned_description": "noncv io",
"i/o": [
"Amazon Echo:Root Privileges->Remote WeMo Control"
],
"sorted_tokens": [
"noncv",
"io"
]
}
],
"Wink Smarthome": [
{
"id": "CVE-2017-5249",
"cleaned_description": "version 61019 prior wink labss wink smart home android app oauth token use app author user access store encrypt secur manner",
"sorted_tokens": [
"wink",
"wink",
"app",
"app",
"61019",
"labss",
"manner",
"token",
"oauth",
"author",
"store",
"prior",
"secur",
"smart",
"user",
"encrypt",
"android",
"access",
"use",
"home",
"version"
],
"nlp i/o": ["Unencrypted Storage->Credentials"],
"description": "In version 6.1.0.19 and prior of Wink Labs's Wink - Smart Home Android app, the OAuth token used by the app to authorize user access is not stored in an encrypted and secure manner.",
"i/o": []
}
],
"QBee Cam": [
{
"id": "CVE-2018-16223",
"cleaned_description": "insecur cryptograph storag credenti comvestiacomqbeecamerapreferencesxml qbee cam applic 105 android allow attack retriev usernam password",
"sorted_tokens": [
"105",
"qbee",
"comvestiacomqbeecamerapreferencesxml",
"cryptograph",
"cam",
"storag",
"usernam",
"applic",
"insecur",
"retriev",
"android",
"credenti",
"password",
"allow",
"attack"
],
"nlp i/o": ["Unencrypted Storage->Credentials"],
"description": "Insecure Cryptographic Storage of credentials in com.vestiacom.qbeecamera_preferences.xml in the QBee Cam application through 1.0.5 for Android allows an attacker to retrieve the username and password.",
"i/o": []
}
],
"iBaby M6": [
{
"id": "CVE-2015-2886",
"cleaned_description": "ibabi m6 allow remot attack obtain sensit inform relat ibabycloudcom servic",
"sorted_tokens": [
"ibabycloudcom",
"m6",
"ibabi",
"relat",
"servic",
"sensit",
"obtain",
"inform",
"remot",
"allow",
"attack"
],
"nlp i/o": ["Unencrypted Storage->Credentials"],
"description": "iBaby M6 allows remote attackers to obtain sensitive information, related to the ibabycloud.com service.",
"i/o": []
}
],
"Honeywell Midas gas detector": [
{
"id": "CVE-2017-17910",
"cleaned_description": "honeywel mida ga detector 113b3 mida black ga detector 213b3 allow remot attack discov cleartext password snif network",
"sorted_tokens": [
"detector",
"mida",
"ga",
"detector",
"mida",
"ga",