forked from vz-risk/veris
-
Notifications
You must be signed in to change notification settings - Fork 0
/
verisc-labels.json
1093 lines (1093 loc) · 40.9 KB
/
verisc-labels.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
{
"action": {
"environmental": {
"variety": {
"Deterioration": "Deterioration and degradation",
"EMI": "Electromagnetic interference (EMI)",
"ESD": "Electrostatic discharge (ESD)",
"Earthquake": "Earthquake",
"Fire": "Fire",
"Flood": "Flood",
"Hazmat": "Hazardous material",
"Humidity": "Humidity",
"Hurricane": "Hurricane",
"Ice": "Ice and snow",
"Landslide": "Landslide",
"Leak": "Water leak",
"Lightning": "Lightning",
"Meteorite": "Meteorite",
"Other": "Other",
"Particulates": "Particulate matter (e.g., dust, smoke)",
"Pathogen": "Pathogen",
"Power failure": "Power failure or fluctuation",
"Temperature": "Extreme temperature",
"Tornado": "Tornado",
"Tsunami": "Tsunami",
"Unknown": "Unknown",
"Vermin": "Vermin",
"Volcano": "Volcanic eruption",
"Wind": "Wind"
}
},
"error": {
"variety": {
"Capacity shortage": "Poor capacity planning",
"Classification error": "Classification or labeling error",
"Data entry error": "Data entry error",
"Disposal error": "Disposal error",
"Gaffe": "Gaffe (social or verbal slip)",
"Loss": "Loss or misplacement",
"Maintenance error": "Maintenance error",
"Malfunction": "Technical malfunction or glitch",
"Misconfiguration": "Misconfiguration",
"Misdelivery": "Misdelivery (send wrong info or to wrong recipient)",
"Misinformation": "Misinformation (unintentionally giving false info)",
"Omission": "Omission (something intended, but not done)",
"Other": "Other",
"Physical accidents": "Physical accidents (e.g., drops, bumps, spills)",
"Programming error": "Programming error (flaws or bugs in custom code)",
"Publishing error": "Publishing error (private info to public doc or site)",
"Unknown": "Unknown"
},
"vector": {
"Carelessness": "Carelessness",
"Inadequate personnel": "Inadequate or insufficient personnel",
"Inadequate processes": "Inadequate or insufficient processes",
"Inadequate technology": "Inadequate or insufficient technology resources",
"Other": "Other",
"Random error": "Random error (no reason, no fault)",
"Unknown": "Unknown"
}
},
"hacking": {
"variety": {
"Abuse of functionality": "Abuse of functionality",
"Brute force": "Brute force or password guessing attacks",
"Buffer overflow": "Buffer overflow",
"CSRF": "Cross-site request forgery",
"Cache poisoning": "Cache poisoning",
"Cryptanalysis": "Cryptanalysis",
"DoS": "Denial of service",
"Footprinting": "Footprinting and fingerprinting",
"Forced browsing": "Forced browsing or predictable resource location",
"Format string attack": "Format string attack",
"Fuzz testing": "Fuzz testing",
"HTTP Response Splitting": "HTTP Response Splitting",
"HTTP request smuggling": "HTTP request smuggling",
"HTTP request splitting": "HTTP request splitting",
"HTTP response smuggling": "HTTP response smuggling",
"Integer overflows": "Integer overflows",
"LDAP injection": "LDAP injection",
"Mail command injection": "Mail command injection",
"MitM": "Man-in-the-middle attack",
"Null byte injection": "Null byte injection",
"OS commanding": "OS commanding",
"Offline cracking": "Offline password or key cracking (e.g., rainbow tables, Hashcat, JtR)",
"Other": "Other",
"Path traversal": "Path traversal",
"Pass-the-hash": "Pass-the-hash",
"RFI": "Remote file inclusion",
"Reverse engineering": "Reverse engineering",
"Routing detour": "Routing detour",
"SQLi": "SQL injection",
"SSI injection": "SSI injection",
"Session fixation": "Session fixation",
"Session prediction": "Credential or session prediction",
"Session replay": "Session replay",
"Soap array abuse": "Soap array abuse",
"Special element injection": "Special element injection",
"URL redirector abuse": "URL redirector abuse",
"Unknown": "Unknown",
"Use of backdoor or C2": "Use of Backdoor or C2 channel",
"Use of stolen creds": "Use of stolen authentication credentials",
"Virtual machine escape": "Virtual machine escape",
"XML attribute blowup": "XML attribute blowup",
"XML entity expansion": "XML entity expansion",
"XML external entities": "XML external entities",
"XML injection": "XML injection",
"XPath injection": "XPath injection",
"XQuery injection": "XQuery injection",
"XSS": "Cross-site scripting"
},
"vector": {
"3rd party desktop": "3rd party online desktop sharing (LogMeIn, Go2Assist)",
"Backdoor or C2": "Backdoor or command and control channel",
"Command shell": "Remote shell",
"Desktop sharing": "Graphical desktop sharing (RDP, VNC, PCAnywhere, Citrix)",
"Other": "Other",
"Partner": "Partner connection or credential",
"Physical access": "Physical access or connection (i.e., at keyboard or via cable) ",
"Unknown": "Unknown",
"VPN": "VPN",
"Web application": "Web application"
}
},
"malware": {
"variety": {
"Adminware": "System or network utilities (e.g., PsTools, Netcat)",
"Adware": "Adware",
"Backdoor": "Backdoor (enable remote access)",
"Brute force": "Brute force attack",
"C2": "Command and control (C2)",
"Capture app data": "Capture data from application or system process",
"Capture stored data": "Capture data stored on system disk",
"Click fraud": "Click fraud or Bitcoin mining",
"Client-side attack": "Client-side or browser attack (e.g., redirection, XSS, MitB)",
"Destroy data": "Destroy or corrupt stored data",
"Disable controls": "Disable or interfere with security controls",
"DoS": "DoS attack",
"Downloader": "Downloader (pull updates or other malware) ",
"Exploit vuln": "Exploit vulnerability in code (vs misconfig or weakness)",
"Export data": "Export data to another site or system",
"Other": "Other",
"Packet sniffer": "Packet sniffer (capture data from network)",
"Password dumper": "Password dumper (extract credential hashes)",
"Ram scraper": "Ram scraper or memory parser (capture data from volatile memory)",
"Ransomware": "Ransomware (encrypt or seize stored data)",
"Rootkit": "Rootkit (maintain local privileges and stealth)",
"SQL injection": "SQL injection attack",
"Scan network": "Scan or footprint network",
"Spam": "Send spam",
"Spyware/Keylogger": "Spyware, keylogger or form-grabber (capture user input or activity)",
"Unknown": "Unknown",
"Worm": "Worm (propagate to other systems or devices)"
},
"vector": {
"Direct install": "Directly installed or inserted by threat agent (after system access)",
"Download by malware": "Downloaded and installed by local malware",
"Email attachment": "Email via user-executed attachment",
"Email autoexecute": "Email via automatic execution",
"Email link": "Email via embedded link",
"Instant messaging": "Instant Messaging",
"Network propagation": "Network propagation",
"Other": "Other",
"Remote injection": "Remotely injected by agent (i.e. via SQLi)",
"Removable media": "Removable storage media or devices",
"Software update": "Included in automated software update",
"Unknown": "Unknown",
"Web download": "Web via user-executed or downloaded content",
"Web drive-by": "Web via auto-executed or \"drive-by\" infection"
}
},
"misuse": {
"variety": {
"Data mishandling": "Handling of data in an unapproved manner",
"Email misuse": "Inappropriate use of email or IM",
"Illicit content": "Storage or distribution of illicit content",
"Knowledge abuse": "Abuse of private or entrusted knowledge",
"Net misuse": "Inappropriate use of network or Web access",
"Other": " Other",
"Possession abuse": "Abuse of physical access to asset",
"Privilege abuse": "Abuse of system access privileges",
"Unapproved hardware": "Use of unapproved hardware or devices",
"Unapproved software": "Use of unapproved software or services",
"Unapproved workaround": "Unapproved workaround or shortcut",
"Unknown": "Unknown"
},
"vector": {
"LAN access": "Local network access within corporate facility",
"Non-corporate": "Non-corporate facilities or networks",
"Other": "Other",
"Physical access": "Physical access within corporate facility",
"Remote access": "Remote access connection to corporate network (i.e. VPN)",
"Unknown": "Unknown"
}
},
"physical": {
"variety": {
"Assault": "Assault (threats or acts of physical violence)",
"Bypassed controls": "Bypassed physical barriers or controls",
"Disabled controls": "Disabled physical barriers or controls",
"Connection": "Connection",
"Other": "Other",
"Destruction": "Destruction (deliberate damaging or disabling)",
"Skimmer": "Installing card skimming device",
"Snooping": "Snooping (sneak about to gain info or access)",
"Surveillance": "Surveillance (monitoring and observation)",
"Tampering": "Tampering (alter physical form or function)",
"Theft": "Theft (taking assets without permission)",
"Unknown": "Unknown",
"Wiretapping": "Wiretapping (Physical tap to comms line)"
},
"vector": {
"Other": "Other",
"Partner facility": "Partner facility or area",
"Partner vehicle": "Partner vehicle (e.g., delivery truck)",
"Personal residence": "Personal residence",
"Personal vehicle": "Personal vehicle",
"Public facility": "Public facility or area",
"Public vehicle": "Public vehicle (e.g., plane, taxi)",
"Privileged access": "Held privileged access to location",
"Uncontrolled location": "The location was uncontrolled (public)",
"Unknown": "Unknown",
"Victim grounds": "Victim outdoor grounds",
"Victim public area": "Victim public or customer area (e.g., lobby, storefront)",
"Victim secure area": "Victim high security area (e.g., server room, R&D labs)",
"Victim work area": "Victim private or work area (e.g., office space)",
"Visitor privileges": "Given temporary visitor access"
}
},
"social": {
"target": {
"Auditor": "Auditor",
"Call center": "Call center staff",
"Cashier": "Cashier, teller or waiter",
"Customer": "Customer (B2C)",
"Developer": "Software developer",
"End-user": "End-user or regular employee",
"Executive": "Executive or upper management",
"Finance": "Finance or accounting staff",
"Former employee": "Former employee",
"Guard": "Security guard",
"Helpdesk": "Helpdesk staff",
"Human resources": "Human resources staff",
"Maintenance": "Maintenance or janitorial staff",
"Manager": "Manager or supervisor",
"Other": "Other",
"Partner": "Partner (B2B)",
"System admin": "System or network administrator",
"Unknown": "Unknown"
},
"variety": {
"Baiting": "Baiting (planting infected media)",
"Bribery": "Bribery or solicitation",
"Elicitation": "Elicitation (subtle extraction of info through conversation)",
"Extortion": "Extortion or blackmail",
"Forgery": "Forgery or counterfeiting (fake hardware, software, documents, etc)",
"Influence": "Influence tactics (Leveraging authority or obligation, framing, etc)",
"Other": "Other",
"Phishing": "Phishing (or any type of *ishing)",
"Pretexting": "Pretexting (dialogue leveraging invented scenario)",
"Propaganda": "Propaganda or disinformation",
"Scam": "Online scam or hoax (e.g., scareware, 419 scam, auction fraud)",
"Spam": "Spam (unsolicited or undesired email and advertisements)",
"Unknown": "Unknown"
},
"vector": {
"Documents": "Documents",
"Email": "Email",
"IM": "Instant messaging",
"In-person": "In-person",
"Other": "Other",
"Phone": "Phone",
"Removable media": "Removable storage media",
"SMS": "SMS or texting",
"Social media": "Social media or networking",
"Software": "Software",
"Unknown": "Unknown",
"Website": "Website"
}
}
},
"actor": {
"external": {
"variety": {
"Acquaintance": "Relative or acquaintance of employee",
"Activist": "Activist group",
"Auditor": "Auditor",
"Competitor": "Competitor",
"Customer": "Customer (B2C)",
"Force majeure": "Force majeure (nature and chance)",
"Former employee": "Former employee (no longer had access)",
"Nation-state": "Nation-state",
"Organized crime": "Organized or professional criminal group",
"Other": "Other",
"State-affiliated": "State-sponsored or affiliated group",
"Terrorist": "Terrorist group",
"Unaffiliated": "Unaffiliated person(s)",
"Unknown": "Unknown"
}
},
"internal": {
"variety": {
"Auditor": "Auditor",
"Call center": "Call center staff",
"Cashier": "Cashier, teller, or waiter",
"Developer": "Software developer",
"End-user": "End-user or regular employee",
"Executive": "Executive or upper management",
"Finance": "Finance or accounting staff",
"Guard": "Security guard",
"Helpdesk": "Helpdesk staff",
"Human resources": "Human resources staff",
"Maintenance": "Maintenance or janitorial staff",
"Manager": "Manager or supervisor",
"Other": "Other",
"System admin": "System or network administrator",
"Unknown": "Unknown"
},
"job_change": {
"Hired": "Recently hired",
"Promoted": "Recently promoted",
"Lateral move": "Lateral move",
"Resigned": "Recently resigned",
"Let go": "Fired, laid off, or let go",
"Demoted": "Recently demoted or hours reduced",
"Passed over": "Recently passed over for promotion",
"Unknown": "Unknown",
"Other": "Other",
"Reprimanded": "Recently reprimanded",
"Job eval": "Recent poor job evaluation",
"Personal issues": "Personal issues"
}
},
"motive": {
"Convenience": "Convenience of expediency",
"Espionage": "Espionage or competitive advantage",
"Fear": "Fear or duress",
"Financial": "Financial or personal gain",
"Fun": "Fun, curiosity, or pride",
"Grudge": "Grudge or personal offense",
"Ideology": "Ideology or protest",
"NA": "Not Applicable (unintentional action)",
"Other": "Other",
"Secondary": "Aid in a different attack",
"Unknown": "Unknown"
}
},
"asset": {
"accessibility": {
"External": "Publicly accessible",
"Internal": "Internally accessible",
"Isolated": "Internally isolated or restricted environment",
"NA": "Not applicable",
"Unknown": "Unknown"
},
"cloud": {
"Customer attack": "Penetration of another web site on shared device",
"Hosting error": "Misconfiguration or error by hosting provider",
"Hosting governance": "Lack of security process or procedure by hosting provider",
"Hypervisor": "Hypervisor break-out attack",
"Other": "Other",
"Partner application": "Application vulnerability in partner-developed application",
"Unknown": "Unknown",
"User breakout": "Elevation of privilege by another customer in shared environment"
},
"governance" : {
"Personally owned": "Personally owned asset",
"3rd party owned": "Owned by 3rd party",
"3rd party managed": "Managed by 3rd party",
"3rd party hosted": "Hosted by 3rd party",
"Internally isolated": "Isolated internal asset",
"Unknown": "Unknown"
},
"hosting": {
"External": "Externally hosted (unsure if dedicated or shared)",
"External dedicated": "Externally hosted in a dedicated envirnoment",
"External shared": "Externally hosted in a shared envirnoment",
"Internal": "Internally hosted",
"NA": "Not applicable",
"Unknown": "Unknown"
},
"management": {
"External": "Externally managed",
"Internal": "Internally managed",
"NA": "Not applicable",
"Unknown": "Unknown"
},
"ownership": {
"Customer": "Customer owned",
"Employee": "Employee owned",
"NA": "Not applicable",
"Partner": "Partner owned",
"Unknown": "Unknown",
"Victim": "Victim owned"
},
"variety": {
"M - Disk drive": "Media - Hard disk drive",
"M - Disk media": "Media - Disk media (e.g., CDs, DVDs)",
"M - Documents": "Media - Documents",
"M - Flash drive": "Media - Flash drive or card",
"M - Other": "Media - Other/Unknown",
"M - Payment card": "Media - Payment card (e.g., magstripe, EMV)",
"M - Smart card": "Media - Identity smart card",
"M - Tapes": "Media - Backup tapes",
"N - Access reader": "Network - Access control reader (e.g., badge, biometric)",
"N - Broadband": "Network - Mobile broadband network",
"N - Camera": "Network - Camera or surveillance system",
"N - Firewall": "Network - Firewall",
"N - HSM": "Network - Hardware security module (HSM)",
"N - IDS": "Network - IDS or IPs",
"N - LAN": "Network - Wired LAN",
"N - Other": "Network - Other/Unknown",
"N - PBX": "Network - Private branch exchange (PBX)",
"N - PLC": "Network - Programmable logic controller (PLC)",
"N - Private WAN": "Network - Private WAN",
"N - Public WAN": "Network - Public WAN",
"N - RTU": "Network - Remote terminal unit (RTU)",
"N - Router or switch": "Network - Router or switch",
"N - SAN": "Network - Storage area network (SAN)",
"N - Telephone": "Network - Telephone",
"N - VoIP adapter": "Network - VoIP adapter",
"N - WLAN": "Network - Wireless LAN",
"P - Auditor": "People - Auditor",
"P - Call center": "People - Call center",
"P - Cashier": "People - Cashier",
"P - Customer": "People - Customer",
"P - Developer": "People - Developer",
"P - End-user": "People - End-user",
"P - Executive": "People - Executive",
"P - Finance": "People - Finance",
"P - Former employee": "People - Former employee",
"P - Guard": "People - Guard",
"P - Helpdesk": "People - Helpdesk",
"P - Human resources": "People - Human resources",
"P - Maintenance": "People - Maintenance",
"P - Manager": "People - Manager",
"P - Other": "People - Other/Unknown",
"P - Partner": "People - Partner",
"P - System admin": "People - Administrator",
"S - Authentication": "Server - Authentication",
"S - Backup": "Server - Backup",
"S - Code repository": "Server - Code repository",
"S - DCS": "Server - Distributed control system (DCS)",
"S - DHCP": "Server - DHCP",
"S - DNS": "Server - DNS",
"S - Database": "Server - Database",
"S - Directory": "Server - Directory (LDAP, AD)",
"S - File": "Server - File",
"S - Log": "Server - Log or event management",
"S - Mail": "Server - Mail",
"S - Mainframe": "Server - Mainframe",
"S - Other": "Server - Other/Unknown",
"S - POS controller": "Server - POS controller",
"S - Payment switch": "Server - Payment switch or gateway",
"S - Print": "Server - Print",
"S - Proxy": "Server - Proxy",
"S - Remote access": "Server - Remote access",
"S - SCADA": "Server - SCADA system",
"S - VM host": "Server - Virtual Host",
"S - Web application": "Server - Web application",
"S - Unknown": "Server - Unknown",
"T - ATM": "Public Terminal - Automated Teller Machine (ATM)",
"T - Gas terminal": "Public Terminal - Gas \"pay-at-the-pump\" terminal",
"T - Kiosk": "Public Terminal - Self-service kiosk",
"T - Other": "Public Terminal - Other/Unknown",
"T - PED pad": "Public Terminal - Detached PIN pad or card reader",
"U - Auth token": "User Device - Authentication token or device",
"U - Desktop": "User Device - Desktop or workstation",
"U - Laptop": "User Device - Laptop",
"U - Media": "User Device - Media player or recorder",
"U - Mobile phone": "User Device - Mobile phone or smartphone",
"U - Other": "User Device - Other/Unknown",
"U - POS terminal": "User Device - POS terminal",
"U - Peripheral": "User Device - Peripheral (e.g., printer, copier, fax)",
"U - Tablet": "User Device - Tablet",
"U - Telephone": "User Device - Telephone",
"U - VoIP phone": "User Device - VoIP phone",
"Unknown": "Unknown"
}
},
"attribute": {
"availability": {
"variety": {
"Acceleration": "Acceleration",
"Degradation": "Performance degradation",
"Destruction": "Destruction",
"Interruption": "Interruption",
"Loss": "Loss",
"Obscuration": "Conversion or obscuration",
"Other": "Other",
"Unknown": "Unknown"
}
},
"confidentiality": {
"data": {
"variety": {
"Bank": "Bank account data",
"Classified": "Classified information",
"Copyrighted": "Copyrighted material",
"Credentials": "Authentication credentials (e.g., pwds, OTPs, biometrics)",
"Digital certificate": "Digital certificate",
"Internal": "Sensitive internal data (e.g., plans, reports, emails)",
"Medical": "Medical records",
"Other": "Other",
"Payment": "Payment card data (e.g., PAN, PIN, CVV2, Expiration)",
"Personal": "Personal or identifying information (e.g., addr, ID#, credit score)",
"Secrets": "Trade secrets",
"Source code": "Source code",
"System": "System information (e.g., config info, open services)",
"Virtual currency": "Virtual currency",
"Unknown": "Unknown"
}
},
"data_disclosure": {
"No": "No",
"Potentially": "Potentially (at risk)",
"Unknown": "Unknown",
"Yes": "Yes (confirmed)"
},
"data_victim": {
"Customer": "Customer",
"Employee": "Employee",
"Other": "Other",
"Partner": "Partner",
"Patient": "Patient",
"Student": "Student",
"Unknown": "Unknown"
},
"state": {
"Processed": "Processed",
"Stored": "Stored",
"Stored encrypted": "Stored encrypted",
"Stored unencrypted": "Stored unencrypted",
"Transmitted": "Transmitted",
"Transmitted encrypted": "Transmitted encrypted",
"Transmitted unencrypted": "Transmitted unencrypted",
"Unknown": "Unknown"
}
},
"integrity": {
"variety": {
"Alter behavior": "Influence or alter human behavior",
"Created account": "Created new user account",
"Defacement": "Deface content",
"Fraudulent transaction": "Initiate fraudulent transaction",
"Hardware tampering": "Hardware tampering or physical alteration",
"Log tampering": "Log tampering or modification",
"Repurpose": "Repurposed asset for unauthorized function",
"Misrepresentation": "Misrepresentation",
"Modify configuration": "Modified configuration or services",
"Modify data": "Modified stored data or content",
"Modify privileges": "Modified privileges or permissions",
"Other": "Other",
"Software installation": "Software installation or code modification",
"Unknown": "Unknown"
}
}
},
"confidence": {
"High": "High confidence",
"Low": "Low confidence",
"Medium": "Medium confidence",
"None": "No confidence"
},
"cost_corrective_action": {
"Difficult and expensive": "Difficult and expensive",
"Simple and cheap": "Simple and cheap",
"Something in-between": "Something in-between",
"Unknown": "Unknown"
},
"country": {
"AD": "Andorra",
"AE": "United Arab Emirates",
"AF": "Afghanistan",
"AG": "Antigua and Barbuda",
"AI": "Anguilla",
"AL": "Albania",
"AM": "Armenia",
"AO": "Angola",
"AQ": "Antarctica",
"AR": "Argentina",
"AS": "American Samoa",
"AT": "Austria",
"AU": "Australia",
"AW": "Aruba",
"AX": "Aland Islands",
"AZ": "Azerbaijan",
"BA": "Bosnia and Herzegovina",
"BB": "Barbados",
"BD": "Bangladesh",
"BE": "Belgium",
"BF": "Burkina Faso",
"BG": "Bulgaria",
"BH": "Bahrain",
"BI": "Burundi",
"BJ": "Benin",
"BL": "Saint-Barthelemy",
"BM": "Bermuda",
"BN": "Brunei Darussalam",
"BO": "Bolivia",
"BQ": "Bonaire, Saint Eustatius and Saba",
"BR": "Brazil",
"BS": "Bahamas",
"BT": "Bhutan",
"BV": "Bouvet Island",
"BW": "Botswana",
"BY": "Belarus",
"BZ": "Belize",
"CA": "Canada",
"CC": "Cocos (Keeling) Islands",
"CD": "Congo, Democratic Republic of the",
"CF": "Central African Republic",
"CG": "Congo",
"CH": "Switzerland",
"CI": "Cote d'Ivoire",
"CK": "Cook Islands",
"CL": "Chile",
"CM": "Cameroon",
"CN": "China",
"CO": "Colombia",
"CR": "Costa Rica",
"CU": "Cuba",
"CV": "Cape Verde",
"CW": "Curacao",
"CX": "Christmas Island",
"CY": "Cyprus",
"CZ": "Czech Republic",
"DE": "Germany",
"DJ": "Djibouti",
"DK": "Denmark",
"DM": "Dominica",
"DO": "Dominican Republic",
"DZ": "Algeria",
"EC": "Ecuador",
"EE": "Estonia",
"EG": "Egypt",
"EH": "Western Sahara",
"ER": "Eritrea",
"ES": "Spain",
"ET": "Ethiopia",
"FI": "Finland",
"FJ": "Fiji",
"FK": "Faeroe Islands",
"FM": "Micronesia (Federated States of)",
"FO": "Falkland Islands (Malvinas)",
"FR": "France",
"GA": "Gabon",
"GB": "United Kingdom",
"GD": "Grenada",
"GE": "Georgia",
"GF": "French Guiana",
"GG": "Guernsey",
"GH": "Ghana",
"GI": "Gibraltar",
"GL": "Greenland",
"GM": "Gambia",
"GN": "Guinea",
"GP": "Guadeloupe",
"GQ": "Equatorial Guinea",
"GR": "Greece",
"GS": "South Georgia and the South Sandwich Islands",
"GT": "Guatemala",
"GU": "Guam",
"GW": "Guinea-Bissau",
"GY": "Guyana",
"HK": "Hong Kong",
"HM": "Heard Island and McDonal Islands",
"HN": "Honduras",
"HR": "Croatia",
"HT": "Haiti",
"HU": "Hungary",
"ID": "Indonesia",
"IE": "Ireland",
"IL": "Israel",
"IM": "Isle of Man",
"IN": "India",
"IO": "British Virgin Islands",
"IQ": "Iraq",
"IR": "Iran (Islamic Republic of)",
"IS": "Iceland",
"IT": "Italy",
"JE": "Jersey",
"JM": "Jamaica",
"JO": "Jordan",
"JP": "Japan",
"KE": "Kenya",
"KG": "Kyrgyzstan",
"KH": "Cambodia",
"KI": "Kiribati",
"KM": "Comoros",
"KN": "Saint Kitts and Nevis",
"KP": "Korea, Democratic People's Republic of",
"KR": "Korea, Republic of",
"KW": "Kuwait",
"KY": "Cayman Islands",
"KZ": "Kazakhstan",
"LA": "Lao People's Democratic Republic",
"LB": "Lebanon",
"LC": "Saint Lucia",
"LI": "Liechtenstein",
"LK": "Sri Lanka",
"LR": "Liberia",
"LS": "Lesotho",
"LT": "Lithuania",
"LU": "Luxembourg",
"LV": "Latvia",
"LY": "Libya",
"MA": "Morocco",
"MC": "Monaco",
"MD": "Moldova, Republic of",
"ME": "Montenegro",
"MF": "Saint Martin (French part)",
"MG": "Madagascar",
"MH": "Marshall Islands",
"MK": "Macedonia, The former Yugoslav Republic of",
"ML": "Mali",
"MM": "Myanmar",
"MN": "Mongolia",
"MO": "Macao",
"MP": "Northern Mariana Islands",
"MQ": "Martinique",
"MR": "Mauritania",
"MS": "Montserrat",
"MT": "Malta",
"MU": "Mauritius",
"MV": "Maldives",
"MW": "Malawi",
"MX": "Mexico",
"MY": "Malaysia",
"MZ": "Mozambique",
"NA": "Namibia",
"NC": "New Caledonia",
"NE": "Niger",
"NF": "Norfolk Island",
"NG": "Nigeria",
"NI": "Nicaragua",
"NL": "Netherlands",
"NO": "Norway",
"NP": "Nepal",
"NR": "Nauru",
"NU": "Niue",
"NZ": "New Zealand",
"OM": "Oman",
"Other": "Other",
"PA": "Panama",
"PE": "Peru",
"PF": "French Polynesia",
"PG": "Papua New Guinea",
"PH": "Philippines",
"PK": "Pakistan",
"PL": "Poland",
"PM": "Saint Pierre and Miquelon",
"PN": "Pitcairn",
"PR": "Puerto Rico",
"PS": "Palestinian Territory, Occupied",
"PT": "Portugal",
"PW": "Palau",
"PY": "Paraguay",
"QA": "Qatar",
"RE": "Reunion",
"RO": "Romania",
"RS": "Serbia",
"RU": "Russian Federation",
"RW": "Rwanda",
"SA": "Saudi Arabia",
"SB": "Solomon Islands",
"SC": "Seychelles",
"SD": "Sudan",
"SE": "Sweden",
"SG": "Singapore",
"SH": "Saint Helena",
"SI": "Slovenia",
"SJ": "Svalbard and Jan Mayen Islands",
"SK": "Slovakia",
"SL": "Sierra Leone",
"SM": "San Marino",
"SN": "Senegal",
"SO": "Somalia",
"SR": "Suriname",
"SS": "South Sudan",
"ST": "Sao Tome and Principe",
"SV": "El Salvador",
"SX": "Sint Maarten (Dutch part)",
"SY": "Syrian Arab Republic",
"SZ": "Swaziland",
"TC": "Turks and Caicos Islands",
"TD": "Chad",
"TF": "French Southern Territories",
"TG": "Togo",
"TH": "Thailand",
"TJ": "Tajikistan",
"TK": "Tokelau",
"TL": "Timor-Leste",
"TM": "Turkmenistan",
"TN": "Tunisia",
"TO": "Tonga",
"TR": "Turkey",
"TT": "Trinidad and Tobago",
"TV": "Tuvalu",
"TW": "Taiwan, Province of China",
"TZ": "Tanzania, United Republic of",
"UA": "Ukraine",
"UG": "Uganda",
"UM": "United States Minor Outlying Islands",
"US": "United States of America",
"UY": "Uruguay",
"UZ": "Uzbekistan",
"Unknown": "Unknown",
"VA": "Holy See",
"VC": "Saint Vincent and the Grenadines",
"VE": "Venezuela (Bolivarian Republic of)",
"VG": "British Virgin Islands",
"VI": "United States Virgin Islands",
"VN": "Viet Nam",
"VU": "Vanuatu",
"WF": "Wallis and Futuna Islands",
"WS": "Samoa",
"YE": "Yemen",
"YT": "Mayotte",
"ZA": "South Africa",
"ZM": "Zambia",
"ZW": "Zimbabwe"
},
"discovery_method": {
"Ext - actor disclosure": "External - disclosed by threat agent (e.g., public brag, private blackmail)",
"Ext - audit": "External - security audit or scan",
"Ext - customer": "External - reported by customer or partner affected by the incident",
"Ext - emergency response team": "External - Emergency response team",
"Ext - found documents": "External - Found documents",
"Ext - fraud detection": "External - fraud detection (e.g., CPP)",
"Ext - incident response": "External - Notified while investigating another incident",
"Ext - law enforcement": "Internal - notified by law enforcement or government agency",
"Ext - monitoring service": "External - managed security event monitoring service",
"Ext - suspicious traffic": "External - Report of suspicious traffic",
"Ext - unknown": "External - unknown",
"Int - HIDS": "Internal - host IDS or file integrity monitoring",
"Int - IT review": "Internal - Informal IT review",
"Int - NIDS": "Internal - network IDS or IPS alert",
"Int - antivirus": "Internal - antivirus alert",
"Int - data loss prevention": "Internal - Data loss prevention software",
"Int - financial audit": "Internal - financial audit and reconciliation process",
"Int - fraud detection": "Internal - fraud detection mechanism",
"Int - incident response": "Internal - discovered while responding to another (separate) incident",
"Int - infrastructure monitoring": "Internal - Infrastructure monitoring",
"Int - log review": "Internal - log review process or SIEM",
"Int - reported by employee": "Internal - reported by employee who saw something odd",
"Int - security alarm": "Internal - physical security system alarm",
"Int - unknown": "Internal - unknown",
"Other": "Other",
"Prt - Other": "Partner - Other",
"Prt - Unknown": "Partner - Unknown",
"Prt - antivirus": "Partner - Notified by antivirus company but not through AV product",
"Prt - audit": "Partner - Audit performed by a partner organization",
"Prt - incident response": "Partner - notified while investigating another incident",
"Prt - monitoring service": "Partner - Reported by a monitoring service",
"Unknown": "Unknown"
},
"impact": {
"loss": {
"rating": {
"Major": "Major",
"Minor": "Minor",
"Moderate": "Moderate",
"None": "None",
"Unknown": "Unknown"
},
"variety": {
"Asset and fraud": "Asset and fraud-related losses",
"Brand damage": "Brand and market damage",
"Business disruption": "Business disruption",
"Competitive advantage": "Loss of competitive advantage",
"Legal and regulatory": "Legal and regulatory costs",
"Operating costs": "Increased operating costs",
"Response and recovery": "Response and recovery costs"
}
},
"overall_rating": {
"Catastrophic": "Catastrophic: A business-ending event (don't choose this if the victim will continue operations)",
"Damaging": "Damaging: Real and serious effect on the \"bottom line\" and/or long-term ability to generate revenue",
"Distracting": "Distracting: Limited \"hard costs\", but impact felt through having to deal with the incident rather than conducting normal duties",
"Insignificant": "Insignificant: Impact absorbed by normal activities",
"Painful": "Painful: Limited \"hard costs\", but impact felt through having to deal with the incident rather than conducting normal duties",
"Unknown": "Unknown"
}
},
"iso_currency_code": {
"AED": "AED - UAE Dirham",
"AFN": "AFN - Afghani",
"ALL": "ALL - Lek",
"AMD": "AMD - Armenian Dram",
"ANG": "ANG - Netherlands Antillean Guilder",
"AOA": "AOA - Kwanza",
"ARS": "ARS - Argentine Peso",
"AUD": "AUD - Australian Dollar",
"AWG": "AWG - Aruban Florin",
"AZN": "AZN - Azerbaijanian Manat",
"BAM": "BAM - Convertible Mark",
"BBD": "BBD - Barbados Dollar",
"BDT": "BDT - Taka",
"BGN": "BGN - Bulgarian Lev",
"BHD": "BHD - Bahraini Dinar",
"BIF": "BIF - Burundi Franc",
"BMD": "BMD - Bermudian Dollar",
"BND": "BND - Brunei Dollar",
"BOB": "BOB - Boliviano",
"BRL": "BRL - Brazilian Real",
"BSD": "BSD - Bahamian Dollar",
"BTN": "BTN - Ngultrum",
"BWP": "BWP - Pula",
"BYR": "BYR - Belarussian Ruble",
"BZD": "BZD - Belize Dollar",
"CAD": "CAD - Canadian Dollar",
"CDF": "CDF - Congolese Franc",
"CHF": "CHF - Swiss Franc",
"CLP": "CLP - Chilean Peso",
"CNY": "CNY - Yuan Renminbi",
"COP": "COP - Colombian Peso",
"CRC": "CRC - Costa Rican Colon",
"CUC": "CUC - Peso Convertible",
"CUP": "CUP - Cuban Peso",
"CVE": "CVE - Cape Verde Escudo",
"CZK": "CZK - Czech Koruna",
"DJF": "DJF - Djibouti Franc",
"DKK": "DKK - Danish Krone",
"DOP": "DOP - Dominican Peso",
"DZD": "DZD - Algerian Dinar",
"EGP": "EGP - Egyptian Pound",
"ERN": "ERN - Nakfa",
"ETB": "ETB - Ethiopian Birr",
"EUR": "EUR - Euro",
"FJD": "FJD - Fiji Dollar",
"FKP": "FKP - Falkland Islands Pound",
"GBP": "GBP - Pound Sterling",
"GEL": "GEL - Lari",
"GGP": "GGP - Guernsey pound",
"GHS": "GHS - Ghana Cedi",
"GIP": "GIP - Gibraltar Pound",
"GMD": "GMD - Dalasi",
"GNF": "GNF - Guinea Franc",
"GTQ": "GTQ - Quetzal",
"GYD": "GYD - Guyana Dollar",
"HKD": "HKD - Hong Kong Dollar",
"HNL": "HNL - Lempira",
"HRK": "HRK - Croatian Kuna",
"HTG": "HTG - Gourde",
"HUF": "HUF - Forint",
"IDR": "IDR - Rupiah",
"ILS": "ILS - New Israeli Sheqel",
"IMP": "IMP - Isle of Man Pound",
"INR": "INR - Indian Rupee",
"IQD": "IQD - Iraqi Dinar",
"IRR": "IRR - Iranian Rial",
"ISK": "ISK - Iceland Krona",
"JEP": "JEP - Jersey pound",
"JMD": "JMD - Jamaican Dollar",
"JOD": "JOD - Jordanian Dinar",
"JPY": "JPY - Yen",
"KES": "KES - Kenyan Shilling",
"KGS": "KGS - Som",
"KHR": "KHR - Riel",
"KMF": "KMF - Comoro Franc",
"KPW": "KPW - North Korean Won",
"KRW": "KRW - South Korean Won",
"KWD": "KWD - Kuwaiti Dinar",
"KYD": "KYD - Cayman Islands Dollar",
"KZT": "KZT - Tenge",
"LAK": "LAK - Kip",
"LBP": "LBP - Lebanese Pound",
"LKR": "LKR - Sri Lanka Rupee",
"LRD": "LRD - Liberian Dollar",
"LSL": "LSL - Loti",
"LTL": "LTL - Lithuanian Litas",
"LVL": "LVL - Latvian Lats",
"LYD": "LYD - Libyan Dinar",
"MAD": "MAD - Moroccan Dirham",
"MDL": "MDL - Moldovan Leu",
"MGA": "MGA - Malagasy Ariary",
"MKD": "MKD - Denar",
"MMK": "MMK - Kyat",
"MNT": "MNT - Tugrik",
"MOP": "MOP - Pataca",
"MRO": "MRO - Ouguiya",
"MUR": "MUR - Mauritius Rupee",
"MVR": "MVR - Rufiyaa",
"MWK": "MWK - Kwacha",
"MXN": "MXN - Mexican Peso",
"MYR": "MYR - Malaysian Ringgit",
"MZN": "MZN - Mozambique Metical",
"NAD": "NAD - Namibia Dollar",
"NGN": "NGN - Naira",
"NIO": "NIO - Cordoba Oro",
"NOK": "NOK - Norwegian Krone",
"NPR": "NPR - Nepalese Rupee",
"NZD": "NZD - New Zealand Dollar",
"OMR": "OMR - Rial Omani",
"PAB": "PAB - Balboa",
"PEN": "PEN - Nuevo Sol",
"PGK": "PGK - Kina",
"PHP": "PHP - Philippine Peso",
"PKR": "PKR - Pakistan Rupee",