-
Notifications
You must be signed in to change notification settings - Fork 9
/
cyberattacks.json
1323 lines (1323 loc) · 49.5 KB
/
cyberattacks.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
[
{
"name": "PLC Password Change",
"year": 1988,
"industry": "Pulp and Paper",
"sources": [
"The Myths and Facts behind Cyber Security Risks for Industrial Control Systems, E Byres"
],
"guid": "bf1398ad-461a-45d8-98b2-c4b9e6ac2222",
"attackType": "Disgruntled Employee"
},
{
"name": "Computer Sabotage at Nuclear Power Plant",
"year": 1992,
"industry": "Power and Utilities",
"sources": [
"https://www.chathamhouse.org/sites/default/files/field/field_document/20151005CyberSecurityNuclearBaylonBruntLivingstone.pdf"
],
"guid": "e1cec836-15fb-4e0f-86e3-8e486fbc3918",
"attackType": "Targeted Attack"
},
{
"name": "Salt River Project Hack",
"year": 1994,
"industry": "Power and Utilities",
"sources": [
"https://pdfs.semanticscholar.org/1f8f/a134eca5fe92143bd154ec9f6446b38b63ae.pdf"
],
"guid": "dd8231fa-ac07-4497-83ac-5cc0054c118b",
"attackType": "Targeted Attack"
},
{
"name": "Omega Engineering Sabotage",
"year": 1996,
"industry": "Electronic Manufacturing",
"sources": [
"http://edition.cnn.com/2000/TECH/computing/06/27/omega.files.idg/"
],
"guid": "862c43f2-e51c-46db-8877-6f9a7370d399",
"attackType": "Disgruntled Employee"
},
{
"name": "Worcester Air Traffic Communications System Hack",
"year": 1997,
"industry": "Transportation",
"sources": [
"http://edition.cnn.com/TECH/computing/9803/18/juvenile.hacker/index.html",
"http://www.irational.org/APD/CCIPS/juvenilepld.htm"
],
"guid": "147fef66-358a-4e2b-80de-d06920e3a419",
"attackType": "Targeted Attack"
},
{
"name": "Power Outages and Other Service Interruptions",
"year": 1999,
"industry": "Power and Utilities",
"sources": [
"https://www.risidata.com/Database/Detail/power_outages_and_other_service_interruptions"
],
"guid": "bcd3fda2-cdd4-4201-a76a-d2a3ab6d3a50",
"attackType": "Targeted Attack"
},
{
"name": "Maroochy Shire Sewage Spill",
"year": 2000,
"industry": "Water/Waste Water",
"sources": [
"https://www.mitre.org/sites/default/files/pdf/08_1145.pdf"
],
"guid": "2dff520b-2394-454d-8dce-d5fa0e75ffff",
"attackType": "Disgruntled Employee"
},
{
"name": "Nimda Impact on Manufacturing System",
"year": 2001,
"industry": "Food & Beverage",
"sources": [
"https://www.f-secure.com/v-descs/nimda.shtml"
],
"guid": "5547fe95-e3cf-4cab-aa96-f22f5f7d784f",
"attackType": "Untargeted Attack"
},
{
"name": "DoS Attack Shuts Down Port of Houston",
"year": 2001,
"industry": "Transportation",
"sources": [
"https://cardozoaelj.com/wp-content/uploads/Journal%20Issues/Volume%2024/Issue%201/Edwards.pdf",
"https://www.zdnet.com/article/revenge-hack-downed-us-port-systems/"
],
"guid": "15a4babe-ae38-41ef-8aed-76f0551c79a8",
"attackType": "Untargeted Attack"
},
{
"name": "Code Red Worm Defaces Automation Web Pages",
"year": 2001,
"industry": "Petroleum",
"sources": [
"https://www.risidata.com/Database/Detail/code-red-worm-defaces-automation-web-pages"
],
"guid": "b1c4b7da-8037-46d7-a128-4218174cc2cc",
"attackType": "Untargeted Attack"
},
{
"name": "Hackers Target Cal - ISO System",
"year": 2001,
"industry": "Power and Utilities",
"sources": [
"Hackers Victimize Cal-ISO, La Times, accessed 17/03/2021",
"https://www.sans.org/reading-room/whitepapers/hackers/hackers-turn-lights-off-vulnerability-power-grid-electronic-attack-606"
],
"guid": "646fd6b7-a61c-49a7-bd48-f76e3a0d3858",
"attackType": "Targeted Attack"
},
{
"name": "Hackers Crash Controller via Web Service",
"year": 2002,
"industry": "Electronic Manufacturing",
"sources": [
"https://www.risidata.com/Database/Detail/hackers-crash-controller-via-web-service"
],
"guid": "b9af79b8-ff4e-42d8-b3a3-870acaee06db",
"attackType": "Untargeted Attack"
},
{
"name": "Hacker Changes Chemical Plant Set Points via Modem",
"year": 2002,
"industry": "Chemical",
"sources": [
"https://www.risidata.com/Database/Detail/hacker-changes-chemical-plant-set-points-via-modem"
],
"guid": "f3ce8482-c06b-4eaa-8f14-64bb420bfe79",
"attackType": "Unknown"
},
{
"name": "Virus Infection of Operator Training Simulator",
"year": 2002,
"industry": "Petroleum",
"sources": [
"https://www.risidata.com/Database/Detail/virus-infection-of-operator-training-simulator"
],
"guid": "c09190b6-8016-4f94-96ce-83fe997292d6",
"attackType": "Unknown"
},
{
"name": "Ski Gondola Worker Shutdown Control System",
"year": 2002,
"industry": "Transportation",
"sources": [
"https://www.risidata.com/Database/Detail/ski-gondola-worker-shutdown-control-system"
],
"guid": "5c20b9fd-4030-4063-acfc-e9a5f1b38bc4",
"attackType": "Disgruntled Employee"
},
{
"name": "Electronic Sabatoge of Venezuela Oil Operations",
"year": 2002,
"industry": "Petroleum",
"sources": [
"https://www.sia-partners.com/en/news-and-publications/from-our-experts/cybersecurity-energy-implications-security-breach-oil-gas 17/03/2021",
"https://www.tofinosecurity.com/sites/default/files/Cyber_Security_and_The_Pipeline_PGJ_Feb_2009.pdf"
],
"guid": "c965d41d-36d1-4e12-b140-34748f6edeb6",
"attackType": "Targeted Attack"
},
{
"name": "Sobig Virus Strikes CSX Train Signalling System",
"year": 2003,
"industry": "Transportation",
"sources": [
"https://www.cbsnews.com/news/virus-disrupts-train-signals/ ",
"https://www.f-secure.com/v-descs/sobig.shtml"
],
"guid": "24344093-e2ce-4357-b724-e28d259e371f",
"attackType": "Untargeted Attack"
},
{
"name": "Power Industry Slammer #2",
"year": 2003,
"industry": "Power and Utilities",
"sources": [
"https://www.risidata.com/Database/Detail/power-industry-slammer-2",
"https://www.f-secure.com/v-descs/mssqlm.shtml"
],
"guid": "6cf89a31-4530-4f7b-850c-5c3c1484ca19",
"attackType": "Untargeted Attack"
},
{
"name": "Power Industry Slammer #1",
"year": 2003,
"industry": "Power and Utilities",
"sources": [
"https://www.risidata.com/Database/Detail/power-industry-slammer-1",
"https://www.f-secure.com/v-descs/mssqlm.shtml"
],
"guid": "5b78b5e3-e1ad-43e5-9f72-1e1d2dc4deca",
"attackType": "Unknown"
},
{
"name": "Slammer Worm Hits Major US Auto Manufacturer",
"year": 2003,
"industry": "Automotive",
"sources": [
"https://www.risidata.com/Database/Detail/slammer_worm_hits_major_us_auto_manufacturer",
"https://www.f-secure.com/v-descs/mssqlm.shtml"
],
"guid": "ca8ae9c6-912d-46af-90b3-a6a40aa223a5",
"attackType": "Untargeted Attack"
},
{
"name": "Virus Shuts Down AC Jazz Airline Flight Planning Computer",
"year": 2003,
"industry": "Transportation",
"sources": [
"https://edition.cnn.com/2003/TECH/internet/08/21/sobig.virus/index.html",
"https://www.f-secure.com/v-descs/sobig.shtml"
],
"guid": "4b5f740c-c2cb-4123-aebb-308f62e7fadf",
"attackType": "Untargeted Attack"
},
{
"name": "Nacchi Virus Infects Air Canada Check-In System",
"year": 2003,
"industry": "Transportation",
"sources": [
"https://www.risidata.com/Database/Detail/nacchi-virus-infects-air-canada-check-in-system"
],
"guid": "216000ae-a324-4702-b6fc-0dc51d4c3c50",
"attackType": "Untargeted Attack"
},
{
"name": "Slammer Impact on Ohio Nuclear Plant",
"year": 2003,
"industry": "Power and Utilities",
"sources": [
"http://large.stanford.edu/courses/2015/ph241/holloway2/",
"https://www.f-secure.com/v-descs/mssqlm.shtml"
],
"guid": "ce3f4aea-a35e-49c7-8a4e-1f0976df0bfb",
"attackType": "Untargeted Attack"
},
{
"name": "Infected New HMI Infects Chemical Plant DCS",
"year": 2003,
"industry": "Chemical",
"sources": [
"https://www.risidata.com/Database/Detail/infected-new-hmi-infects-chemical-plant-dcs"
],
"guid": "7a8c70af-38ea-4219-9849-dcb399700137",
"attackType": "Untargeted Attack"
},
{
"name": "Blaster Worm Infects Chemical Plant",
"year": 2003,
"industry": "Chemical",
"sources": [
"https://www.risidata.com/Database/Detail/blaster-worm-infects-chemical-plant"
],
"guid": "1cdfd537-87c8-4a9b-a51e-41bb4f9d61d9",
"attackType": "Untargeted Attack"
},
{
"name": "Blaster Infects Onshore Oil Production Control System",
"year": 2003,
"industry": "Petroleum",
"sources": [
"https://www.risidata.com/Database/Detail/blaster-infects-onshore-oil-production-control-system"
],
"guid": "81061f81-fd88-4a06-87e4-59c68852bb0d",
"attackType": "Untargeted Attack"
},
{
"name": "Welchia Worm Infects Automation Network",
"year": 2003,
"industry": "Petroleum",
"sources": [
"https://www.risidata.com/Database/Detail/welchia-worm-infects-automation-network"
],
"guid": "0f2b094d-cf7e-453f-9a52-592ab063448c",
"attackType": "Untargeted Attack"
},
{
"name": "Paper Company Control System Hit By Blaster",
"year": 2003,
"industry": "Pulp and Paper",
"sources": [
"https://www.risidata.com/Database/Detail/paper-company-control-system-hit-by-blaster"
],
"guid": "da8b090f-70fc-41e1-a7bb-fb564d131204",
"attackType": "Untargeted Attack"
},
{
"name": "Baseline Audit Uncovers Virus in Water Control System",
"year": 2003,
"industry": "Water/Waste Water",
"sources": [
"https://www.risidata.com/Database/Detail/baseline-audit-uncovers-virus-in-water-control-system"
],
"guid": "a9339656-19d1-40d0-ab48-27039d3dc19e",
"attackType": "Untargeted Attack"
},
{
"name": "Nachi Worm on Advanced Process Control Servers",
"year": 2003,
"industry": "Chemical",
"sources": [
"https://www.risidata.com/Database/Detail/nachi-worm-on-advanced-process-control-servers"
],
"guid": "37c4999e-2d4c-43b8-94b6-664f63c99073",
"attackType": "Untargeted Attack"
},
{
"name": "Slammer Impacts Offshore Platforms",
"year": 2003,
"industry": "Petroleum",
"sources": [
"https://www.risidata.com/Database/Detail/slammer-impacts-offshore-platforms"
],
"guid": "f2519046-788f-4ff7-ab1c-d389377b75bc",
"attackType": "Untargeted Attack"
},
{
"name": "SQL Slammer Impacts Drill Site",
"year": 2003,
"industry": "Petroleum",
"sources": [
"https://www.risidata.com/Database/Detail/sql-slammer-impacts-drill-site"
],
"guid": "0c832965-594f-4e76-bbc0-d00c3c44e4eb",
"attackType": "Untargeted Attack"
},
{
"name": "Slammer Infected Laptop Shuts Down DCS",
"year": 2003,
"industry": "Petroleum",
"sources": [
"https://www.risidata.com/Database/Detail/slammer-infected-laptop-shuts-down-dcs",
"https://www.f-secure.com/v-descs/mssqlm.shtml"
],
"guid": "b3719702-02a5-41ad-b0d9-a27d2b1ce164",
"attackType": "Untargeted Attack"
},
{
"name": "Blaster Impacts HMI Stations in Smelter",
"year": 2003,
"industry": "Metals",
"sources": [
"https://www.risidata.com/Database/Detail/blaster-impacts-hmi-stations-in-smelter"
],
"guid": "fd71de83-8c93-4bd7-8798-f9f4900bfb15",
"attackType": "Untargeted Attack"
},
{
"name": "Exel Transportation services hack",
"year": 2004,
"industry": "Transportation",
"sources": [
"https://news.softpedia.com/news/61-Year-Old-From-Texas-Convicted-For-Hacking-into-Former-Employer-s-Network-334276.shtml"
],
"guid": "f62bbeb6-2255-41e3-81a3-45df58cea588",
"attackType": "Disgruntled Employee"
},
{
"name": "Backdoor Trojan Attack on Manufacturing Lab",
"year": 2004,
"industry": "Electronic Manufacturing",
"sources": [
"https://www.risidata.com/Database/Detail/backdoor-trojan-attack-on-manufacturing-lab"
],
"guid": "50f2d338-f33b-4d9a-ad5e-4aa36d514157",
"attackType": "Unknown"
},
{
"name": "Unauthorized Connection Permits Sasser Infection",
"year": 2004,
"industry": "Unknown",
"sources": [
"https://www.risidata.com/Database/Detail/unauthorized-connection-permits-sasser-infection"
],
"guid": "244d7550-7026-49e6-a4cc-b139f006946a",
"attackType": "Untargeted Attack"
},
{
"name": "Korgo Worm Infects 20 Workstations",
"year": 2004,
"industry": "Unknown",
"sources": [
"https://www.risidata.com/Database/Detail/korgo-worm-infects-20-workstations"
],
"guid": "b4cd112f-a14b-4218-8fed-1494a2e867d7",
"attackType": "Untargeted Attack"
},
{
"name": "Sasser Infection from the Enterprise Network",
"year": 2004,
"industry": "Other",
"sources": [
"https://www.risidata.com/Database/Detail/Sasser_Infection_from_the_Enterprise_Network"
],
"guid": "e38d7447-0c94-425f-9b5e-5dea4e246151",
"attackType": "Untargeted Attack"
},
{
"name": "Trojan Backdoor on Water SCADA System",
"year": 2004,
"industry": "Water/Waste Water",
"sources": [
"https://www.risidata.com/Database/Detail/trojan-backdoor-on-water-scada-system"
],
"guid": "dfdfb248-7c1d-4be0-b939-4977aa5b7972",
"attackType": "Unknown"
},
{
"name": "Worm attack on Drilling Control system",
"year": 2004,
"industry": "Petroleum",
"sources": [
"https://www.risidata.com/Database/Detail/worm-attack-on-drilling-control-system"
],
"guid": "8cf05c89-ae2b-466b-ab5f-543cb222a1c5",
"attackType": "Untargeted Attack"
},
{
"name": "Sasser Worm Causes Loss of View in Chemicals Plant",
"year": 2004,
"industry": "Chemical",
"sources": [
"https://www.risidata.com/Database/Detail/sasser-worm-infection-in-process-control-system",
"https://www.f-secure.com/v-descs/sasser.shtml"
],
"guid": "b8b6c09c-4f45-4a5a-914c-9a4055ae2f0f",
"attackType": "Unknown"
},
{
"name": "Sasser Worm Hits British Airways",
"year": 2004,
"industry": "Transportation",
"sources": [
"https://www.zdnet.com/article/virus-update-sasser-grounds-ba-as-hype-takes-hold/",
"https://www.f-secure.com/v-descs/sasser.shtml"
],
"guid": "a85d088f-8b4d-4a2f-8e2a-63f46159c37d",
"attackType": "Untargeted Attack"
},
{
"name": "Two Viruses Cause Near Miss With Process Control Networks (PCN) in Africa",
"year": 2004,
"industry": "Petroleum",
"sources": [
"https://www.risidata.com/Database/Detail/two-viruses-cause-near-miss-with-process-control-networks-pcn-in-africa"
],
"guid": "afee4378-b128-4aea-abb6-e53875541b99",
"attackType": "Untargeted Attack"
},
{
"name": "SCADA Workstation Infected by W32/Korgo Worm",
"year": 2004,
"industry": "Power and Utilities",
"sources": [
"https://www.risidata.com/Database/Detail/scada-workstation-infected-by-w32-korgo-worm",
"https://www.sophos.com/en-us/threat-center/threat-analyses/viruses-and-spyware/W32~Korgo-Q/detailed-analysis.aspx"
],
"guid": "495ba7e4-7c68-465f-9bd6-f3e29a9d0d2b",
"attackType": "Untargeted Attack"
},
{
"name": "Sasser Worm Infection in Process Control System",
"year": 2004,
"industry": "Petroleum",
"sources": [
"https://www.risidata.com/Database/Detail/sasser-worm-infection-in-process-control-system",
"https://www.f-secure.com/v-descs/sasser.shtml"
],
"guid": "e3837dd6-fbe2-4604-a4c0-04364e7d8e6a",
"attackType": "Untargeted Attack"
},
{
"name": "UK Maritime and Coastguard Agency Hit by Sasser Worm",
"year": 2004,
"industry": "Other",
"sources": [
"http://news.bbc.co.uk/2/hi/technology/3682803.stm",
"https://www.f-secure.com/v-descs/sasser.shtml"
],
"guid": "1c614b91-fb91-43ca-b5eb-e9507d0ce7db",
"attackType": "Untargeted Attack"
},
{
"name": "Routine Audit of SCADA Laptop Identifies Virus",
"year": 2005,
"industry": "Water/Waste Water",
"sources": [
"https://www.risidata.com/Database/Detail/routine-audit-of-scada-laptop-identifies-virus"
],
"guid": "fb912716-7d65-43d0-9ae3-9d702acf62bc",
"attackType": "Untargeted Attack"
},
{
"name": "E-Tag Incident",
"year": 2005,
"industry": "Power and Utilities",
"sources": [
"https://www.risidata.com/Database/Detail/e-tag-incident"
],
"guid": "80f48ade-3e03-4087-bd02-ecb297b9b2ea",
"attackType": "Unknown"
},
{
"name": "Zotob, PnP Worms Hit 13 Automotive Manufacturing Plants",
"year": 2005,
"industry": "Automotive",
"sources": [
"https://www.eweek.com/security/zotob-pnp-worms-slam-13-daimlerchrysler-plants/ 19/03/2021",
"https://www.f-secure.com/v-descs/zotob_a.shtm"
],
"guid": "2066efcb-1ab1-4c7a-a238-50584ac3116e",
"attackType": "Untargeted Attack"
},
{
"name": "Cancer Treatment Delayed by Virus",
"year": 2006,
"industry": "Other",
"sources": [
"https://www.risidata.com/Database/Detail/cancer_treatment_delayed_by_virus"
],
"guid": "fe49b966-db61-4f03-8760-da098bf430e6",
"attackType": "Unknown"
},
{
"name": "Power Plant Security Information Leaked Onto Internet",
"year": 2006,
"industry": "Power and Utilities",
"sources": [
"https://www.baselinemag.com/c/a/Projects-Security/Security-Breach-Power-Plants-Data-Leaks-Onto-Net"
],
"guid": "4f014ab3-4fee-41e7-918b-434a3513c0e6",
"attackType": "Targeted Attack"
},
{
"name": "Trojan Found on SCADA Server",
"year": 2006,
"industry": "General Manufacturing",
"sources": [
"https://www.risidata.com/Database/Detail/trojan_found_on_scada_server"
],
"guid": "54a9905c-4826-4a62-abf0-70f99e0369ea",
"attackType": "Unknown"
},
{
"name": "Engineers Hack into Los Angeles Traffic Signal Computer",
"year": 2006,
"industry": "Transportation",
"sources": [
"https://www.computerworld.com/article/2549204/two-charged-with-hacking-la-traffic-lights.html"
],
"guid": "ba5ad24b-a07f-4059-9798-4fa09900c3d6",
"attackType": "Disgruntled Employee"
},
{
"name": "Power Network Survives Virus Attack",
"year": 2006,
"industry": "Power and Utilities",
"sources": [
"https://www.risidata.com/Database/Detail/power_network_survives_virus_attack",
"https://www.f-secure.com/v-descs/nyxem_e.shtml"
],
"guid": "3e535e13-2d95-40cd-9a0b-06cb616d51fa",
"attackType": "Unknown"
},
{
"name": "Pennsylvania Water Company Hack",
"year": 2006,
"industry": "Water/Waste Water",
"sources": [
"https://www.computerworld.com/article/2547938/hackers-break-into-water-system-network.html"
],
"guid": "ae6eb76f-d311-4fdf-9a32-f48aa448fca3",
"attackType": "Untargeted Attack"
},
{
"name": "California Canal System Hack",
"year": 2007,
"industry": "Water/Waste Water",
"sources": [
"https://www.computerworld.com/article/2540235/insider-charged-with-hacking-california-canal-system.html"
],
"guid": "10ec3019-76a1-4484-b1a1-b37b8cdc8596",
"attackType": "Disgruntled Employee"
},
{
"name": "Former System Administrator Sentenced for Wrecking Corporate Servers",
"year": 2007,
"industry": "General Manufacturing",
"sources": [
"https://www.csoonline.com/article/2123366/former-worker-sentenced-for-wrecking-servers.html"
],
"guid": "da71191e-b47a-4a0d-a66f-6903212236f8",
"attackType": "Disgruntled Employee"
},
{
"name": "Schoolboy Hacks into Polish Tram System",
"year": 2008,
"industry": "Transportation",
"sources": [
"https://www.itnews.com.au/news/teenager-hacks-polish-tram-system-100838"
],
"guid": "c48fe913-d2f9-4fd7-94a5-454aed6b581e",
"attackType": "Targeted Attack"
},
{
"name": "Computer Virus Infects Three London Hospitals",
"year": 2008,
"industry": "Other",
"sources": [
"https://www.networkworld.com/article/2261723/nhs-worm-infection-was--entirely-avoidable---says-review.amp.html",
"https://en.wikipedia.org/wiki/Mydoom"
],
"guid": "f9768ff1-edd0-48b3-b81c-0bbba50e7b95",
"attackType": "Untargeted Attack"
},
{
"name": "Car Manufacturer Infected with Computer Virus",
"year": 2008,
"industry": "Automotive",
"sources": [
"https://www.risidata.com/Database/Detail/car_manufacturer_infected_with_computer_virus"
],
"guid": "b4567d25-264b-4a3f-8c96-3320cedf3af0",
"attackType": "Unknown"
},
{
"name": "Hacker Activates Emergency Sirens",
"year": 2008,
"industry": "Other",
"sources": [
"https://www.risidata.com/Database/Detail/hacker_activates_emergency_sirens"
],
"guid": "2f361a62-dc02-4d1c-a16d-cb15c6d9e216",
"attackType": "Targeted Attack"
},
{
"name": "Dow Chemical company Operation Aurora",
"year": 2009,
"industry": "Chemical",
"sources": [
"https://github.com/vz-risk/vcdb"
],
"guid": "4c959249-a832-4b40-814c-c9226b663f41",
"attackType": "Targeted Attack"
},
{
"name": "Environmental Southland Target of Cyber Vandals",
"year": 2009,
"industry": "Other",
"sources": [
"https://www.risidata.com/Database/Detail/environmental_southland_target_of_cyber_vandals"
],
"guid": "6408741d-964a-4a7d-b775-6f5fd2fbff57",
"attackType": "Unknown"
},
{
"name": "Texas Road Sign Hack",
"year": 2009,
"industry": "Transportation",
"sources": [
"https://www.wired.com/2009/02/austin-road-sig/"
],
"guid": "d7a79d9e-9c01-4d0e-8cfc-b8d34ba2dafc",
"attackType": "Targeted Attack"
},
{
"name": "Hospital HVAC Hack",
"year": 2009,
"industry": "Other",
"sources": [
"https://www.wired.com/2011/03/ghostexodus-2/"
],
"guid": "ed1f5b16-88ba-4765-8669-bfb02e4ef556",
"attackType": "Targeted Attack"
},
{
"name": "Texas Power Company Hack",
"year": 2009,
"industry": "Power and Utilities",
"sources": [
"https://www.wired.com/2009/05/efh/"
],
"guid": "43f4881b-44e2-4ce7-96f8-3a4c98b99c15",
"attackType": "Disgruntled Employee"
},
{
"name": "PC_SALITY.EN Virus Infects DCS Servers and Historians",
"year": 2009,
"industry": "Chemical",
"sources": [
"https://www.risidata.com/Database/Detail/pc_sality.en_virus_infects_dcs_servers_and_historians"
],
"guid": "32289225-1d17-42ae-b630-316753a20777",
"attackType": "Untargeted Attack"
},
{
"name": "Computer Virus Strikes Two Scottish Hospitals",
"year": 2009,
"industry": "Other",
"sources": [
"https://www.theregister.com/Print/2009/03/09/scot_hostpitals_malware_infection/",
"https://www.theregister.com/2009/01/20/sheffield_conficker",
"https://www.f-secure.com/v-descs/worm_w32_downadup_a.shtml"
],
"guid": "a13885dd-5a8d-4335-8265-37fb703ba94b",
"attackType": "Untargeted Attack"
},
{
"name": "Hacker Disabled Offshore Oil Platforms",
"year": 2009,
"industry": "Petroleum",
"sources": [
"https://www.wired.com/2009/03/feds-hacker-dis/",
"https://www.wired.com/images_blogs/threatlevel/files/azar.pdf"
],
"guid": "0a24a0c9-8184-4281-8505-380f5ac6b0ae",
"attackType": "Disgruntled Employee"
},
{
"name": "Malware Shuts Down Milling Factory",
"year": 2010,
"industry": "General Manufacturing",
"sources": [
"https://www.risidata.com/Database/Detail/malware-shuts-down-milling-factory",
"https://collaborate.mitre.org/attackics/index.php/Software/S0010"
],
"guid": "a0480978-baa8-4919-aa5c-54bbd3c6e807",
"attackType": "Targeted Attack"
},
{
"name": "Malware Targets Uranium Enrichment Facility",
"year": 2010,
"industry": "Power and Utilities",
"sources": [
"https://www.risidata.com/Database/Detail/malware_targets_uranium_enrichment_facility",
"https://collaborate.mitre.org/attackics/index.php/Software/S0010"
],
"guid": "0c7720ef-e085-4d10-aa74-ba08313293ae",
"attackType": "Targeted Attack"
},
{
"name": "Disgruntled Employee Remotely Disables Cars using the Webtech Plus System",
"year": 2010,
"industry": "Automotive",
"sources": [
"https://www.csmonitor.com/Technology/Horizons/2010/0318/Disgruntled-hacker-remotely-disables-100-cars",
"https://www.wired.com/2010/03/hacker-bricks-cars/"
],
"guid": "823004ec-00da-4b8c-90dd-e46f31521551",
"attackType": "Disgruntled Employee"
},
{
"name": "Night dragon attacks",
"year": 2011,
"industry": "Petroleum",
"sources": [
"Global Energy Cyberattacks: Night Dragon - McAfee"
],
"guid": "4660fad9-a3da-4a2a-aeb6-cab272087f99",
"attackType": "Targeted Attack"
},
{
"name": "Hacker froze operations at pharmaceutical company",
"year": 2011,
"industry": "Pharmaceutical",
"sources": [
"https://www.inforisktoday.com/guilty-plea-in-drug-company-hack-a-3968",
"https://www.wired.com/images_blogs/threatlevel/2011/08/Jason-Cornish-Complaint.pdf"
],
"guid": "6f39b3f0-5d6b-44f6-b808-76e3fe323b94",
"attackType": "Targeted Attack"
},
{
"name": "Malware Shuts Down Hospital",
"year": 2011,
"industry": "Other",
"sources": [
"https://nakedsecurity.sophos.com/2011/12/13/malware-shuts-down-hospital-near-atlanta-georgia/"
],
"guid": "1b42d04e-8650-4612-a2b1-a3b34ff9ab54",
"attackType": "Unknown"
},
{
"name": "Steel plant infected with Conficker",
"year": 2011,
"industry": "Metals",
"sources": [
"https://www.risidata.com/Database/Detail/steel_plant_infected_with_conifcker",
"https://www.f-secure.com/v-descs/worm_w32_downadup_a.shtml"
],
"guid": "6a8726c8-8958-4e5b-a3f4-1f50d95ed1f1",
"attackType": "Unknown"
},
{
"name": "Flame attack on Iranian oil ministry",
"year": 2012,
"industry": "Petroleum",
"sources": [
"https://www.computerworld.com/article/2503678/attacks-on-iranian-oil-industry-led-to-flame-malware-find.html",
"https://community.broadcom.com/symantecenterprise/communities/community-home/librarydocuments/viewdocument?DocumentKey=aa61045b-886c-4a03-945c-d7993c5d39dd&CommunityKey=1ecf5f55-9545-44d6-b0f4-4e4a7f5f5e68&tab=librarydocuments"
],
"guid": "7cd00c38-74ee-4c31-b143-27e23da94e99",
"attackType": "Targeted Attack"
},
{
"name": "Wastewater Treatment District Hacked",
"year": 2012,
"industry": "Water/Waste Water",
"sources": [
"http://floridakeyssheriff.blogspot.com/2012/03/key-west-man-charged-with-illegally.html"
],
"guid": "84ea7228-c550-46a6-a209-f2be9880095d",
"attackType": "Disgruntled Employee"
},
{
"name": "Industrial Control System Hacked Using Backdoor Posted Online",
"year": 2012,
"industry": "Other",
"sources": [
"https://info.publicintelligence.net/FBI-AntisecICS.pdf"
],
"guid": "169731c2-7e7c-40a1-a7d1-7ce630550ce9",
"attackType": "Targeted Attack"
},
{
"name": "Aramco hit by Shamoon",
"year": 2012,
"industry": "Petroleum",
"sources": [
"https://money.cnn.com/2015/08/05/technology/aramco-hack/",
"https://core.ac.uk/download/pdf/322474772.pdf",
"http://www.symantec.com/connect/blogs/shamoon-attacks"
],
"guid": "1f2571ba-631f-4e7f-a3b3-bc1523c8db5d",
"attackType": "Targeted Attack"
},
{
"name": "U. S. Electric Utility Virus Infection",
"year": 2012,
"industry": "Power and Utilities",
"sources": [
"https://web.archive.org/web/20130116212835/https://www.us-cert.gov/control_systems/pdf/ICS-CERT_Monthly_Monitor_Oct-Dec2012.pdf"
],
"guid": "7cfd555e-01b3-48dc-8ca6-cd9d0e4efd33",
"attackType": "Untargeted Attack"
},
{
"name": "Gas Company Virus Infection",
"year": 2012,
"industry": "Petroleum",
"sources": [
"https://www.risidata.com/Database/Detail/gas_company_virus_infection"
],
"guid": "b6e34ee4-2493-4835-8e67-22cfe596035e",
"attackType": "Unknown"
},
{
"name": "Iranian Oil Terminal offline after malware attack",
"year": 2012,
"industry": "Petroleum",
"sources": [
"https://www.reuters.com/article/us-iran-oil-cyber-idUSBRE83M0YX20120423"
],
"guid": "32b36c49-80ad-4131-a7ba-7bfa28ba444f",
"attackType": "Unknown"
},
{
"name": "Toyota contractor information theft",
"year": 2012,
"industry": "Automotive",
"sources": [
"https://www.wired.com/images_blogs/threatlevel/2012/08/Toyota_Shahulhameed_Complaint.pdf"
],
"guid": "34d0392d-9f18-45ef-998c-1f625c07fd29",
"attackType": "Disgruntled Employee"
},
{
"name": "Shamoon virus knocks out computers at Qatari gas firm RasGas",
"year": 2012,
"industry": "Petroleum",
"sources": [
"http://wired.com/2012/08/hack-attack-strikes-rasgas/",
"http://www.symantec.com/connect/blogs/shamoon-attacks"
],
"guid": "bf70ac4e-8840-4d32-9450-5733b2225fcf",
"attackType": "Targeted Attack"
},
{
"name": "Irainian cyber attack on new york dam",
"year": 2013,
"industry": "Water/Waste Water",
"sources": [
"https://time.com/4270728/iran-cyber-attack-dam-fbi/",
"https://www.justice.gov/opa/file/834996/download"
],
"guid": "1cb89c03-a3ac-4fcf-8a78-91b77aa9c77d",
"attackType": "Targeted Attack"
},
{
"name": "Cyber attack Port of antwerp",
"year": 2013,
"industry": "Transportation",
"sources": [
"https://www.seatrade-maritime.com/europe/antwerp-incident-highlights-maritime-it-security-risk",
"https://www.bbc.com/news/world-europe-24539417"
],
"guid": "ed72e8a0-6564-4687-9914-bca87b40ca78",
"attackType": "Targeted Attack"
},
{
"name": "Chinese citizen sentenced in military data-theft case",
"year": 2013,
"industry": "Other",
"sources": [
"https://www.washingtonpost.com/world/national-security/chinese-citizen-sentenced-in-military-data-theft-case/2013/03/25/dc4567fa-9593-11e2-ae32-9ef60436f5c1_story.html"
],
"guid": "af4e82d9-7219-438a-8707-0e08b1429c53",
"attackType": "Targeted Attack"
},
{
"name": "Israeli tunnel hit by cyber attack",
"year": 2013,
"industry": "Transportation",
"sources": [
"https://eu.usatoday.com/story/tech/2013/10/27/ap-exclusive-israeli-tunnel-hit-by-cyber-attack/3281133/"
],
"guid": "1d7b53bc-0fb0-45bc-9fdf-fdf045224b4a",
"attackType": "Targeted Attack"
},
{
"name": "Hyundai Merchant Marine Kimsuky APT attack",
"year": 2013,
"industry": "Transportation",
"sources": [
"https://securelist.com/the-kimsuky-operation-a-north-korean-apt/57915/",
"https://attack.mitre.org/groups/G0094/"
],
"guid": "60b6eaf3-7b13-47d2-9fd1-e6b8c51b85a2",
"attackType": "Targeted Attack"
},
{
"name": "Virus shuts down county highway department network",
"year": 2013,
"industry": "Transportation",
"sources": [
"https://www.nbcchicago.com/news/local/virus-causes-massive-shutdown-at-cook-county-highway-department/1959675"
],
"guid": "c24492c5-aed6-474a-8252-4ec6bce1c2cc",
"attackType": "Unknown"
},
{
"name": "TGB water station hacks",
"year": 2014,
"industry": "Water/Waste Water",
"sources": [
"https://www.bleepingcomputer.com/news/security/fired-employee-hacks-and-shuts-down-smart-water-readers-in-five-us-cities/"
],
"guid": "a578cd69-4ba0-456a-b293-981b4399184d",
"attackType": "Disgruntled Employee"
},
{
"name": "Control systems device remotely accessed by threat actor",
"year": 2014,
"industry": "Unknown",
"sources": [
"https://web.archive.org/web/20140923170256/https://ics-cert.us-cert.gov/sites/default/files/Monitors/ICS-CERT_Monitor_%20Jan-April2014.pdf"
],
"guid": "d35b7f52-1ec3-4852-95ab-19b7820bc5a7",
"attackType": "Targeted Attack"
},
{
"name": "Public utility compromised after brute-force hack attack, says Homeland Security",
"year": 2014,
"industry": "Power and Utilities",
"sources": [
"https://web.archive.org/web/20140923170256/https://ics-cert.us-cert.gov/sites/default/files/Monitors/ICS-CERT_Monitor_%20Jan-April2014.pdf"
],
"guid": "283a194c-92c4-4bc6-aa29-0f824131238f",
"attackType": "Targeted Attack"
},
{
"name": "German Steel Mill Cyber Attack",
"year": 2014,
"industry": "Metals",
"sources": [
"https://ics.sans.org/media/ICS-CPPE-case-Study-2-German-Steelworks_Facility.pdf"
],
"guid": "bd9478c1-4158-42e8-96cf-f2ad4e228e51",
"attackType": "Targeted Attack"
},
{
"name": "Russian-Based Dragonfly Group Attacks Energy Industry",
"year": 2014,
"industry": "Power and Utilities",
"sources": [