forked from MISP/misp-galaxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mitre_malware.json
1703 lines (1703 loc) · 74.8 KB
/
mitre_malware.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
{
"type": "mitre-malware",
"version": 4,
"name": "Malware",
"source": "https://github.com/mitre/cti",
"uuid": "d752161c-78f6-11e7-a0ea-bfa79b407ce4",
"authors": [
"MITRE"
],
"description": "Name of ATT&CK software",
"values": [
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0138",
"https://www2.fireeye.com/rs/848-DID-242/images/APT28-Center-of-Storm-2017.pdf",
"https://www.fireeye.com/content/dam/fireeye-www/global/en/current-threats/pdfs/rpt-apt28.pdf"
],
"uuid": "2dd34b01-6110-4aac-835d-b5e7b936b0be",
"synonyms": [
"OLDBAIT",
"Sasfis"
]
},
"value": "OLDBAIT",
"description": "OLDBAIT is a credential harvester used by APT28.[[Citation: FireEye APT28]][[Citation: FireEye APT28 January 2017]]\n\nAliases: OLDBAIT, Sasfis"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0157",
"https://www.fireeye.com/blog/threat-research/2017/05/cyber-espionage-apt32.html"
],
"uuid": "f5ac89a7-e129-43b7-bd68-e3cb1e5a3ba2"
},
"value": "SOUNDBITE",
"description": "SOUNDBITE is a signature backdoor used by APT32.[[Citation: FireEye APT32 May 2017]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0050",
"https://www.f-secure.com/documents/996508/1030745/dukes%20whitepaper.pdf"
],
"uuid": "2eb9b131-d333-4a48-9eb4-d8dec46c19ee",
"synonyms": [
"CosmicDuke",
"TinyBaron",
"BotgenStudios",
"NemesisGemina"
]
},
"value": "CosmicDuke",
"description": "CosmicDuke is malware that was used by APT29 from 2010 to 2015.[[Citation: F-Secure The Dukes]]\n\nAliases: CosmicDuke, TinyBaron, BotgenStudios, NemesisGemina"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0132",
"http://blogs.cisco.com/security/h1n1-technical-analysis-reveals-new-capabilities"
],
"uuid": "f8dfbc54-b070-4224-b560-79aaa5f835bd"
},
"value": "H1N1",
"description": "H1N1 is a malware variant that has been distributed via a campaign using VBA macros to infect victims. Although it initially had only loader capabilities, it has evolved to include information-stealing functionality.[[Citation: Cisco H1N1 Part 1]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0035",
"https://www2.fireeye.com/rs/fireye/images/rpt-apt30.pdf"
],
"uuid": "8b880b41-5139-4807-baa9-309690218719"
},
"value": "SPACESHIP",
"description": "SPACESHIP is malware developed by APT30 that allows propagation and exfiltration of data over removable devices. APT30 may use this capability to exfiltrate data across air-gaps.[[Citation: FireEye APT30]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0087",
"http://www.threatgeek.com/2016/01/introducing-hi-zor-rat.html"
],
"uuid": "5967cc93-57c9-404a-8ffd-097edfa7bdfc"
},
"value": "Hi-Zor",
"description": "Hi-Zor is a remote access tool (RAT) that has characteristics similar to Sakula. It was used in a campaign named INOCNATION.[[Citation: Fidelis Hi-Zor]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0146",
"https://www.fireeye.com/blog/threat-research/2017/03/fin7%20spear%20phishing.html"
],
"uuid": "4f6aa78c-c3d4-4883-9840-96ca2f5d6d47",
"synonyms": [
"TEXTMATE",
"DNSMessenger"
]
},
"value": "TEXTMATE",
"description": "TEXTMATE is a second-stage PowerShell backdoor that is memory-resident. It was observed being used along with POWERSOURCE in February 2017.[[Citation: FireEye FIN7 March 2017]]\n\nAliases: TEXTMATE, DNSMessenger"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0056",
"http://www.cylance.com/assets/Cleaver/Cylance%20Operation%20Cleaver%20Report.pdf"
],
"uuid": "fde50aaa-f5de-4cb8-989a-babb57d6a704",
"synonyms": [
"Net Crawler",
"NetC"
]
},
"value": "Net Crawler",
"description": "Net Crawler is an intranet worm capable of extracting credentials using credential dumpers and spreading to systems on a network over SMB by brute forcing accounts with recovered passwords and using PsExec to execute a copy of Net Crawler.[[Citation: Cylance Cleaver]]\n\nAliases: Net Crawler, NetC"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0089",
"https://www.f-secure.com/documents/996508/1030745/blackenergy%20whitepaper.pdf"
],
"uuid": "54cc1d4f-5c53-4f0e-9ef5-11b4998e82e4",
"synonyms": [
"BlackEnergy",
"Black Energy"
]
},
"value": "BlackEnergy",
"description": "BlackEnergy is a malware toolkit that has been used by both criminal and APT actors. It dates back to at least 2007 and was originally designed to create botnets for use in conducting Distributed Denial of Service (DDoS) attacks, but its use has evolved to support various plug-ins. It is well known for being used during the confrontation between Georgia and Russia in 2008, as well as in targeting Ukrainian institutions. Variants include BlackEnergy 2 and BlackEnergy 3.[[Citation: F-Secure BlackEnergy 2014]]\n\nAliases: BlackEnergy, Black Energy"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0124",
"http://researchcenter.paloaltonetworks.com/2016/05/unit42-new-wekby-attacks-use-dns-requests-as-command-and-control-mechanism/"
],
"uuid": "b96680d1-5eb3-4f07-b95c-00ab904ac236"
},
"value": "Pisloader",
"description": "Pisloader is a malware family that is notable due to its use of DNS as a C2 protocol as well as its use of anti-analysis tactics. It has been used by APT18 and is similar to another malware family, HTTPBrowser, that has been used by the group.[[Citation: Palo Alto DNS Requests]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0158",
"https://www.fireeye.com/blog/threat-research/2017/05/cyber-espionage-apt32.html"
],
"uuid": "f9c6da03-8cb1-4383-9d52-a614c42082bf"
},
"value": "PHOREAL",
"description": "PHOREAL is a signature backdoor used by APT32.[[Citation: FireEye APT32 May 2017]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0093",
"http://www.symantec.com/content/en/us/enterprise/media/security%20response/whitepapers/Dragonfly%20Threat%20Against%20Western%20Energy%20Suppliers.pdf"
],
"uuid": "083bb47b-02c8-4423-81a2-f9ef58572974",
"synonyms": [
"Backdoor.Oldrea",
"Havex"
]
},
"value": "Backdoor.Oldrea",
"description": "Backdoor.Oldrea is a backdoor used by Dragonfly. It appears to be custom malware authored by the group or specifically for it.[[Citation: Symantec Dragonfly]]\n\nAliases: Backdoor.Oldrea, Havex"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0144",
"https://www.pwc.co.uk/cyber-security/pdf/cloud-hopper-annex-b-final.pdf",
"http://researchcenter.paloaltonetworks.com/2017/02/unit42-menupass-returns-new-malware-new-attacks-japanese-academics-organizations/",
"http://blog.jpcert.or.jp/2017/02/chches-malware--93d6.html"
],
"uuid": "dc5d1a33-62aa-4a0c-aa8c-589b87beb11e",
"synonyms": [
"ChChes",
"Scorpion",
"HAYMAKER"
]
},
"value": "ChChes",
"description": "ChChes is a Trojan that appears to be used exclusively by menuPass. It was used to target Japanese organizations in 2016. Its lack of persistence methods suggests it may be intended as a first-stage tool.[[Citation: Palo Alto menuPass Feb 2017]][[Citation: JPCERT ChChes Feb 2017]][[Citation: PWC Cloud Hopper Technical Annex April 2017]]\n\nAliases: ChChes, Scorpion, HAYMAKER"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0047",
"http://blog.trendmicro.com/trendlabs-security-intelligence/hacking-team-uses-uefi-bios-rootkit-to-keep-rcs-9-agent-in-target-systems/"
],
"uuid": "4b62ab58-c23b-4704-9c15-edd568cd59f8"
},
"value": "Hacking Team UEFI Rootkit",
"description": "Hacking Team UEFI Rootkit is a rootkit developed by the company Hacking Team as a method of persistence for remote access software.[[Citation: TrendMicro Hacking Team UEFI]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0151",
"https://www.fireeye.com/blog/threat-research/2017/04/fin7-phishing-lnk.html"
],
"uuid": "71ac10de-1103-40a7-b65b-f97dab9769bf"
},
"value": "HALFBAKED",
"description": "HALFBAKED is a malware family consisting of multiple components intended to establish persistence in victim networks.[[Citation: FireEye FIN7 April 2017]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0068",
"http://cdn0.vox-cdn.com/assets/4589853/crowdstrike-intelligence-report-putter-panda.original.pdf"
],
"uuid": "e8268361-a599-4e45-bd3f-71c8c7e700c0"
},
"value": "httpclient",
"description": "httpclient is malware used by Putter Panda. It is a simple tool that provides a limited range of functionality, suggesting it is likely used as a second-stage or supplementary/backup tool.[[Citation: CrowdStrike Putter Panda]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0134",
"http://www.welivesecurity.com/wp-content/uploads/2016/10/eset-sednit-part3.pdf"
],
"uuid": "08d20cd2-f084-45ee-8558-fa6ef5a18519",
"synonyms": [
"Downdelph",
"Delphacy"
]
},
"value": "Downdelph",
"description": "Downdelph is a first-stage downloader written in Delphi that has been used by APT28 in rare instances between 2013 and 2015.[[Citation: ESET Sednit Part 3]]\n\nAliases: Downdelph, Delphacy"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0142",
"https://www.cylance.com/shell-crew-variants-continue-to-fly-under-big-avs-radar"
],
"uuid": "91000a8a-58cc-4aba-9ad0-993ad6302b86"
},
"value": "StreamEx",
"description": "StreamEx is a malware family that has been used by Deep Panda since at least 2015. In 2016, it was distributed via legitimate compromised Korean websites.[[Citation: Cylance Shell Crew Feb 2017]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0078",
"http://researchcenter.paloaltonetworks.com/2016/01/scarlet-mimic-years-long-espionage-targets-minority-activists/"
],
"uuid": "dfb5fa9b-3051-4b97-8035-08f80aef945b"
},
"value": "Psylo",
"description": "Psylo is a shellcode-based Trojan that has been used by Scarlet Mimic. It has similar characteristics as FakeM.[[Citation: Scarlet Mimic Jan 2016]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0061",
"https://securelist.com/files/2015/05/TheNaikonAPT-MsnMM1.pdf"
],
"uuid": "007b44b6-e4c5-480b-b5b9-56f2081b1b7b",
"synonyms": [
"HDoor",
"Custom HDoor"
]
},
"value": "HDoor",
"description": "HDoor is malware that has been customized and used by the Naikon group.[[Citation: Baumgartner Naikon 2015]]\n\nAliases: HDoor, Custom HDoor"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0162",
"https://researchcenter.paloaltonetworks.com/2017/02/unit42-xagentosx-sofacys-xagent-macos-tool/",
"https://researchcenter.paloaltonetworks.com/2016/09/unit42-sofacys-komplex-os-x-trojan/"
],
"uuid": "75c79f95-4c84-4650-9158-510f0ce4831d"
},
"value": "Komplex",
"description": "is a backdoor that has been used by APT28 on OS X and appears to be developed in a similar manner to XAgentOSX[[Citation: XAgentOSX]][[Citation: Sofacy Komplex Trojan]]."
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0004",
"http://www.cylance.com/assets/Cleaver/Cylance%20Operation%20Cleaver%20Report.pdf"
],
"uuid": "c0c45d38-fe57-4cd4-b2b2-9ecd0ddd4ca9"
},
"value": "TinyZBot",
"description": "TinyZBot is a bot written in C# that was developed by Cleaver.[[Citation: Cylance Cleaver]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0031",
"https://www2.fireeye.com/rs/fireye/images/rpt-apt30.pdf"
],
"uuid": "fb261c56-b80e-43a9-8351-c84081e7213d",
"synonyms": [
"BACKSPACE",
"Lecna"
]
},
"value": "BACKSPACE",
"description": "BACKSPACE is a backdoor used by APT30 that dates back to at least 2005.[[Citation: FireEye APT30]]\n\nAliases: BACKSPACE, Lecna"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0048",
"https://www.f-secure.com/documents/996508/1030745/dukes%20whitepaper.pdf"
],
"uuid": "ae9d818d-95d0-41da-b045-9cabea1ca164"
},
"value": "PinchDuke",
"description": "PinchDuke is malware that was used by APT29 from 2008 to 2010.[[Citation: F-Secure The Dukes]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0054",
"https://securelist.com/blog/research/71443/minidionis-one-more-apt-with-a-usage-of-cloud-drives/",
"https://www.f-secure.com/documents/996508/1030745/dukes%20whitepaper.pdf"
],
"uuid": "cbf646f1-7db5-4dc6-808b-0094313949df",
"synonyms": [
"CloudDuke",
"MiniDionis",
"CloudLook"
]
},
"value": "CloudDuke",
"description": "CloudDuke is malware that was used by APT29 in 2015.[[Citation: F-Secure The Dukes]][[Citation: Securelist Minidionis July 2015]]\n\nAliases: CloudDuke, MiniDionis, CloudLook"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0059",
"https://securelist.com/files/2015/05/TheNaikonAPT-MsnMM1.pdf"
],
"uuid": "22addc7b-b39f-483d-979a-1b35147da5de"
},
"value": "WinMM",
"description": "WinMM is a full-featured, simple backdoor used by Naikon.[[Citation: Baumgartner Naikon 2015]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0079",
"http://researchcenter.paloaltonetworks.com/2016/01/scarlet-mimic-years-long-espionage-targets-minority-activists/"
],
"uuid": "463f68f1-5cde-4dc2-a831-68b73488f8f4"
},
"value": "MobileOrder",
"description": "MobileOrder is a Trojan intended to compromise Android mobile devices. It has been used by Scarlet Mimic.[[Citation: Scarlet Mimic Jan 2016]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0060",
"https://securelist.com/files/2015/05/TheNaikonAPT-MsnMM1.pdf"
],
"uuid": "7f8730af-f683-423f-9ee1-5f6875a80481"
},
"value": "Sys10",
"description": "Sys10 is a backdoor that was used throughout 2013 by Naikon.[[Citation: Baumgartner Naikon 2015]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0038",
"https://www.symantec.com/content/en/us/enterprise/media/security%20response/whitepapers/w32%20duqu%20the%20precursor%20to%20the%20next%20stuxnet.pdf"
],
"uuid": "68dca94f-c11d-421e-9287-7c501108e18c"
},
"value": "Duqu",
"description": "Duqu is a malware platform that uses a modular approach to extend functionality after deployment within a target network.[[Citation: Symantec W32.Duqu]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0076",
"http://researchcenter.paloaltonetworks.com/2016/01/scarlet-mimic-years-long-espionage-targets-minority-activists/"
],
"uuid": "bb3c1098-d654-4620-bf40-694386d28921"
},
"value": "FakeM",
"description": "FakeM is a shellcode-based Windows backdoor that has been used by Scarlet Mimic.[[Citation: Scarlet Mimic Jan 2016]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0155",
"https://www.fireeye.com/blog/threat-research/2017/05/cyber-espionage-apt32.html"
],
"uuid": "a89ed72c-202d-486b-9349-6ffc0a61e30a"
},
"value": "WINDSHIELD",
"description": "WINDSHIELD is a signature backdoor used by APT32.[[Citation: FireEye APT32 May 2017]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0028",
"https://www2.fireeye.com/rs/fireye/images/rpt-apt30.pdf"
],
"uuid": "b1de6916-7a22-4460-8d26-6b5483ffaa2a"
},
"value": "SHIPSHAPE",
"description": "SHIPSHAPE is malware developed by APT30 that allows propagation and exfiltration of data over removable devices. APT30 may use this capability to exfiltrate data across air-gaps.[[Citation: FireEye APT30]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0098",
"http://researchcenter.paloaltonetworks.com/2016/02/t9000-advanced-modular-backdoor-uses-complex-anti-analysis-techniques/",
"https://www.fireeye.com/blog/threat-research/2014/03/spear-phishing-the-news-cycle-apt-actors-leverage-interest-in-the-disappearance-of-malaysian-flight-mh-370.html"
],
"uuid": "876f6a77-fbc5-4e13-ab1a-5611986730a3"
},
"value": "T9000",
"description": "T9000 is a backdoor that is a newer variant of the T5000 malware family, also known as Plat1. Its primary function is to gather information about the victim. It has been used in multiple targeted attacks against U.S.-based organizations.[[Citation: FireEye admin@338 March 2014]][[Citation: Palo Alto T9000 Feb 2016]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0014",
"https://www.fireeye.com/content/dam/fireeye-www/global/en/current-threats/pdfs/wp-operation-ke3chang.pdf"
],
"uuid": "67fc172a-36fa-4a35-88eb-4ba730ed52a6"
},
"value": "BS2005",
"description": "BS2005 is malware that was used by Ke3chang in spearphishing campaigns since at least 2011.[[Citation: Villeneuve et al 2014]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0109",
"https://www.fireeye.com/content/dam/fireeye-www/services/pdfs/mandiant-apt1-report-appendix.zip"
],
"uuid": "1d808f62-cf63-4063-9727-ff6132514c22"
},
"value": "WEBC2",
"description": "WEBC2 is a backdoor used by APT1 to retrieve a Web page from a predetermined C2 server.[[Citation: Mandiant APT1 Appendix]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0013",
"http://www.secureworks.com/cyber-threat-intelligence/threats/threat-group-3390-targets-organizations-for-cyberespionage/",
"https://www.fireeye.com/blog/threat-research/2014/06/clandestine-fox-part-deux.html",
"http://labs.lastline.com/an-analysis-of-plugx",
"http://researchcenter.paloaltonetworks.com/2015/04/unit-42-identifies-new-dragonok-backdoor-malware-deployed-against-japanese-targets/"
],
"uuid": "64fa0de0-6240-41f4-8638-f4ca7ed528fd",
"synonyms": [
"PlugX",
"Sogu",
"Kaba"
]
},
"value": "PlugX",
"description": "PlugX is a remote access tool (RAT) that uses modular plugins.[[Citation: Lastline PlugX Analysis]] It has been used by multiple threat groups.[[Citation: FireEye Clandestine Fox Part 2]][[Citation: New DragonOK]][[Citation: Dell TG-3390]]\n\nAliases: PlugX, Sogu, Kaba"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0150",
"https://www.fireeye.com/blog/threat-research/2017/03/dissecting%20one%20ofap.html"
],
"uuid": "6e45f758-7bd9-44b8-a21c-7309614ae176"
},
"value": "POSHSPY",
"description": "POSHSPY is a backdoor that has been used by APT29 since at least 2015. It appears to be used as a secondary backdoor used if the actors lost access to their primary backdoors.[[Citation: FireEye POSHSPY April 2017]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0083",
"https://www.cylance.com/hubfs/2015%20cylance%20website/assets/operation-dust-storm/Op%20Dust%20Storm%20Report.pdf?t=1456259131512"
],
"uuid": "0db09158-6e48-4e7c-8ce7-2b10b9c0c039"
},
"value": "Misdat",
"description": "Misdat is a backdoor that was used by Dust Storm from 2010 to 2011.[[Citation: Cylance Dust Storm]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0011",
"http://www.trendmicro.com/cloud-content/us/pdfs/security-intelligence/white-papers/wp%20the%20taidoor%20campaign.pdf"
],
"uuid": "b143dfa4-e944-43ff-8429-bfffc308c517"
},
"value": "Taidoor",
"description": "Taidoor is malware that has been used since at least 2010, primarily to target Taiwanese government organizations.[[Citation: TrendMicro Taidoor]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0149",
"http://researchcenter.paloaltonetworks.com/2017/03/unit42-trochilus-rat-new-moonwind-rat-used-attack-thai-utility-organizations/"
],
"uuid": "9ea525fa-b0a9-4dde-84f2-bcea0137b3c1"
},
"value": "MoonWind",
"description": "MoonWind is a remote access tool (RAT) that was used in 2016 to target organizations in Thailand.[[Citation: Palo Alto MoonWind March 2017]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0115",
"https://www.proofpoint.com/sites/default/files/proofpoint-operation-transparent-tribe-threat-insight-en.pdf"
],
"uuid": "326af1cd-78e7-45b7-a326-125d2f7ef8f2",
"synonyms": [
"Crimson",
"MSIL/Crimson"
]
},
"value": "Crimson",
"description": "Crimson is malware used as part of a campaign known as Operation Transparent Tribe that targeted Indian diplomatic and military victims.[[Citation: Proofpoint Operation Transparent Tribe March 2016]]\n\nAliases: Crimson, MSIL/Crimson"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0090",
"http://researchcenter.paloaltonetworks.com/2016/02/new-malware-rover-targets-indian-ambassador-to-afghanistan/"
],
"uuid": "6b616fc1-1505-48e3-8b2c-0d19337bff38"
},
"value": "Rover",
"description": "Rover is malware suspected of being used for espionage purposes. It was used in 2015 in a targeted email sent to an Indian Ambassador to Afghanistan.[[Citation: Palo Alto Rover]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0086",
"https://www.cylance.com/hubfs/2015%20cylance%20website/assets/operation-dust-storm/Op%20Dust%20Storm%20Report.pdf?t=1456259131512"
],
"uuid": "166c0eca-02fd-424a-92c0-6b5106994d31"
},
"value": "ZLib",
"description": "ZLib is a full-featured backdoor that was used as a second-stage implant by Dust Storm from 2014 to 2015. It is malware and should not be confused with the compression library from which its name is derived.[[Citation: Cylance Dust Storm]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0139",
"https://www.volexity.com/blog/2016/11/09/powerduke-post-election-spear-phishing-campaigns-targeting-think-tanks-and-ngos/"
],
"uuid": "00c3bfcb-99bd-4767-8c03-b08f585f5c8a"
},
"value": "PowerDuke",
"description": "PowerDuke is a backdoor that was used by APT29 in 2016. It has primarily been delivered through Microsoft Word or Excel attachments containing malicious macros.[[Citation: Volexity PowerDuke November 2016]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0070",
"https://www.threatstream.com/blog/evasive-maneuvers-the-wekby-group-attempts-to-evade-analysis-via-custom-rop",
"http://www.secureworks.com/cyber-threat-intelligence/threats/threat-group-3390-targets-organizations-for-cyberespionage/",
"https://www.threatconnect.com/the-anthem-hack-all-roads-lead-to-china/"
],
"uuid": "e066bf86-9cfb-407a-9d25-26fd5d91e360",
"synonyms": [
"HTTPBrowser",
"Token Control",
"HttpDump"
]
},
"value": "HTTPBrowser",
"description": "HTTPBrowser is malware that has been used by several threat groups.[[Citation: ThreatStream Evasion Analysis]][[Citation: Dell TG-3390]] It is believed to be of Chinese origin.[[Citation: ThreatConnect Anthem]]\n\nAliases: HTTPBrowser, Token Control, HttpDump"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0037",
"https://www2.fireeye.com/rs/848-DID-242/images/rpt-apt29-hammertoss.pdf",
"https://www.f-secure.com/documents/996508/1030745/dukes%20whitepaper.pdf"
],
"uuid": "2daa14d6-cbf3-4308-bb8e-213c324a08e4",
"synonyms": [
"HAMMERTOSS",
"HammerDuke",
"NetDuke"
]
},
"value": "HAMMERTOSS",
"description": "HAMMERTOSS is a backdoor that was used by APT29 in 2015.[[Citation: FireEye APT29]][[Citation: F-Secure The Dukes]]\n\nAliases: HAMMERTOSS, HammerDuke, NetDuke"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0012",
"https://www.fireeye.com/content/dam/fireeye-www/global/en/current-threats/pdfs/rpt-poison-ivy.pdf"
],
"uuid": "b42378e0-f147-496f-992a-26a49705395b",
"synonyms": [
"PoisonIvy",
"Poison Ivy"
]
},
"value": "PoisonIvy",
"description": "PoisonIvy is a popular remote access tool (RAT) that has been used by many groups.[[Citation: FireEye Poison Ivy]]\n\nAliases: PoisonIvy, Poison Ivy"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0030",
"https://securelist.com/files/2015/02/Carbanak%20APT%20eng.pdf"
],
"uuid": "72f54d66-675d-4587-9bd3-4ed09f9522e4",
"synonyms": [
"Carbanak",
"Anunak"
]
},
"value": "Carbanak",
"description": "Carbanak is a remote backdoor used by a group of the same name (Carbanak). It is intended for espionage, data exfiltration, and providing remote access to infected machines.[[Citation: Kaspersky Carbanak]]\n\nAliases: Carbanak, Anunak"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0015",
"https://www.fireeye.com/blog/threat-research/2013/08/survival-of-the-fittest-new-york-times-attackers-evolve-quickly.html"
],
"uuid": "8beac7c2-48d2-4cd9-9b15-6c452f38ac06"
},
"value": "Ixeshe",
"description": "Ixeshe is a malware family that has been used since 2009 to attack targets in East Asia.[[Citation: Moran 2013]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0128",
"https://www.forcepoint.com/sites/default/files/resources/files/forcepoint-security-labs-monsoon-analysis-report.pdf"
],
"uuid": "e9595678-d269-469e-ae6b-75e49259de63"
},
"value": "BADNEWS",
"description": "BADNEWS is malware that has been used by the actors responsible for the MONSOON campaign. Its name was given due to its use of RSS feeds, forums, and blogs for command and control.[[Citation: Forcepoint Monsoon]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0143",
"https://securelist.com/blog/incidents/34344/the-flame-questions-and-answers-51/"
],
"uuid": "ff6840c9-4c87-4d07-bbb6-9f50aa33d498",
"synonyms": [
"Flame",
"Flamer",
"sKyWIper"
]
},
"value": "Flame",
"description": "Flame is a sophisticated toolkit that has been used to collect information since at least 2010, largely targeting Middle East countries.[[Citation: Kaspersky Flame]]\n\nAliases: Flame, Flamer, sKyWIper"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0003",
"https://www.fireeye.com/blog/threat-research/2014/09/darwins-favorite-apt-group-2.html"
],
"uuid": "ad4f146f-e3ec-444a-ba71-24bffd7f0f8e"
},
"value": "RIPTIDE",
"description": "RIPTIDE is a proxy-aware backdoor used by APT12.[[Citation: Moran 2014]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0046",
"https://www.f-secure.com/documents/996508/1030745/dukes%20whitepaper.pdf"
],
"uuid": "e6ef745b-077f-42e1-a37d-29eecff9c754",
"synonyms": [
"CozyCar",
"CozyDuke",
"CozyBear",
"Cozer",
"EuroAPT"
]
},
"value": "CozyCar",
"description": "CozyCar is malware that was used by APT29 from 2010 to 2015. It is a modular malware platform, and its backdoor component can be instructed to download and execute a variety of modules with different functionality.[[Citation: F-Secure The Dukes]]\n\nAliases: CozyCar, CozyDuke, CozyBear, Cozer, EuroAPT"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0080",
"http://www.symantec.com/content/en/us/enterprise/media/security%20response/whitepapers/the-black-vine-cyberespionage-group.pdf"
],
"uuid": "fbb470da-1d44-4f29-bbb3-9efbe20f94a3"
},
"value": "Mivast",
"description": "Mivast is a backdoor that has been used by Deep Panda. It was reportedly used in the Anthem breach.[[Citation: Symantec Black Vine]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0107",
"https://www.trustwave.com/Resources/SpiderLabs-Blog/Shining-the-Spotlight-on-Cherry-Picker-PoS-Malware/"
],
"uuid": "b2203c59-4089-4ee4-bfe1-28fa25f0dbfe"
},
"value": "Cherry Picker",
"description": "Cherry Picker is a point of sale (PoS) memory scraper.[[Citation: Trustwave Cherry Picker]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0117",
"http://www.welivesecurity.com/wp-content/uploads/2016/10/eset-sednit-part-2.pdf",
"https://www.invincea.com/2016/07/tunnel-of-gov-dnc-hack-and-the-russian-xtunnel/",
"https://www.crowdstrike.com/blog/bears-midst-intrusion-democratic-national-committee/"
],
"uuid": "7343e208-7cab-45f2-a47b-41ba5e2f0fab",
"synonyms": [
"XTunnel",
"X-Tunnel",
"XAPS"
]
},
"value": "XTunnel",
"description": "XTunnel a VPN-like network proxy tool that can relay traffic between a C2 server and a victim. It was first seen in May 2013 and reportedly used by APT28 during the compromise of the Democratic National Committee.[[Citation: Crowdstrike DNC June 2016]][[Citation: Invincea XTunnel]][[Citation: ESET Sednit Part 2]]\n\nAliases: XTunnel, X-Tunnel, XAPS"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0049",
"https://www.f-secure.com/documents/996508/1030745/dukes%20whitepaper.pdf"
],
"uuid": "199463de-d9be-46d6-bb41-07234c1dd5a6"
},
"value": "GeminiDuke",
"description": "GeminiDuke is malware that was used by APT29 from 2009 to 2012.[[Citation: F-Secure The Dukes]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0074",
"http://www.secureworks.com/cyber-threat-intelligence/threats/sakula-malware-family/"
],
"uuid": "96b08451-b27a-4ff6-893f-790e26393a8e",
"synonyms": [
"Sakula",
"Sakurel",
"VIPER"
]
},
"value": "Sakula",
"description": "Sakula is a remote access tool (RAT) that first surfaced in 2012 and was used in intrusions throughout 2015.[[Citation: Dell Sakula]]\n\nAliases: Sakula, Sakurel, VIPER"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0092",
"https://securelist.com/blog/virus-watch/58551/agent-btz-a-source-of-inspiration/"
],
"uuid": "40d3e230-ed32-469f-ba89-be70cc08ab39"
},
"value": "Agent.btz",
"description": "Agent.btz is a worm that primarily spreads itself via removable devices such as USB drives. It reportedly infected U.S. military networks in 2008.[[Citation: Securelist Agent.btz]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0113",
"http://www.welivesecurity.com/wp-content/uploads/2016/05/Operation-Groundbait.pdf"
],
"uuid": "37cc7eb6-12e3-467b-82e8-f20f2cc73c69"
},
"value": "Prikormka",
"description": "Prikormka is a malware family used in a campaign known as Operation Groundbait. It has predominantly been observed in Ukraine and was used as early as 2008.[[Citation: ESET Operation Groundbait]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0034",
"https://www2.fireeye.com/rs/fireye/images/rpt-apt30.pdf"
],
"uuid": "53cf6cc4-65aa-445a-bcf8-c3d296f8a7a2"
},
"value": "NETEAGLE",
"description": "NETEAGLE is a backdoor developed by APT30 with compile dates as early as 2008. It has two main variants known as “Scout” and “Norton.”[[Citation: FireEye APT30]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0136",
"http://www.welivesecurity.com/2014/11/11/sednit-espionage-group-attacking-air-gapped-networks/",
"https://securelist.com/blog/research/72924/sofacy-apt-hits-high-profile-targets-with-updated-toolset/"
],
"uuid": "af2ad3b7-ab6a-4807-91fd-51bcaff9acbb",
"synonyms": [
"USBStealer",
"USB Stealer",
"Win32/USBStealer"
]
},
"value": "USBStealer",
"description": "USBStealer is malware that has used by APT28 since at least 2005 to extract information from air-gapped networks. It does not have the capability to communicate over the Internet and has been used in conjunction with ADVSTORESHELL.[[Citation: ESET Sednit USBStealer 2014]][[Citation: Kaspersky Sofacy]]\n\nAliases: USBStealer, USB Stealer, Win32/USBStealer"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0025",
"https://www.fireeye.com/content/dam/fireeye-www/services/pdfs/mandiant-apt1-report.pdf"
],
"uuid": "5a84dc36-df0d-4053-9b7c-f0c388a57283"
},
"value": "CALENDAR",
"description": "CALENDAR is malware used by APT1 that mimics legitimate Gmail Calendar traffic.[[Citation: Mandiant APT1]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0161",
"https://researchcenter.paloaltonetworks.com/2017/02/unit42-xagentosx-sofacys-xagent-macos-tool/"
],
"uuid": "5930509b-7793-4db9-bdfc-4edda7709d0d"
},
"value": "XAgentOSX",
"description": "is a trojan that has been used by APT28 on OS X and appears to be a port of their standard CHOPSTICK or XAgent trojan.[[Citation: XAgentOSX]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0019",
"https://securelist.com/files/2014/11/Kaspersky%20Lab%20whitepaper%20Regin%20platform%20eng.pdf"
],
"uuid": "4c59cce8-cb48-4141-b9f1-f646edfaadb0"
},
"value": "Regin",
"description": "Regin is a malware platform that has targeted victims in a range of industries, including telecom, government, and financial institutions. Some Regin timestamps date back to 2003.[[Citation: Kaspersky Regin]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0129",
"https://www.forcepoint.com/sites/default/files/resources/files/forcepoint-security-labs-monsoon-analysis-report.pdf"
],
"uuid": "f5352566-1a64-49ac-8f7f-97e1d1a03300"
},
"value": "AutoIt",
"description": "AutoIt is a backdoor that has been used by the actors responsible for the MONSOON campaign. The actors frequently used it in weaponized .pps files exploiting CVE-2014-6352.[[Citation: Forcepoint Monsoon]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0147",
"https://researchcenter.paloaltonetworks.com/2017/02/unit-42-title-gamaredon-group-toolset-evolution/"
],
"uuid": "5f9f7648-04ba-4a9f-bb4c-2a13e74572bd"
},
"value": "Pteranodon",
"description": "Pteranodon is a custom backdoor used by Gamaredon Group.[[Citation: Palo Alto Gamaredon Feb 2017]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0055",
"http://blog.trendmicro.com/trendlabs-security-intelligence/rarstone-found-in-targeted-attacks/"
],
"uuid": "8c553311-0baa-4146-997a-f79acef3d831"
},
"value": "RARSTONE",
"description": "RARSTONE is malware used by the Naikon group that has some characteristics similar to PlugX.[[Citation: Aquino RARSTONE]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0063",
"https://www.fireeye.com/blog/threat-research/2015/06/operation-clandestine-wolf-adobe-flash-zero-day.html"
],
"uuid": "58adaaa8-f1e8-4606-9a08-422e568461eb",
"synonyms": [
"SHOTPUT",
"Backdoor.APT.CookieCutter",
"Pirpi"
]
},
"value": "SHOTPUT",
"description": "SHOTPUT is a custom backdoor used by APT3.[[Citation: FireEye Clandestine Wolf]]\n\nAliases: SHOTPUT, Backdoor.APT.CookieCutter, Pirpi"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0094",
"http://www.symantec.com/content/en/us/enterprise/media/security%20response/whitepapers/Dragonfly%20Threat%20Against%20Western%20Energy%20Suppliers.pdf"
],
"uuid": "82cb34ba-02b5-432b-b2d2-07f55cbf674d"
},
"value": "Trojan.Karagany",
"description": "Trojan.Karagany is a backdoor primarily used for recon. The source code for it was leaked in 2010 and it is sold on underground forums.[[Citation: Symantec Dragonfly]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0088",
"http://research.zscaler.com/2016/01/malicious-office-files-dropping-kasidet.html"
],
"uuid": "26fed817-e7bf-41f9-829a-9075ffac45c2"
},
"value": "Kasidet",
"description": "Kasidet is a backdoor that has been dropped by using malicious VBA macros.[[Citation: Zscaler Kasidet]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0023",
"https://www2.fireeye.com/rs/848-DID-242/images/APT28-Center-of-Storm-2017.pdf",
"http://www.welivesecurity.com/wp-content/uploads/2016/10/eset-sednit-part-2.pdf",
"https://www.fireeye.com/content/dam/fireeye-www/global/en/current-threats/pdfs/rpt-apt28.pdf"
],
"uuid": "ccd61dfc-b03f-4689-8c18-7c97eab08472",
"synonyms": [
"CHOPSTICK",
"SPLM",
"Xagent",
"X-Agent",
"webhp"
]
},
"value": "CHOPSTICK",
"description": "CHOPSTICK is malware family of modular backdoors used by APT28. It has been used from at least November 2012 to August 2016 and is usually dropped on victims as second-stage malware, though it has been used as first-stage malware in several cases.[[Citation: FireEye APT28]][[Citation: ESET Sednit Part 2]][[Citation: FireEye APT28 January 2017]]\n\nAliases: CHOPSTICK, SPLM, Xagent, X-Agent, webhp"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0051",
"https://www.f-secure.com/documents/996508/1030745/dukes%20whitepaper.pdf"
],
"uuid": "5e7ef1dc-7fb6-4913-ac75-e06113b59e0c"
},
"value": "MiniDuke",
"description": "MiniDuke is malware that was used by APT29 from 2010 to 2015. The MiniDuke toolset consists of multiple downloader and backdoor components. The loader has been used with other MiniDuke components as well as in conjunction with CosmicDuke and PinchDuke.[[Citation: F-Secure The Dukes]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0127",
"http://researchcenter.paloaltonetworks.com/2015/12/bbsrat-attacks-targeting-russian-organizations-linked-to-roaming-tiger/"
],
"uuid": "64d76fa5-cf8f-469c-b78c-1a4f7c5bad80"
},
"value": "BBSRAT",
"description": "BBSRAT is malware with remote access tool functionality that has been used in targeted compromises.[[Citation: Palo Alto Networks BBSRAT]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0081",
"https://www.paloaltonetworks.com/resources/research/unit42-operation-lotus-blossom.html"
],
"uuid": "7551188b-8f91-4d34-8350-0d0c57b2b913",
"synonyms": [
"Elise",
"BKDR_ESILE",
"Page"
]
},
"value": "Elise",
"description": "Elise is a custom backdoor Trojan that appears to be used exclusively by Lotus Blossom. It is part of a larger group of\ntools referred to as LStudio, ST Group, and APT0LSTU.[[Citation: Lotus Blossom Jun 2015]]\n\nAliases: Elise, BKDR_ESILE, Page"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0017",
"https://www.fireeye.com/content/dam/fireeye-www/services/pdfs/mandiant-apt1-report.pdf"
],
"uuid": "b8eb28e4-48a6-40ae-951a-328714f75eda"
},
"value": "BISCUIT",
"description": "BISCUIT is a backdoor that has been used by APT1 since as early as 2007.[[Citation: Mandiant APT1]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0022",
"https://securelist.com/analysis/publications/65545/the-epic-turla-operation/"
],
"uuid": "80a014ba-3fef-4768-990b-37d8bd10d7f4"
},
"value": "Uroburos",
"description": "Uroburos is a rootkit used by Turla.[[Citation: Kaspersky Turla]]"
},
{
"meta": {
"refs": [
"https://attack.mitre.org/wiki/Software/S0145",
"http://blog.talosintelligence.com/2017/03/dnsmessenger.html",
"https://www.fireeye.com/blog/threat-research/2017/03/fin7%20spear%20phishing.html"