-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestfull.json
3784 lines (3777 loc) · 162 KB
/
testfull.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": "bundle",
"spec_version": "2.1",
"id": "bundle--0fe33f18-9717-4329-9179-429d7304ef73",
"objects": [
{
"type": "observed-data",
"id": "observed-data--b67d30ff-02ac-498a-92f9-32f845f448cf",
"created_by_ref": "identity--f690c992-8e7d-4b9a-9303-3312616c0220",
"created": "2016-04-06T19:58:16.000Z",
"modified": "2016-04-06T19:58:16.000Z",
"first_observed": "2015-12-21T19:00:00Z",
"last_observed": "2015-12-21T19:00:00Z",
"number_observed": 50,
"objects": {
"0": {
"type": "artifact",
"mime_type": "image/jpeg",
"payload_bin": "VBORw0KGgoAAAANSUhEUgAAADI== ..."
},
"1": {
"type": "file",
"hashes": {
"MD5": "66e2ea40dc71d5ba701574ea215a81f1",
"MD1": "xxxxxx1d5ba701574ea215a81f1",
"MD2": "zzzzzzba701574ea215a81f1"
},
"name": "quêry.dll",
"name_enc": "windows-1252"
}
}
},
{
"type": "marking-definition",
"id": "marking-definition--34098fce-860f-48ae-8e50-ebd3cc5e41da",
"created": "2016-05-12T08:17:27.000Z",
"definition_type": "tlp",
"definition": {
"tlp": "green"
}
},
{
"type": "language-content",
"id": "language-content--b86bd89f-98bb-4fa9-8cb2-9ad421da981d",
"created": "2017-02-08T21:31:22.007Z",
"modified": "2017-02-08T21:31:22.007Z",
"object_ref": "campaign--b549a58c-afd9-4847-85c3-5be13d56d3cc",
"object_modified": "2017-02-08T21:31:22.007Z",
"contents":
{
"de": {
"name": "Bank Angriff 1",
"description": "Weitere Informationen über Banküberfall"
},
"fr": {
"name": "Attaque Bank 1",
"description": "Plus d'informations sur la crise bancaire"
}
}
},
{
"type": "indicator",
"id": "indicator--3tgverxfryjnujnu",
"created": "2014-05-08T09:00:00.000000Z",
"modified": "2014-05-08T09:00:00.000000Z",
"pattern": "[ ipv4addr:value = '10.0.0.0' ]",
"valid_from": "2014-05-08T09:00:00.000000Z",
"name": "IP Address for known C2 channel",
"labels": [
"malicious-activity"
]
},
{
"type": "indicator",
"id": "indicator--d81f86b9-975b-bc0b-775e-810c5ad45a4f",
"created": "2014-06-29T13:49:37.079000Z",
"modified": "2014-06-29T13:49:37.079000Z",
"pattern": "[url:value = 'http://x4z9arb.cn/4712/']",
"valid_from": "2014-06-29T13:49:37.079000Z",
"name": "Malicious site hosting downloader",
"labels": [
"malicious-activity"
]
},
{
"type": "malware",
"id": "malware--162d917e-766f-4611-b5d6-652791454fca",
"created": "2014-06-30T09:15:17.182Z",
"modified": "2014-06-30T09:15:17.182Z",
"name": "x4z9arb backdoor",
"description": "This malware attempts to download remote files after establishing a foothold as a backdoor.",
"kill_chain_phases": [
{
"kill_chain_name": "mandiant-attack-lifecycle-model",
"phase_name": "establish-foothold"
}
],
"labels": [
"backdoor",
"remote-access-trojan"
]
},
{
"type": "relationship",
"id": "relationship--6ce78886-1027-4800-9301-40c274fd472f",
"created": "2014-06-30T09:15:17.182Z",
"modified": "2014-06-30T09:15:17.182Z",
"source_ref": "indicator--d81f86b9-975b-bc0b-775e-810c5ad45a4f",
"relationship_type": "indicates",
"target_ref": "malware--162d917e-766f-4611-b5d6-652791454fca"
},
{
"type": "identity",
"id": "identity--f690c992-8e7d-4b9a-9303-3312616c0220",
"created": "2016-08-08T15:50:10.983Z",
"modified": "2016-08-08T15:50:10.983Z",
"name": "The MITRE Corporation - DHS Support Team",
"identity_class": "organization",
"object_marking_refs": [
"marking-definition--340wqsxwsxwxwa"
]
},
{
"type": "attack-pattern",
"id": "attack-pattern--d7b066aa-4091-4276-a142-29d5d81c3484",
"created": "2014-10-31T15:52:13.126Z",
"modified": "2014-10-31T15:52:13.126Z",
"name": "Phishing",
"external_references": [
{
"source_name": "capec",
"external_id": "CAPEC-98",
"hashes": {
"MD3": "66e2ea40fffffff574ea215a81f1",
"MD1": "bbbbbbb01574ea215a81f1",
"MD2": "hhhhhhhhhhea215a81f1"
}
}
],
"created_by_ref": "identity--f690c992-8e7d-4b9a-9303-3312616c0220"
},
{
"type": "indicator",
"id": "indicator--8cf9236f-1b96-493d-98be-0c1c1e8b62d7",
"created": "2014-10-31T15:52:13.127Z",
"modified": "2014-10-31T15:52:13.127Z",
"pattern": "[email-message:subject MATCHES '^[IMPORTANT] Please Review Before']",
"valid_from": "2014-10-31T15:52:13.127931Z",
"name": "Malicious E-mail",
"labels": [
"malicious-activity"
],
"description": "",
"created_by_ref": "identity--f690c992-8e7d-4b9a-9303-3312616c0220"
},
{
"type": "indicator",
"id": "indicator--2e17f6fe-3a4d-438a-911a-e509ba1b9933",
"created": "2014-10-31T15:52:13.127Z",
"modified": "2014-10-31T15:52:13.127Z",
"pattern": "[email-message:body_multipart[*].body_raw_ref.name MATCHES '^Final Report.+\\\\.exe$']",
"valid_from": "2014-10-31T15:52:13.127931Z",
"name": "Malicious Email Attachment",
"labels": [
"malicious-activity"
],
"created_by_ref": "identity--f690c992-8e7d-4b9a-9303-3312616c0220"
},
{
"type": "relationship",
"id": "relationship--c3fa00e6-1d31-4137-98f5-32a1ec0d0e92",
"created": "2014-10-31T15:52:13.127Z",
"modified": "2014-10-31T15:52:13.127Z",
"source_ref": "indicator--8cf9236f-1b96-493d-98be-0c1c1e8b62d7",
"relationship_type": "indicates",
"target_ref": "attack-pattern--d7b066aa-4091-4276-a142-29d5d81c3484",
"created_by_ref": "identity--f690c992-8e7d-4b9a-9303-3312616c0220"
},
{
"type": "relationship",
"id": "relationship--8e231463-6b3e-4be6-9c44-56999d8c1d80",
"created": "2014-10-31T15:52:13.127Z",
"modified": "2014-10-31T15:52:13.127Z",
"source_ref": "indicator--2e17f6fe-3a4d-438a-911a-e509ba1b9933",
"relationship_type": "indicates",
"target_ref": "attack-pattern--d7b066aa-4091-4276-a142-29d5d81c3484",
"created_by_ref": "identity--f690c992-8e7d-4b9a-9303-3312616c0220"
},
{
"type": "identity",
"id": "identity--tyhbyuhcwferfbyh",
"created": "2016-08-08T15:50:10.983Z",
"modified": "2016-08-08T15:50:10.983Z",
"name": "The MITRE Corporation - DHS Support Team",
"identity_class": "organization"
},
{
"type": "malware",
"id": "malware--fdfvfgytybyubyu",
"created": "2017-01-27T13:49:53.997Z",
"modified": "2017-01-27T13:49:53.997Z",
"name": "Poison Ivy",
"description": "variant",
"labels": [
"remote-access-trojan"
],
"created_by_ref": "identity--f690c992-8e7d-4b9a-9303-3312616c0220"
},
{
"type": "indicator",
"id": "indicator--53fe3b22-0201-47cf-85d0-97c02164528d",
"created": "2014-05-08T09:00:00.000Z",
"modified": "2014-05-08T09:00:00.000Z",
"pattern": "[ipv4-addr:value = '10.0.0.0']",
"valid_from": "2014-05-08T09:00:00.000000Z",
"name": "IP Address for known C2 channel",
"labels": [
"malicious-activity"
],
"created_by_ref": "identity--f690c992-8e7d-4b9a-9303-3312616c0220"
},
{
"type": "indicator",
"id": "indicator--a932fcc6-e032-176c-126f-cb970a5a1ade",
"created": "2017-01-27T13:49:53.997Z",
"modified": "2017-01-27T13:49:53.997Z",
"pattern": "[file:hashes.'SHA-256' = 'ef537f25c895bfa782526529a9b63d97aa631564d5d789c2b765448c8635fb6c']",
"valid_from": "2014-05-08T09:00:00.000000Z",
"name": "File hash for Poison Ivy variant",
"labels": [
"malicious-activity"
],
"created_by_ref": "identity--f690c992-8e7d-4b9a-9303-3312616c0220"
},
{
"type": "course-of-action",
"id": "course-of-action--8e2e2d2b-17d4-4cbf-938f-98ee46b3cd3f",
"created": "2016-04-06T20:03:48.000Z",
"modified": "2016-04-06T20:03:48.000Z",
"name": "Add TCP port 80 Filter Rule to the existing Block UDP 1434 Filter",
"description": "This is how to add a filter rule to block inbound access to TCP port 80 to the existing UDP 1434 filter ...",
"created_by_ref": "identity--f690c992-8e7d-4b9a-9303-3312616c0220"
},
{
"type": "relationship",
"id": "relationship--44298a74-ba52-4f0c-87a3-1824e67d7fad",
"created": "2016-04-06T20:06:37.000Z",
"modified": "2016-04-06T20:06:37.000Z",
"source_ref": "course-of-action--8e2e2d2b-17d4-4cbf-938f-98ee46b3cd3f",
"relationship_type": "mitigates",
"target_ref": "malware--fdd60b30-b67c-11e3-b0b9-f01faf20d111",
"created_by_ref": "identity--f690c992-8e7d-4b9a-9303-3312616c0220"
},
{
"type": "relationship",
"id": "relationship--2f9a9aa9-108a-4333-83e2-4fb25add0463",
"created": "2017-01-27T13:49:53.997Z",
"modified": "2017-01-27T13:49:53.997Z",
"source_ref": "indicator--a932fcc6-e032-176c-126f-cb970a5a1ade",
"relationship_type": "indicates",
"target_ref": "malware--fdd60b30-b67c-11e3-b0b9-f01faf20d111",
"created_by_ref": "identity--f690c992-8e7d-4b9a-9303-3312616c0220"
},
{
"type": "relationship",
"id": "relationship--9606dac3-965a-47d3-b270-8b17431ba0e4",
"created": "2014-05-08T09:00:00.000Z",
"modified": "2014-05-08T09:00:00.000Z",
"source_ref": "indicator--53fe3b22-0201-47cf-85d0-97c02164528d",
"relationship_type": "indicates",
"target_ref": "malware--fdd60b30-b67c-11e3-b0b9-f01faf20d111",
"created_by_ref": "identity--f690c992-8e7d-4b9a-9303-3312616c0220"
},
{
"type": "threat-actor",
"id": "threat-actor--dfaa8d77-07e2-4e28-b2c8-92e9f7b04428",
"created": "2014-11-19T23:39:03.893348Z",
"modified": "2014-11-19T23:39:03.893348Z",
"name": "Disco Team Threat Actor Group",
"labels": [
"crime-syndicate"
],
"description": "This organized threat actor group operates to create profit from all types of crime.",
"aliases": [
"Equipo del Discoteca"
],
"roles": [
"agent"
],
"goals": [
"Steal Credit Card information"
],
"sophistication": "expert",
"resource_level": "organization",
"primary_motivation": "personal-gain"
},
{
"type": "identity",
"id": "identity--733c5838-34d9-4fbf-949c-62aba761184c",
"created": "2016-08-23T18:05:49.307000Z",
"modified": "2016-08-23T18:05:49.307000Z",
"name": "Disco Team",
"identity_class": "organization",
"contact_information": "disco-team@stealthemail.com",
"description": "Disco Team is the name of an organized threat actor crime-syndicate."
},
{
"type": "relationship",
"id": "relationship--966c5838-34d9-4fbf-949c-62aba7611837",
"created": "2016-08-23T18:05:49.307000Z",
"modified": "2016-08-23T18:05:49.307000Z",
"source_ref": "threat-actor--dfaa8d77-07e2-4e28-b2c8-92e9f7b04428",
"relationship_type": "attributed-to",
"target_ref": "identity--733c5838-34d9-4fbf-949c-62aba761184c"
},
{
"type": "campaign",
"id": "campaign--b549a58c-afd9-4847-85c3-5be13d56d3cc",
"created": "2014-09-09T19:58:39.609000Z",
"modified": "2014-09-09T19:58:39.609000Z",
"name": "Operation Omega"
},
{
"type": "indicator",
"id": "indicator--c43a0a05-e8d2-4f64-ae37-3f3fb153f8d9",
"created": "2014-09-09T19:58:39.609000Z",
"modified": "2014-09-09T19:58:39.609000Z",
"pattern": "[ ipv4-addr:value = '10.0.0.0' ]",
"valid_from": "2014-09-09T19:58:39.609000Z",
"name": "xxxxxxxxx",
"labels": [
"malicious-activity"
]
},
{
"type": "relationship",
"id": "relationship--eca24e47-2259-4850-9705-fd1065c77236",
"created": "2014-09-09T19:58:39.609000Z",
"modified": "2014-09-09T19:58:39.609000Z",
"source_ref": "indicator--c43a0a05-e8d2-4f64-ae37-3f3fb153f8d9",
"relationship_type": "indicates",
"target_ref": "campaign--b549a58c-afd9-4847-85c3-5be13d56d3cc"
},
{
"type": "marking-definition",
"id": "marking-definition--340yuerfwed5e41da",
"created": "2016-08-01T00:00:00.000Z",
"definition_type": "statement",
"definition": {
"statement": "Copyright © OASIS Open 2017. All Rights Reserved."
}
},
{
"type": "identity",
"id": "identity--fdcktgbtbsefvdsfvewx",
"created": "2016-08-08T15:50:10.983Z",
"modified": "2016-08-08T15:50:10.983Z",
"name": "The MITRE Corporation - DHS Support Team",
"identity_class": "organization",
"object_marking_refs": [
"marking-definition--34098fce-860f-48ae-8e50-ebd3cc5e41da"
]
},
{
"type": "identity",
"id": "identity--8c6af861-7b20-41ef-9b59-6344fd872a8f",
"created": "2016-08-08T15:50:10.983Z",
"modified": "2016-08-08T15:50:10.983Z",
"name": "Franistan Intelligence",
"identity_class": "organization",
"object_marking_refs": [
"marking-definition--34098fce-860f-48ae-8e50-ebd3cc5e41da"
],
"created_by_ref": "identity--f690c992-8e7d-4b9a-9303-3312616c0220"
},
{
"type": "identity",
"id": "identity--ddfe7140-2ba4-48e4-b19a-df069432103b",
"created": "2016-08-08T15:50:10.983Z",
"modified": "2016-08-08T15:50:10.983Z",
"name": "Branistan Peoples Party",
"identity_class": "organization",
"external_references": [
{
"source_name": "website",
"url": "http://www.bpp.bn"
}
],
"object_marking_refs": [
"marking-definition--34098fce-860f-48ae-8e50-ebd3cc5e41da"
],
"created_by_ref": "identity--f690c992-8e7d-4b9a-9303-3312616c0220"
},
{
"type": "threat-actor",
"id": "threat-actor--56f3f0db-b5d5-431c-ae56-c18f02caf500",
"created": "2016-08-08T15:50:10.983Z",
"modified": "2016-08-08T15:50:10.983Z",
"name": "Fake BPP (Branistan Peoples Party)",
"labels": [
"nation-state"
],
"roles": [
"director"
],
"goals": [
"Influence the election in Branistan"
],
"sophistication": "strategic",
"resource_level": "government",
"primary_motivation": "dominance",
"secondary_motivations": [
"ideology",
"organizational-gain"
],
"object_marking_refs": [
"marking-definition--34098fce-860f-48ae-8e50-ebd3cc5e41da"
],
"created_by_ref": "identity--f690c992-8e7d-4b9a-9303-3312616c0220"
},
{
"type": "campaign",
"id": "campaign--e5268b6e-4931-42f1-b379-87f48eb41b1e",
"created": "2016-08-08T15:50:10.983Z",
"modified": "2016-08-08T15:50:10.983Z",
"name": "Operation Bran Flakes",
"description": "A concerted effort to insert false information into the BPP's web pages",
"aliases": [
"OBF"
],
"first_seen": "2016-01-08T12:50:40.123Z",
"objective": "Hack www.bpp.bn",
"object_marking_refs": [
"marking-definition--34098fce-860f-48ae-8e50-ebd3cc5e41da"
],
"created_by_ref": "identity--f690c992-8e7d-4b9a-9303-3312616c0220"
},
{
"type": "attack-pattern",
"id": "attack-pattern--19da6e1c-71ab-4c2f-886d-d620d09d3b5a",
"created": "2016-08-08T15:50:10.983Z",
"modified": "2017-01-30T21:15:04.127Z",
"name": "Content Spoofing",
"external_references": [
{
"source_name": "capec",
"external_id": "CAPEC-148"
}
],
"object_marking_refs": [
"marking-definition--34098fce-860f-48ae-8e50-ebd3cc5e41da"
],
"created_by_ref": "identity--f690c992-8e7d-4b9a-9303-3312616c0220"
},
{
"type": "relationship",
"id": "relationship--3dcf59c3-30e3-4aa5-9c05-2cbffcee5922",
"created": "2016-08-08T15:50:10.983Z",
"modified": "2016-08-08T15:50:10.983Z",
"source_ref": "campaign--e5268b6e-4931-42f1-b379-87f48eb41b1e",
"relationship_type": "attributed-to",
"target_ref": "threat-actor--56f3f0db-b5d5-431c-ae56-c18f02caf500",
"object_marking_refs": [
"marking-definition--34098fce-860f-48ae-8e50-ebd3cc5e41da"
],
"created_by_ref": "identity--f690c992-8e7d-4b9a-9303-3312616c0220"
},
{
"type": "relationship",
"id": "relationship--6b6b524f-f115-4eeb-b488-045d62ddfb66",
"created": "2016-08-08T15:50:10.983Z",
"modified": "2016-08-08T15:50:10.983Z",
"source_ref": "campaign--e5268b6e-4931-42f1-b379-87f48eb41b1e",
"relationship_type": "targets",
"target_ref": "identity--ddfe7140-2ba4-48e4-b19a-df069432103b",
"object_marking_refs": [
"marking-definition--34098fce-860f-48ae-8e50-ebd3cc5e41da"
],
"created_by_ref": "identity--f690c992-8e7d-4b9a-9303-3312616c0220"
},
{
"type": "relationship",
"id": "relationship--1f820ee7-bb30-4d0c-96c8-08e07e08b0ed",
"created": "2016-08-08T15:50:10.983Z",
"modified": "2016-08-08T15:50:10.983Z",
"source_ref": "campaign--e5268b6e-4931-42f1-b379-87f48eb41b1e",
"relationship_type": "uses",
"target_ref": "attack-pattern--19da6e1c-71ab-4c2f-886d-d620d09d3b5a",
"object_marking_refs": [
"marking-definition--34098fce-860f-48ae-8e50-ebd3cc5e41da"
],
"created_by_ref": "identity--f690c992-8e7d-4b9a-9303-3312616c0220"
},
{
"type": "relationship",
"id": "relationship--5b271699-d2ad-468c-903d-304ad7a17d71",
"created": "2016-08-08T15:50:10.983Z",
"modified": "2016-08-08T15:50:10.983Z",
"source_ref": "threat-actor--56f3f0db-b5d5-431c-ae56-c18f02caf500",
"relationship_type": "attributed-to",
"target_ref": "identity--8c6af861-7b20-41ef-9b59-6344fd872a8f",
"object_marking_refs": [
"marking-definition--34098fce-860f-48ae-8e50-ebd3cc5e41da"
],
"created_by_ref": "identity--f690c992-8e7d-4b9a-9303-3312616c0220"
},
{
"type": "relationship",
"id": "relationship--f9d2f337-bf47-40d2-8afd-908d4e366572",
"created": "2016-08-08T15:50:10.983Z",
"modified": "2016-08-08T15:50:10.983Z",
"source_ref": "threat-actor--56f3f0db-b5d5-431c-ae56-c18f02caf500",
"relationship_type": "impersonates",
"target_ref": "identity--ddfe7140-2ba4-48e4-b19a-df069432103b",
"object_marking_refs": [
"marking-definition--34098fce-860f-48ae-8e50-ebd3cc5e41da"
],
"created_by_ref": "identity--f690c992-8e7d-4b9a-9303-3312616c0220"
},
{
"type": "malware",
"id": "malware--591f0cb7-d66f-4e14-a8e6-5927b597f920",
"created": "2015-05-15T09:12:16.432678Z",
"modified": "2015-05-15T09:12:16.432678Z",
"name": "Poison Ivy",
"description": "Poison Ivy is a remote access tool, first released in 2005 but unchanged since 2008. It includes features common to most Windows-based RATs, including key logging, screen capturing, video capturing, file transfers, system administration, password theft, and traffic relaying.",
"labels": [
"remote-access-trojan"
]
},
{
"type": "identity",
"id": "identity--81cade27-7df8-4730-836b-62d880e6d9d3",
"created": "2015-05-15T09:12:16.432678Z",
"modified": "2015-05-15T09:12:16.432678Z",
"name": "FireEye, Inc.",
"identity_class": "organization",
"sectors": [
"technology"
]
},
{
"type": "campaign",
"id": "campaign--752c225d-d6f6-4456-9130-d9580fd4007b",
"created": "2015-05-15T09:12:16.432678Z",
"modified": "2015-05-15T09:12:16.432678Z",
"name": "admin@338",
"description": "Active since 2008, this campaign mostly targets the financial services industry, though we have also seen activity in the telecom, government, and defense sectors.",
"first_seen": "2008-01-07T00:00:00.000000Z"
},
{
"type": "campaign",
"id": "campaign--d02a1560-ff69-49f4-ac34-919b8aa4b91e",
"created": "2015-05-15T09:12:16.432678Z",
"modified": "2015-05-15T09:12:16.432678Z",
"name": "th3bug",
"description": "This ongoing campaign targets a number of industries but appears to prefer targets in higher education and the healthcare sectors.",
"first_seen": "2009-10-26T00:00:00.000000Z"
},
{
"type": "campaign",
"id": "campaign--721976f9-56d7-4749-8c69-b3ac7c315f05",
"created": "2015-05-15T09:12:16.432678Z",
"modified": "2015-05-15T09:12:16.432678Z",
"name": "menuPass",
"description": "The threat actor behind menuPass prefers to target U.S. and foreign defense contractors.",
"first_seen": "2009-12-14T00:00:00.000000Z"
},
{
"type": "attack-pattern",
"id": "attack-pattern--19da6e1c-69a8-4c2f-886d-d620d09d3b5a",
"created": "2015-05-15T09:12:16.432678Z",
"modified": "2015-05-15T09:12:16.432678Z",
"name": "Spear Phishing Attack Pattern used by admin@338",
"description": "The preferred attack vector used by admin@338 is spear-phishing emails. Using content that is relevant to the target, these emails are designed to entice the target to open an attachment that contains the malicious PIVY server code.",
"kill_chain_phases": [
{
"kill_chain_name": "mandiant-attack-lifecycle-model",
"phase_name": "initial-compromise"
}
],
"external_references": [
{
"source_name": "capec",
"description": "spear phishing",
"external_id": "CAPEC-163"
}
]
},
{
"type": "attack-pattern",
"id": "attack-pattern--ea2c747d-4aa3-4573-8853-37b7159bc180",
"created": "2015-05-15T09:12:16.432678Z",
"modified": "2015-05-15T09:12:16.432678Z",
"name": "Strategic Web Compromise Attack Pattern used by th3bug",
"description": "Attacks attributed to th3bug use a strategic Web compromise to infect targets. This approach is more indiscriminate, which probably accounts for the more disparate range of targets.",
"kill_chain_phases": [
{
"kill_chain_name": "mandiant-attack-lifecycle-model",
"phase_name": "initial-compromise"
}
]
},
{
"type": "attack-pattern",
"id": "attack-pattern--fb6aa549-c94a-4e45-b4fd-7e32602dad85",
"created": "2015-05-15T09:12:16.432678Z",
"modified": "2015-05-15T09:12:16.432678Z",
"name": "Spear Phishing Attack Pattern used by menuPass",
"description": "menuPass appears to favor spear phishing to deliver payloads to the intended targets. While the attackers behind menuPass have used other RATs in their campaign, it appears that they use PIVY as their primary persistence mechanism.",
"kill_chain_phases": [
{
"kill_chain_name": "mandiant-attack-lifecycle-model",
"phase_name": "initial-compromise"
}
],
"external_references": [
{
"source_name": "capec",
"description": "spear phishing",
"external_id": "CAPEC-163"
}
]
},
{
"type": "course-of-action",
"id": "course-of-action--70b3d5f6-374b-4488-8688-729b6eedac5b",
"created": "2015-05-15T09:12:16.432678Z",
"modified": "2015-05-15T09:12:16.432678Z",
"name": "Analyze with FireEye Calamine Toolset",
"description": "Calamine is a set of free tools to help organizations detect and examine Poison Ivy infections on their systems. The package includes these components: PIVY callback-decoding tool (ChopShop Module) and PIVY memory-decoding tool (PIVY PyCommand Script).",
"external_references": [
{
"source_name": "Calamine ChopShop Module",
"description": "The FireEye Poison Ivy decoder checks the beginning of each TCP session for possible PIVY challengeresponse sequences. If found, the module will try to validate the response using one or more passwords supplied as arguments.",
"url": "https://github.com/fireeye/chopshop"
},
{
"source_name": "Calamine PyCommand Script",
"description": "Helps locate the PIVY password.",
"url": "https://github.com/fireeye/pycommands"
}
],
"created_by_ref": "identity--81cade27-7df8-4730-836b-62d880e6d9d3"
},
{
"type": "malware",
"id": "malware--61a62a6a-9a18-4758-8e52-622431c4b8ae",
"created": "2015-05-15T09:12:16.432678Z",
"modified": "2015-05-15T09:12:16.432678Z",
"name": "PIVY Variant (808e21d6efa2884811fbd0adf67fda78)",
"description": "The key@123 sample (password for admin@338), 808e21d6efa2884811fbd0adf67fda78, connects directly to 219.76.208.163",
"labels": [
"remote-access-trojan"
]
},
{
"type": "malware",
"id": "malware--30ea087f-7d2b-496b-9ed1-5f000c8b7695",
"created": "2015-05-15T09:12:16.432678Z",
"modified": "2015-05-15T09:12:16.432678Z",
"name": "PIVY Variant (8010cae3e8431bb11ed6dc9acabb93b7,)",
"description": "Two CnC domain names from the admin@338 sample 8010cae3e8431bb11ed6dc9acabb93b7, connect to www.webserver.dynssl.com and www.webserver.freetcp.com and resolve to 219.76.208.163. It also connects to the CnC domain www.webserver.fartit.com.",
"labels": [
"remote-access-trojan"
]
},
{
"type": "malware",
"id": "malware--4de25c38-5826-4ee7-b84d-878064de87ad",
"created": "2015-05-15T09:12:16.432678Z",
"modified": "2015-05-15T09:12:16.432678Z",
"name": "PIVY Variant (0323de551aa10ca6221368c4a73732e6,)",
"description": "The gwx@123 sample 0323de551aa10ca6221368c4a73732e6 connects to the CnC domain names microsofta.byinter.net, microsoftb.byinter.net, microsoftc.byinter. net, and microsofte.byinter.net.",
"labels": [
"remote-access-trojan"
]
},
{
"type": "malware",
"id": "malware--dc669921-4a1a-470d-bfae-694e740ce181",
"created": "2015-05-15T09:12:16.432678Z",
"modified": "2015-05-15T09:12:16.432678Z",
"name": "PIVY Variant (8002debc47e04d534b45f7bb7dfcab4d)",
"description": "The sample 8002debc47e04d534b45f7bb7dfcab4d connected to kr.iphone.qpoe.com with the PIVY password admin.",
"labels": [
"remote-access-trojan"
]
},
{
"type": "malware",
"id": "malware--f86febd3-609b-4d2e-9fec-aa805cb498bf",
"created": "2015-05-15T09:12:16.432678Z",
"modified": "2015-05-15T09:12:16.432678Z",
"name": "PIVY Variant (55a3b2656ceac2ba6257b6e39f4a5b5a)",
"description": "The sample 55a3b2656ceac2ba6257b6e39f4a5b5a connected to ct.toh.info domain with the PIVY password th3bug.",
"labels": [
"remote-access-trojan"
]
},
{
"type": "malware",
"id": "malware--80c260d9-a075-4148-9301-ebe4af27f449",
"created": "2015-05-15T09:12:16.432678Z",
"modified": "2015-05-15T09:12:16.432678Z",
"name": "PIVY Variant (b08694e14a9b966d8033b42b58ab727d)",
"description": "This sample (b08694e14a9b966d8033b42b58ab727d) for menuPass connected to a control server at js001.3322.org with a password xiaoxiaohuli (Chinese translation: 'little little fox')",
"labels": [
"remote-access-trojan"
]
},
{
"type": "malware",
"id": "malware--3ed0364f-62c8-4ebc-b136-deaf6966880b",
"created": "2015-05-15T09:12:16.432678Z",
"modified": "2015-05-15T09:12:16.432678Z",
"name": "PIVY Variant (d8c00fed6625e5f8d0b8188a5caac115)",
"description": "The sample d8c00fed6625e5f8d0b8188a5caac115 connected to apple.cmdnetview.com with the password XGstone.",
"labels": [
"remote-access-trojan"
]
},
{
"type": "malware",
"id": "malware--17099f03-5ec8-456d-a2de-968aebaafc78",
"created": "2015-05-15T09:12:16.432678Z",
"modified": "2015-05-15T09:12:16.432678Z",
"name": "PIVY Variant (b1deff736b6d12b8d98b485e20d318ea)",
"description": "The sample b1deff736b6d12b8d98b485e20d318ea connected to autuo.xicp.net with the password keaidestone.",
"labels": [
"remote-access-trojan"
]
},
{
"type": "malware",
"id": "malware--e14b6476-40b5-4b0b-bde7-0e856ab00b6c",
"created": "2015-05-15T09:12:16.432678Z",
"modified": "2015-05-15T09:12:16.432678Z",
"name": "PIVY Variant (08709f35581e0958d1ca4e50b7d86dba)",
"description": "The sample 08709f35581e0958d1ca4e50b7d86dba has a compile time of July 20. 2012 and connected to tw.2012yearleft.com with the password keaidestone. This sample also used the CBricksDoc launcher.",
"labels": [
"remote-access-trojan"
]
},
{
"type": "malware",
"id": "malware--feaf146d-ea67-4eb1-946a-6f352ff79a81",
"created": "2015-05-15T09:12:16.432678Z",
"modified": "2015-05-15T09:12:16.432678Z",
"name": "PIVY Variant (e84853c0484b02b7518dd683787d04f)",
"description": "The sample e84853c0484b02b7518dd6837 87d04fc connected to dedydns.ns01.us with the password smallfish and used the CBricksDoc launcher.",
"labels": [
"remote-access-trojan"
]
},
{
"type": "malware",
"id": "malware--13791e02-6621-45fb-8c10-f6b72e1bf553",
"created": "2015-05-15T09:12:16.432678Z",
"modified": "2015-05-15T09:12:16.432678Z",
"name": "PIVY Variant (cf8094c07c15aa394dddd4eca4aa8c8b)",
"description": "The sample cf8094c07c15aa394dddd4eca4aa8c8b connected to maofajapa.3322.org with the password happyyongzi.",
"labels": [
"remote-access-trojan"
]
},
{
"type": "malware",
"id": "malware--703a15a7-eb85-475d-a27a-77d8fcf8f7b9",
"created": "2015-05-15T09:12:16.432678Z",
"modified": "2015-05-15T09:12:16.432678Z",
"name": "PIVY Variant (410eeaa18dbec01a27c5b41753b3c7ed )",
"description": "The sample 410eeaa18dbec01a27c5b41753b3c7ed connected to send.have8000.com with the password of suzuki.",
"labels": [
"remote-access-trojan"
]
},
{
"type": "malware",
"id": "malware--fade08cb-fa57-485e-97f8-fab5a1bd4460",
"created": "2015-05-15T09:12:16.432678Z",
"modified": "2015-05-15T09:12:16.432678Z",
"name": "PIVY Variant (b2dc98caa647e64a2a8105c298218462)",
"description": "The sample b2dc98caa647e64a2a8105c298218462 connected to apple.cmdnetview.com with the password XGstone.",
"labels": [
"remote-access-trojan"
]
},
{
"type": "malware",
"id": "malware--3050937d-6330-44c7-83ba-8821e1f7e7bd",
"created": "2015-05-15T09:12:16.432678Z",
"modified": "2015-05-15T09:12:16.432678Z",
"name": "PIVY Variant (68fec995a13762184a2616bda86757f8)",
"description": "68fec995a13762184a2616bda86757f8 had a compile time of March 25, 2012 and connected to fbi.zyns.com with the password menuPass. This sample also used the CBricksDoc launcher.",
"labels": [
"remote-access-trojan"
]
},
{
"type": "malware",
"id": "malware--9d995717-edc3-4bd8-8554-aecf773bdecc",
"created": "2015-05-15T09:12:16.432678Z",
"modified": "2015-05-15T09:12:16.432678Z",
"name": "PIVY Variant (39a59411e7b12236c0b4351168fb47ce)",
"description": "The sample 39a59411e7b12236c0b4351168fb47ce had a compile time of April 2, 2010 and connected to weile3322b.3322.org with the password keaidestone. This sample used a launcher of CPiShellPutDoc.",
"labels": [
"remote-access-trojan"
]
},
{
"type": "malware",
"id": "malware--40e15fa5-df8d-4771-a682-21dab0a024fd",
"created": "2015-05-15T09:12:16.432678Z",
"modified": "2015-05-15T09:12:16.432678Z",
"name": "PIVY Variant (f5315fb4a654087d30c69c768d80f826)",
"description": "The sample f5315fb4a654087d30c69c768d80f826 had a compile time of May 21, 2010 and connected to ngcc.8800.org with the password menuPass. This sample also used a launcher of CPiShellPutDoc.",
"labels": [
"remote-access-trojan"
]
},
{
"type": "malware",
"id": "malware--69101c2f-da92-47af-b402-7c60a39a982f",
"created": "2015-05-15T09:12:16.432678Z",
"modified": "2015-05-15T09:12:16.432678Z",
"name": "PIVY Variant (e6ca06e9b000933567a8604300094a85)",
"description": "The sample e6ca06e9b000933567a8604300094a85 connected to the domain sh.chromeenter.com with the password happyyongzi.",
"labels": [
"remote-access-trojan"
]
},
{
"type": "malware",
"id": "malware--1601b8c2-5e6f-4a18-a413-10527e5d90b7",
"created": "2015-05-15T09:12:16.432678Z",
"modified": "2015-05-15T09:12:16.432678Z",
"name": "PIVY Variant (56cff0d0e0ce486aa0b9e4bc0bf2a141)",
"description": "The sample 56cff0d0e0ce486aa0b9e4bc0bf2a141 was compiled on 2011-08-31 and connected to mf.ddns.info with the password menuPass.",
"labels": [
"remote-access-trojan"
]
},
{
"type": "malware",
"id": "malware--626badcc-4257-4222-946c-6d6e889836ea",
"created": "2015-05-15T09:12:16.432678Z",
"modified": "2015-05-15T09:12:16.432678Z",
"name": "PIVY Variant (60963553335fa5877bd5f9be9d8b23a6 )",
"description": "The sample 60963553335fa5877bd5f9be9d8b23a6 was compiled on June 9, 2012 and connected to av.ddns.us with the password of admin",
"labels": [
"remote-access-trojan"
]
},
{
"type": "malware",
"id": "malware--3b275ed1-9c2e-4443-b1dd-5cfb51eaef2e",
"created": "2015-05-15T09:12:16.432678Z",
"modified": "2015-05-15T09:12:16.432678Z",
"name": "PIVY Variant (6d989302166ba1709d66f90066c2fd59)",
"description": "A number of menuPass and admin samples also shared the same CBricksDoc launcher including but not limited to 6d989302166ba1709d66f90066c2fd59.",
"labels": [
"remote-access-trojan"
]
},
{
"type": "malware",
"id": "malware--f138b6e0-9a7d-4cd9-a904-08a7df2eabb1",
"created": "2015-05-15T09:12:16.432678Z",
"modified": "2015-05-15T09:12:16.432678Z",
"name": "PIVY Variant (4bc6cab128f623f34bb97194da21d7b6)",
"description": "A number of menuPass and admin samples also shared the same CBricksDoc launcher including but not limited to 4bc6cab128f623f34bb97194da21d7b6.",
"labels": [
"remote-access-trojan"
]
},
{
"type": "malware",
"id": "malware--302ac5b5-486c-4c99-8cad-4426aeaf47b6",
"created": "2015-05-15T09:12:16.432678Z",
"modified": "2015-05-15T09:12:16.432678Z",
"name": "PIVY Variant (4e84b1448cf96fabe88c623b222057c4)",
"description": "The sample 4e84b1448cf96fabe88c623b222057c4 connected to jj.mysecondarydns.com with the password menuPass",
"labels": [
"remote-access-trojan"
]
},
{
"type": "malware",
"id": "malware--e1c02dca-d3fe-48f1-bb4b-3cacd2bc3619",
"created": "2015-05-15T09:12:16.432678Z",
"modified": "2015-05-15T09:12:16.432678Z",
"name": "PIVY Variant (494e65cf21ad559fccf3dacdd69acc94)",
"description": "The sample 494e65cf21ad559fccf3dacdd69acc94 connected to mongoles.3322.org with the password fishplay. It also connects to CBricksDoc.",
"labels": [
"remote-access-trojan"
]
},
{
"type": "malware",
"id": "malware--a4f315bd-e159-4bfb-8439-0d5a8330fc70",
"created": "2015-05-15T09:12:16.432678Z",
"modified": "2015-05-15T09:12:16.432678Z",
"name": "PIVY Variant (a5965b750997dbecec61358d41ac93c7)",
"description": "The sample a5965b750997dbecec61358d41ac93c7 connected to 3q.wubangtu.info with the password menuPass. It also connects to CBricksDoc.",
"labels": [
"remote-access-trojan"
]
},
{
"type": "indicator",
"id": "indicator--e8094b09-7df4-4b13-b207-1e27af3c4bde",
"created": "2015-05-15T09:12:16.432678Z",
"modified": "2015-05-15T09:12:16.432678Z",
"pattern": "[ipv4-addr:value = '219.76.208.163']",
"valid_from": "2015-05-15T09:12:16.432678Z",
"name": "IP address: 219.76.208.163",
"labels": [
"malicious-activity",
"attribution"
],
"description": "IP address for key@123 sample 808e21d6efa2884811fbd0adf67fda78"
},
{
"type": "indicator",
"id": "indicator--329ae6e9-25bd-49e8-89d1-aae4ca52e4a7",
"created": "2015-05-15T09:12:16.432678Z",
"modified": "2015-05-15T09:12:16.432678Z",
"pattern": "[domain-name:value = 'www.webserver.dynssl.com' OR ipv4-addr:value = '113.10.246.30' OR ipv4-addr:value = '219.90.112.203' OR ipv4-addr:value = '75.126.95.138' OR ipv4-addr:value = '219.90.112.197' OR ipv4-addr:value = '202.65.222.45']",
"valid_from": "2015-05-15T09:12:16.432678Z",
"name": "www.webserver.dynssl.com",
"labels": [
"malicious-activity",
"attribution"
],
"description": "www.webserver.dynssl.com resolved to 113.10.246.30, 219.90.112.203, 219.90.112.203, 75.126.95.138, 219.90.112.197, and 202.65.222.45, which overlap with the gwx@123 IP addresses."
},
{
"type": "indicator",
"id": "indicator--54e1e351-fec0-41a4-b62c-d7f86101e241",
"created": "2015-05-15T09:12:16.432678Z",
"modified": "2015-05-15T09:12:16.432678Z",
"pattern": "[domain-name:value = 'www.webserver.freetcp.com' OR ipv4-addr:value = '113.10.246.30' OR ipv4-addr:value = '219.90.112.203' OR ipv4-addr:value = '202.65.220.64' OR ipv4-addr:value = '75.126.95.138' OR ipv4-addr:value = '219.90.112.197' OR ipv4-addr:value = '202.65.222.45']",
"valid_from": "2015-05-15T09:12:16.432678Z",
"name": "www.webserver.freetcp.com",
"labels": [
"malicious-activity",
"attribution"
],
"description": "www.webserver.freetcp.com resolved to 113.10.246.30, 219.90.112.203, 202.65.220.64, 75.126.95.138, 219.90.112.197, and 202.65.222.45, which overlap with the gwx@123 IP addresses."
},
{
"type": "indicator",
"id": "indicator--2e59f00b-0986-437e-9ebd-e0d61900d688",
"created": "2015-05-15T09:12:16.432678Z",
"modified": "2015-05-15T09:12:16.432678Z",
"pattern": "[domain-name:value = 'www.webserver.fartit.com' OR ipv4-addr:value = '113.10.246.30' OR ipv4-addr:value = '219.90.112.203' OR ipv4-addr:value = '202.65.220.64' OR ipv4-addr:value = '75.126.95.138']",
"valid_from": "2015-05-15T09:12:16.432678Z",
"name": "www.webserver.fartit.com",
"labels": [
"malicious-activity",
"attribution"
],
"description": "www.webserver.fartit.com resolved to 113.10.246.30, 219.90.112.203, 202.65.220.64, and 75.126.95.138, which overlap with the gwx@123 IP addresses."
},
{
"type": "indicator",
"id": "indicator--8da68996-f175-4ae0-bd74-aad4913873b8",
"created": "2015-05-15T09:12:16.432678Z",
"modified": "2015-05-15T09:12:16.432678Z",
"pattern": "[domain-name:value = 'microsofta.byinter.net' OR domain-name:value = 'microsoftb.byinter.net' OR domain-name:value = 'microsoftc.byinter.net' OR domain-name:value = 'microsofte.byinter.net' OR ipv4-addr:value = '113.10.246.30' OR ipv4-addr:value = '219.90.112.203' OR ipv4-addr:value = '202.65.220.64' OR ipv4-addr:value = '75.126.95.138' OR ipv4-addr:value = '219.90.112.197' OR ipv4-addr:value = '202.65.222.45' OR ipv4-addr:value = '98.126.148.114']",
"valid_from": "2015-05-15T09:12:16.432678Z",
"name": "microsoft.byinter.net",
"labels": [
"malicious-activity",
"attribution"
],
"description": "The gwx@123 sample 0323de551aa10ca6221368c4a73732e6 connects to the CnC domain names microsofta.byinter.net, microsoftb.byinter.net, microsoftc.byinter.net, and microsofte.byinter.net. These domain names resolved to 113.10.246.30, 219.90.112.203, 202.65.220.64, 75.126.95.138, 219.90.112.197, 202.65.222.45, and 98.126.148.114."
},
{
"type": "indicator",
"id": "indicator--4e11b23f-732b-418e-b786-4dbf65459d50",
"created": "2015-05-15T09:12:16.432678Z",
"modified": "2015-05-15T09:12:16.432678Z",
"pattern": "[domain-name:value = 'nkr.iphone.qpoe.com' OR ipv4-addr:value = '180.210.206.96' OR ipv4-addr:value = '101.78.151.179']",
"valid_from": "2015-05-15T09:12:16.432678Z",
"name": "nkr.iphone.qpoe.com",
"labels": [
"malicious-activity",
"attribution"
],
"description": "th3bug used domain name: nkr.iphone.qpoe.com. The domain nkr.iphone.qpoe.com resolved to 180.210.206.96 on January 12, 2012 and also 101.78.151.179 on December 23, 2011."
},
{
"type": "indicator",
"id": "indicator--b7fa7e73-e645-4813-9723-161bbd8dda62",