-
Notifications
You must be signed in to change notification settings - Fork 260
/
Copy pathmitre-enterprise-attack-malware.json
5890 lines (5890 loc) · 206 KB
/
mitre-enterprise-attack-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
{
"authors": [
"MITRE"
],
"category": "tool",
"description": "Name of ATT&CK software",
"name": "Enterprise Attack - Malware",
"source": "https://github.com/mitre/cti",
"type": "mitre-enterprise-attack-malware",
"uuid": "fbd79f02-1707-11e8-b1c7-87406102276a",
"values": [
{
"description": "OLDBAIT is a credential harvester used by APT28. (Citation: FireEye APT28) (Citation: FireEye APT28) January 2017\n\nAliases: OLDBAIT, Sasfis",
"meta": {
"external_id": "S0138",
"refs": [
"https://attack.mitre.org/wiki/Software/S0138",
"https://www.fireeye.com/content/dam/fireeye-www/global/en/current-threats/pdfs/rpt-apt28.pdf"
],
"synonyms": [
"OLDBAIT",
"Sasfis"
]
},
"related": [
{
"dest-uuid": "6d1e2736-d363-49aa-9054-9c9e4ac0c520",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
},
{
"dest-uuid": "b3d682b6-98f2-4fb0-aa3b-b4df007ca70a",
"tags": [
"estimative-language:likelihood-probability=\"almost-certain\""
],
"type": "uses"
}
],
"uuid": "2dd34b01-6110-4aac-835d-b5e7b936b0be",
"value": "OLDBAIT - S0138"
},
{
"description": "PHOREAL is a signature backdoor used by APT32. (Citation: FireEye APT32 May 2017)\n\nAliases: PHOREAL",
"meta": {
"external_id": "S0158",
"refs": [
"https://attack.mitre.org/wiki/Software/S0158",
"https://www.fireeye.com/blog/threat-research/2017/05/cyber-espionage-apt32.html"
],
"synonyms": [
"PHOREAL"
]
},
"related": [
{
"dest-uuid": "f9c6da03-8cb1-4383-9d52-a614c42082bf",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
},
{
"dest-uuid": "7385dfaf-6886-4229-9ecd-6fd678040830",
"tags": [
"estimative-language:likelihood-probability=\"almost-certain\""
],
"type": "uses"
}
],
"uuid": "f6ae7a52-f3b6-4525-9daf-640c083f006e",
"value": "PHOREAL - S0158"
},
{
"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": {
"external_id": "S0050",
"refs": [
"https://attack.mitre.org/wiki/Software/S0050",
"https://www.f-secure.com/documents/996508/1030745/dukes%20whitepaper.pdf"
],
"synonyms": [
"CosmicDuke",
"TinyBaron",
"BotgenStudios",
"NemesisGemina"
]
},
"related": [
{
"dest-uuid": "ae676644-d2d2-41b7-af7e-9bed1b55898c",
"tags": [
"estimative-language:likelihood-probability=\"almost-certain\""
],
"type": "uses"
}
],
"uuid": "2eb9b131-d333-4a48-9eb4-d8dec46c19ee",
"value": "CosmicDuke - S0050"
},
{
"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)\n\nAliases: H1N1",
"meta": {
"external_id": "S0132",
"refs": [
"https://attack.mitre.org/wiki/Software/S0132",
"http://blogs.cisco.com/security/h1n1-technical-analysis-reveals-new-capabilities"
],
"synonyms": [
"H1N1"
]
},
"related": [
{
"dest-uuid": "7385dfaf-6886-4229-9ecd-6fd678040830",
"tags": [
"estimative-language:likelihood-probability=\"almost-certain\""
],
"type": "uses"
}
],
"uuid": "f8dfbc54-b070-4224-b560-79aaa5f835bd",
"value": "H1N1 - S0132"
},
{
"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)\n\nAliases: SPACESHIP",
"meta": {
"external_id": "S0035",
"refs": [
"https://attack.mitre.org/wiki/Software/S0035",
"https://www2.fireeye.com/rs/fireye/images/rpt-apt30.pdf"
],
"synonyms": [
"SPACESHIP"
]
},
"related": [
{
"dest-uuid": "970cdb5c-02fb-4c38-b17e-d6327cf3c810",
"tags": [
"estimative-language:likelihood-probability=\"almost-certain\""
],
"type": "uses"
}
],
"uuid": "8b880b41-5139-4807-baa9-309690218719",
"value": "SPACESHIP - S0035"
},
{
"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)\n\nAliases: Hi-Zor",
"meta": {
"external_id": "S0087",
"refs": [
"https://attack.mitre.org/wiki/Software/S0087",
"http://www.threatgeek.com/2016/01/introducing-hi-zor-rat.html"
],
"synonyms": [
"Hi-Zor"
]
},
"related": [
{
"dest-uuid": "d22a3e65-75e5-4970-b424-bdc06ec33dba",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
},
{
"dest-uuid": "7385dfaf-6886-4229-9ecd-6fd678040830",
"tags": [
"estimative-language:likelihood-probability=\"almost-certain\""
],
"type": "uses"
}
],
"uuid": "5967cc93-57c9-404a-8ffd-097edfa7bdfc",
"value": "Hi-Zor - S0087"
},
{
"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: DNSMessenger, TEXTMATE",
"meta": {
"external_id": "S0146",
"refs": [
"https://attack.mitre.org/wiki/Software/S0146",
"https://www.fireeye.com/blog/threat-research/2017/03/fin7%20spear%20phishing.html"
],
"synonyms": [
"DNSMessenger",
"TEXTMATE"
]
},
"related": [
{
"dest-uuid": "ee8ccb36-2596-43a3-a044-b8721dbeb2ab",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
},
{
"dest-uuid": "17e919aa-4a49-445c-b103-dbb8df9e7351",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
},
{
"dest-uuid": "b376580e-aba1-4ac9-9c2d-2df429efecf6",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
},
{
"dest-uuid": "355be19c-ffc9-46d5-8d50-d6a036c675b6",
"tags": [
"estimative-language:likelihood-probability=\"almost-certain\""
],
"type": "uses"
}
],
"uuid": "4f6aa78c-c3d4-4883-9840-96ca2f5d6d47",
"value": "TEXTMATE - S0146"
},
{
"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": {
"external_id": "S0056",
"refs": [
"https://attack.mitre.org/wiki/Software/S0056",
"https://www.cylance.com/content/dam/cylance/pages/operation-cleaver/Cylance%20Operation%20Cleaver%20Report.pdf"
],
"synonyms": [
"Net Crawler",
"NetC"
]
},
"related": [
{
"dest-uuid": "0bc03bfa-1439-4162-bb33-ec9f8f952ee5",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
},
{
"dest-uuid": "ffe742ed-9100-4686-9e00-c331da544787",
"tags": [
"estimative-language:likelihood-probability=\"almost-certain\""
],
"type": "uses"
}
],
"uuid": "fde50aaa-f5de-4cb8-989a-babb57d6a704",
"value": "Net Crawler - S0056"
},
{
"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": {
"external_id": "S0089",
"refs": [
"https://attack.mitre.org/wiki/Software/S0089",
"https://www.f-secure.com/documents/996508/1030745/blackenergy%20whitepaper.pdf"
],
"synonyms": [
"BlackEnergy",
"Black Energy"
]
},
"related": [
{
"dest-uuid": "5a22cad7-65fa-4b7a-a7aa-7915a6101efa",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
},
{
"dest-uuid": "82c644ab-550a-4a83-9b35-d545f4719069",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
},
{
"dest-uuid": "9422fc14-1c43-410d-ab0f-a709b76c72dc",
"tags": [
"estimative-language:likelihood-probability=\"almost-certain\""
],
"type": "uses"
}
],
"uuid": "54cc1d4f-5c53-4f0e-9ef5-11b4998e82e4",
"value": "BlackEnergy - S0089"
},
{
"description": " (Citation: XAgentOSX) 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)\n\nAliases: (Citation: XAgentOSX)",
"meta": {
"external_id": "S0161",
"refs": [
"https://attack.mitre.org/wiki/Software/S0161",
"https://researchcenter.paloaltonetworks.com/2017/02/unit42-xagentosx-sofacys-xagent-macos-tool/"
],
"synonyms": [
"XAgentOSX"
]
},
"related": [
{
"dest-uuid": "5930509b-7793-4db9-bdfc-4edda7709d0d",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
},
{
"dest-uuid": "7bc57495-ea59-4380-be31-a64af124ef18",
"tags": [
"estimative-language:likelihood-probability=\"almost-certain\""
],
"type": "uses"
}
],
"uuid": "59a97b15-8189-4d51-9404-e1ce8ea4a069",
"value": "XAgentOSX - S0161"
},
{
"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)\n\nAliases: Pisloader",
"meta": {
"external_id": "S0124",
"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/"
],
"synonyms": [
"Pisloader"
]
},
"related": [
{
"dest-uuid": "b3d682b6-98f2-4fb0-aa3b-b4df007ca70a",
"tags": [
"estimative-language:likelihood-probability=\"almost-certain\""
],
"type": "uses"
}
],
"uuid": "b96680d1-5eb3-4f07-b95c-00ab904ac236",
"value": "Pisloader - S0124"
},
{
"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": {
"external_id": "S0093",
"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"
],
"synonyms": [
"Backdoor.Oldrea",
"Havex"
]
},
"related": [
{
"dest-uuid": "d7183f66-59ec-4803-be20-237b442259fc",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
},
{
"dest-uuid": "8f4a33ec-8b1f-4b80-a2f6-642b2e479580",
"tags": [
"estimative-language:likelihood-probability=\"almost-certain\""
],
"type": "uses"
}
],
"uuid": "083bb47b-02c8-4423-81a2-f9ef58572974",
"value": "Backdoor.Oldrea - S0093"
},
{
"description": "is a custom JavaScript backdoor used by Leviathan. (Citation: Proofpoint Leviathan Oct 2017)\n\nAliases: NanHaiShu",
"meta": {
"external_id": "S0228",
"refs": [
"https://attack.mitre.org/wiki/Software/S0228",
"https://www.proofpoint.com/us/threat-insight/post/leviathan-espionage-actor-spearphishes-maritime-and-defense-targets"
],
"synonyms": [
"NanHaiShu"
]
},
"related": [
{
"dest-uuid": "7abd6950-7a07-4d9e-ade1-62414fa50619",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
},
{
"dest-uuid": "707399d6-ab3e-4963-9315-d9d3818cd6a0",
"tags": [
"estimative-language:likelihood-probability=\"almost-certain\""
],
"type": "uses"
}
],
"uuid": "705f0783-5f7d-4491-b6b7-9628e6e006d2",
"value": "NanHaiShu - S0228"
},
{
"description": "Starloader is a loader component that has been observed loading Felismus and associated tools. (Citation: Symantec Sowbug Nov 2017)\n\nAliases: Starloader\n\nContributors: Alan Neville, @abnev",
"meta": {
"external_id": "S0188",
"refs": [
"https://attack.mitre.org/wiki/Software/S0188",
"https://www.symantec.com/connect/blogs/sowbug-cyber-espionage-group-targets-south-american-and-southeast-asian-governments"
],
"synonyms": [
"Starloader"
]
},
"related": [
{
"dest-uuid": "3ccef7ae-cb5e-48f6-8302-897105fbf55c",
"tags": [
"estimative-language:likelihood-probability=\"almost-certain\""
],
"type": "uses"
}
],
"uuid": "96566860-9f11-4b6f-964d-1c924e4f24a4",
"value": "Starloader - S0188"
},
{
"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": {
"external_id": "S0144",
"refs": [
"https://attack.mitre.org/wiki/Software/S0144",
"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",
"https://www.pwc.co.uk/cyber-security/pdf/cloud-hopper-annex-b-final.pdf"
],
"synonyms": [
"ChChes",
"Scorpion",
"HAYMAKER"
]
},
"related": [
{
"dest-uuid": "d71604d2-a17e-4b4e-82be-19cb54f93161",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
},
{
"dest-uuid": "6eee9bf9-ffce-4c88-a5ad-9d80f6fc727c",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
},
{
"dest-uuid": "355be19c-ffc9-46d5-8d50-d6a036c675b6",
"tags": [
"estimative-language:likelihood-probability=\"almost-certain\""
],
"type": "uses"
}
],
"uuid": "dc5d1a33-62aa-4a0c-aa8c-589b87beb11e",
"value": "ChChes - S0144"
},
{
"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)\n\nAliases: Hacking Team UEFI Rootkit",
"meta": {
"external_id": "S0047",
"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/"
],
"synonyms": [
"Hacking Team UEFI Rootkit"
]
},
"related": [
{
"dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b",
"tags": [
"estimative-language:likelihood-probability=\"almost-certain\""
],
"type": "uses"
}
],
"uuid": "4b62ab58-c23b-4704-9c15-edd568cd59f8",
"value": "Hacking Team UEFI Rootkit - S0047"
},
{
"description": "Hydraq is a data-theft trojan first used by Elderwood in the 2009 Google intrusion known as Operation Aurora, though variations of this trojan have been used in more recent campaigns by other Chinese actors, possibly including APT17. (Citation: MicroFocus 9002 Aug 2016) (Citation: Symantec Elderwood Sept 2012) (Citation: Symantec Trojan.Hydraq Jan 2010) (Citation: ASERT Seven Pointed Dagger Aug 2015) (Citation: FireEye DeputyDog 9002 November 2013) (Citation: ProofPoint GoT 9002 Aug 2017) (Citation: FireEye Sunshop Campaign May 2013) (Citation: PaloAlto 3102 Sept 2015)\n\nAliases: Hydraq, Aurora, 9002 RAT",
"meta": {
"external_id": "S0203",
"refs": [
"https://attack.mitre.org/wiki/Software/S0203",
"https://community.softwaregrp.com/t5/Security-Research/9002-RAT-a-second-building-on-the-left/ba-p/228686#.WosBVKjwZPZ",
"http://www.symantec.com/content/en/us/enterprise/media/security%20response/whitepapers/the-elderwood-project.pdf",
"https://www.symantec.com/connect/blogs/trojanhydraq-incident",
"https://www.arbornetworks.com/blog/asert/wp-content/uploads/2016/01/ASERT-Threat-Intelligence-Brief-2015-08-Uncovering-the-Seven-Point-Dagger.pdf",
"https://www.fireeye.com/blog/threat-research/2013/11/operation-ephemeral-hydra-ie-zero-day-linked-to-deputydog-uses-diskless-method.html",
"https://www.proofpoint.com/us/threat-insight/post/operation-rat-cook-chinese-apt-actors-use-fake-game-thrones-leaks-lures",
"https://www.fireeye.com/blog/threat-research/2013/05/ready-for-summer-the-sunshop-campaign.html",
"https://researchcenter.paloaltonetworks.com/2015/09/chinese-actors-use-3102-malware-in-attacks-on-us-government-and-eu-media/"
],
"synonyms": [
"Hydraq",
"Aurora",
"9002 RAT"
]
},
"related": [
{
"dest-uuid": "70c31066-237a-11e8-8eff-37ef1ad0c703",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
},
{
"dest-uuid": "bab647d7-c9d6-4697-8fd2-1295c7429e1f",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
},
{
"dest-uuid": "2f899e3e-1a46-43ea-8e68-140603ce943d",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
},
{
"dest-uuid": "478aa214-2ca7-4ec0-9978-18798e514790",
"tags": [
"estimative-language:likelihood-probability=\"almost-certain\""
],
"type": "uses"
}
],
"uuid": "73a4793a-ce55-4159-b2a6-208ef29b326f",
"value": "Hydraq - S0203"
},
{
"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)\n\nAliases: httpclient",
"meta": {
"external_id": "S0068",
"refs": [
"https://attack.mitre.org/wiki/Software/S0068",
"http://cdn0.vox-cdn.com/assets/4589853/crowdstrike-intelligence-report-putter-panda.original.pdf"
],
"synonyms": [
"httpclient"
]
},
"related": [
{
"dest-uuid": "3b3cbbe0-6ed3-4334-b543-3ddfd8c5642d",
"tags": [
"estimative-language:likelihood-probability=\"almost-certain\""
],
"type": "uses"
}
],
"uuid": "e8268361-a599-4e45-bd3f-71c8c7e700c0",
"value": "httpclient - S0068"
},
{
"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": {
"external_id": "S0134",
"refs": [
"https://attack.mitre.org/wiki/Software/S0134",
"http://www.welivesecurity.com/wp-content/uploads/2016/10/eset-sednit-part3.pdf"
],
"synonyms": [
"Downdelph",
"Delphacy"
]
},
"related": [
{
"dest-uuid": "837a295c-15ff-41c0-9b7e-5f2fb502b00a",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
},
{
"dest-uuid": "e6a077cb-42cc-4193-9006-9ceda8c0dff2",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
},
{
"dest-uuid": "e6919abc-99f9-4c6c-95a5-14761e7b2add",
"tags": [
"estimative-language:likelihood-probability=\"almost-certain\""
],
"type": "uses"
}
],
"uuid": "08d20cd2-f084-45ee-8558-fa6ef5a18519",
"value": "Downdelph - S0134"
},
{
"description": "CCBkdr is malware that was injected into a signed version of CCleaner and distributed from CCleaner's distribution website. (Citation: Talos CCleanup 2017) (Citation: Intezer Aurora Sept 2017)\n\nAliases: CCBkdr",
"meta": {
"external_id": "S0222",
"refs": [
"https://attack.mitre.org/wiki/Software/S0222",
"http://blog.talosintelligence.com/2017/09/avast-distributes-malware.html",
"http://www.intezer.com/evidence-aurora-operation-still-active-supply-chain-attack-through-ccleaner/"
],
"synonyms": [
"CCBkdr"
]
},
"related": [
{
"dest-uuid": "3f18edba-28f4-4bb9-82c3-8aa60dcac5f7",
"tags": [
"estimative-language:likelihood-probability=\"almost-certain\""
],
"type": "uses"
}
],
"uuid": "b0f13390-cec7-4814-b37c-ccec01887faa",
"value": "CCBkdr - S0222"
},
{
"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)\n\nAliases: StreamEx",
"meta": {
"external_id": "S0142",
"refs": [
"https://attack.mitre.org/wiki/Software/S0142",
"https://www.cylance.com/shell-crew-variants-continue-to-fly-under-big-avs-radar"
],
"synonyms": [
"StreamEx"
]
},
"related": [
{
"dest-uuid": "9991ace8-1a62-498c-a9ef-19d474deb505",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
},
{
"dest-uuid": "478aa214-2ca7-4ec0-9978-18798e514790",
"tags": [
"estimative-language:likelihood-probability=\"almost-certain\""
],
"type": "uses"
}
],
"uuid": "91000a8a-58cc-4aba-9ad0-993ad6302b86",
"value": "StreamEx - S0142"
},
{
"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)\n\nAliases: Psylo",
"meta": {
"external_id": "S0078",
"refs": [
"https://attack.mitre.org/wiki/Software/S0078",
"http://researchcenter.paloaltonetworks.com/2016/01/scarlet-mimic-years-long-espionage-targets-minority-activists/"
],
"synonyms": [
"Psylo"
]
},
"related": [
{
"dest-uuid": "e6919abc-99f9-4c6c-95a5-14761e7b2add",
"tags": [
"estimative-language:likelihood-probability=\"almost-certain\""
],
"type": "uses"
}
],
"uuid": "dfb5fa9b-3051-4b97-8035-08f80aef945b",
"value": "Psylo - S0078"
},
{
"description": "HDoor is malware that has been customized and used by the Naikon group. (Citation: Baumgartner Naikon 2015)\n\nAliases: HDoor, Custom HDoor",
"meta": {
"external_id": "S0061",
"refs": [
"https://attack.mitre.org/wiki/Software/S0061",
"https://securelist.com/files/2015/05/TheNaikonAPT-MsnMM1.pdf"
],
"synonyms": [
"HDoor",
"Custom HDoor"
]
},
"related": [
{
"dest-uuid": "2e0dd10b-676d-4964-acd0-8a404c92b044",
"tags": [
"estimative-language:likelihood-probability=\"almost-certain\""
],
"type": "uses"
}
],
"uuid": "007b44b6-e4c5-480b-b5b9-56f2081b1b7b",
"value": "HDoor - S0061"
},
{
"description": "Smoke Loader is a bot that has been seen in the wild since at least 2011 and has included a number of different payloads. It is notorious for its use of deception and self-protection. (Citation: Malwarebytes SmokeLoader 2016)\n\nAliases: Smoke Loader, Dofoil",
"meta": {
"external_id": "S0226",
"refs": [
"https://attack.mitre.org/wiki/Software/S0226",
"https://blog.malwarebytes.com/threat-analysis/2016/08/smoke-loader-downloader-with-a-smokescreen-still-alive/"
],
"synonyms": [
"Smoke Loader",
"Dofoil"
]
},
"related": [
{
"dest-uuid": "81f41bae-2ba9-4cec-9613-776be71645ca",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
},
{
"dest-uuid": "ba91d713-c36e-4d98-9fb7-e16496a69eec",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
},
{
"dest-uuid": "3f18edba-28f4-4bb9-82c3-8aa60dcac5f7",
"tags": [
"estimative-language:likelihood-probability=\"almost-certain\""
],
"type": "uses"
}
],
"uuid": "0c824410-58ff-49b2-9cf2-1c96b182bdf0",
"value": "Smoke Loader - S0226"
},
{
"description": " (Citation: Janicab) is an OS X trojan that relied on a valid developer ID and oblivious users to install it. (Citation: Janicab)\n\nAliases: (Citation: Janicab)",
"meta": {
"external_id": "S0163",
"refs": [
"https://attack.mitre.org/wiki/Software/S0163",
"http://www.thesafemac.com/new-signed-malware-called-janicab/"
],
"synonyms": [
"Janicab"
]
},
"related": [
{
"dest-uuid": "c3c20c4b-e12a-42e5-960a-eea4644014f4",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
},
{
"dest-uuid": "4af4e96f-c92d-4a45-9958-a88ad8deb38d",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
},
{
"dest-uuid": "c0a384a4-9a25-40e1-97b6-458388474bc8",
"tags": [
"estimative-language:likelihood-probability=\"almost-certain\""
],
"type": "uses"
}
],
"uuid": "234e7770-99b0-4f65-b983-d3230f76a60b",
"value": "Janicab - S0163"
},
{
"description": "is a backdoor used by APT37. (Citation: FireEye APT37 Feb 2018)\n\nAliases: WINERACK",
"meta": {
"external_id": "S0219",
"refs": [
"https://attack.mitre.org/wiki/Software/S0219",
"https://www2.fireeye.com/rs/848-DID-242/images/rpt%20APT37.pdf"
],
"synonyms": [
"WINERACK"
]
},
"related": [
{
"dest-uuid": "49025073-4cd3-43b8-b893-e80a1d3adc04",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
},
{
"dest-uuid": "4ae4f953-fe58-4cc8-a327-33257e30a830",
"tags": [
"estimative-language:likelihood-probability=\"almost-certain\""
],
"type": "uses"
}
],
"uuid": "49abab73-3c5c-476e-afd5-69b5c732d845",
"value": "WINERACK - S0219"
},
{
"description": "WINDSHIELD is a signature backdoor used by APT32. (Citation: FireEye APT32 May 2017)\n\nAliases: WINDSHIELD",
"meta": {
"external_id": "S0155",
"refs": [
"https://attack.mitre.org/wiki/Software/S0155",
"https://www.fireeye.com/blog/threat-research/2017/05/cyber-espionage-apt32.html"
],
"synonyms": [
"WINDSHIELD"
]
},
"related": [
{
"dest-uuid": "a89ed72c-202d-486b-9349-6ffc0a61e30a",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
},
{
"dest-uuid": "354a7f88-63fb-41b5-a801-ce3b377b36f1",
"tags": [
"estimative-language:likelihood-probability=\"almost-certain\""
],
"type": "uses"
}
],
"uuid": "98e8a977-3416-43aa-87fa-33e287e9c14c",
"value": "WINDSHIELD - S0155"
},
{
"description": "TinyZBot is a bot written in C# that was developed by Cleaver. (Citation: Cylance Cleaver)\n\nAliases: TinyZBot",
"meta": {
"external_id": "S0004",
"refs": [
"https://attack.mitre.org/wiki/Software/S0004",
"https://www.cylance.com/content/dam/cylance/pages/operation-cleaver/Cylance%20Operation%20Cleaver%20Report.pdf"
],
"synonyms": [
"TinyZBot"
]
},
"related": [
{
"dest-uuid": "e2cc27a2-4146-4f08-8e80-114a99204cea",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
},
{
"dest-uuid": "2e0dd10b-676d-4964-acd0-8a404c92b044",
"tags": [
"estimative-language:likelihood-probability=\"almost-certain\""
],
"type": "uses"
}
],
"uuid": "c0c45d38-fe57-4cd4-b2b2-9ecd0ddd4ca9",
"value": "TinyZBot - S0004"
},
{
"description": "BACKSPACE is a backdoor used by APT30 that dates back to at least 2005. (Citation: FireEye APT30)\n\nAliases: BACKSPACE, Lecna",
"meta": {
"external_id": "S0031",
"refs": [
"https://attack.mitre.org/wiki/Software/S0031",
"https://www2.fireeye.com/rs/fireye/images/rpt-apt30.pdf"
],
"synonyms": [
"BACKSPACE",
"Lecna"
]
},
"related": [
{
"dest-uuid": "cd6c5f27-cf7e-4529-ae9c-ab5b85102bde",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
},
{
"dest-uuid": "92d7da27-2d91-488e-a00c-059dc162766d",
"tags": [
"estimative-language:likelihood-probability=\"almost-certain\""
],
"type": "uses"
}
],
"uuid": "fb261c56-b80e-43a9-8351-c84081e7213d",
"value": "BACKSPACE - S0031"
},
{
"description": "ZeroT is a Trojan used by TA459, often in conjunction with PlugX. (Citation: Proofpoint TA459 April 2017) (Citation: Proofpoint ZeroT Feb 2017)\n\nAliases: ZeroT",
"meta": {
"external_id": "S0230",
"refs": [
"https://attack.mitre.org/wiki/Software/S0230",
"https://www.proofpoint.com/us/threat-insight/post/apt-targets-financial-analysts",
"https://www.proofpoint.com/us/threat-insight/post/APT-targets-russia-belarus-zerot-plugx"
],
"synonyms": [
"ZeroT"
]
},
"related": [
{
"dest-uuid": "ff00fa92-b32e-46b6-88ca-98357ebe3f54",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
},
{
"dest-uuid": "9b0aa458-dfa9-48af-87ea-c36d1501376c",
"tags": [
"estimative-language:likelihood-probability=\"likely\""
],
"type": "similar"
},
{
"dest-uuid": "4b74a1d4-b0e9-4ef1-93f1-14ecc6e2f5b5",
"tags": [
"estimative-language:likelihood-probability=\"almost-certain\""
],
"type": "uses"
}
],
"uuid": "4ab44516-ad75-4e43-a280-705dc0420e2f",
"value": "ZeroT - S0230"
},
{
"description": "PinchDuke is malware that was used by APT29 from 2008 to 2010. (Citation: F-Secure The Dukes)\n\nAliases: PinchDuke",
"meta": {
"external_id": "S0048",
"refs": [
"https://attack.mitre.org/wiki/Software/S0048",
"https://www.f-secure.com/documents/996508/1030745/dukes%20whitepaper.pdf"
],
"synonyms": [
"PinchDuke"
]
},
"related": [
{
"dest-uuid": "3c4a2599-71ee-4405-ba1e-0e28414b4bc5",
"tags": [
"estimative-language:likelihood-probability=\"almost-certain\""
],
"type": "uses"
}
],
"uuid": "ae9d818d-95d0-41da-b045-9cabea1ca164",
"value": "PinchDuke - S0048"
},
{
"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": {
"external_id": "S0054",
"refs": [
"https://attack.mitre.org/wiki/Software/S0054",
"https://www.f-secure.com/documents/996508/1030745/dukes%20whitepaper.pdf",
"https://securelist.com/minidionis-one-more-apt-with-a-usage-of-cloud-drives/71443/"