-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaec_vocab.txt
8269 lines (5030 loc) · 256 KB
/
maec_vocab.txt
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
THE MITRE CORPORATION
THE MAEC™ LANGUAGE
VERSION 4.1 SPECIFICATION
MAEC DEFAULT VOCABULARIES VERSION 1.1
DESIREE BECK, IVAN KIRILLOV, PENNY CHASE, MITRE
JUNE 12, 2014
Malware Attribute Enumeration and Characterization (MAEC™) is a standardized
language for sharing structured information about malware based upon attributes such
as behaviors, artifacts, and attack patterns.
inaccuracy that currently exists
By eliminating the ambiguity and
in malware
descriptions and by reducing reliance on signatures, MAEC aims to improve human-to-
human, human-to-tool, tool-to-tool, and tool-to-human communication about malware;
reduce potential duplication of malware analysis efforts by researchers; and allow for
the faster development of countermeasures by enabling the ability to leverage
responses to previously observed malware instances.
The MAEC™ Language Version 4.1 Specification – Default Vocabularies v1.1
Acknowledgements
The authors would like to thank the MAEC Community for its input and help in reviewing
this document.
Trademark Information
MAEC, the MAEC logo, CybOX, STIX, and CVE are trademarks of The MITRE Corporation.
All other trademarks are the property of their respective owners.
Warnings
MITRE PROVIDES MAEC "AS IS" AND MAKES NO WARRANTY, EXPRESS OR IMPLIED, AS
TO THE ACCURACY, CAPABILITY, EFFICIENCY, MERCHANTABILITY, OR FUNCTIONING OF
MAEC. IN NO EVENT WILL MITRE BE LIABLE FOR ANY GENERAL, CONSEQUENTIAL,
INDIRECT, INCIDENTAL, EXEMPLARY, OR SPECIAL DAMAGES, RELATED TO MAEC OR ANY
DERIVATIVE THEREOF, WHETHER SUCH CLAIM IS BASED ON WARRANTY, CONTRACT, OR
TORT, EVEN IF MITRE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.1
Feedback
The MAEC development team welcomes any feedback regarding the MAEC Language
Default Vocabularies Specification. Please send any comments, questions, or
suggestions [email protected]
1 For detailed information see [TOU].
2 For more information about the MAEC Language, please visit [MAEC].
Copyright © 2014, The MITRE Corporation. All rights reserved.
ii
The MAEC™ Language Version 4.1 Specification – Default Vocabularies v1.1
Table of Contents
1
2.2.1
Overview....................................................................................... 1
1.1
Additional Documents and Information .............................................................. 2
1.2 Data Model Conventions ...................................................................................... 3
Data Model Fields and Types ........................................................................ 3
1.2.1
1.2.2
XML Attributes and Elements ....................................................................... 3
1.2.3 Non-MAEC Data Models ............................................................................... 4
1.2.4
Primitive Data Types ..................................................................................... 4
Controlled Vocabularies ....................................................................................... 4
1.3
ID Formats ............................................................................................................ 5
1.4
1.5
XML Implementation............................................................................................ 7
1.6 Document Conventions ........................................................................................ 7
Key Words ..................................................................................................... 7
1.6.1
1.6.2
Fonts .............................................................................................................. 7
1.6.3 Namespaces .................................................................................................. 8
1.6.4 UML Diagrams ............................................................................................... 8
Property Table Notation ............................................................................... 8
1.6.5
MAEC Default Controlled Vocabularies ....................................... 12
2.1 Using Default Vocabularies ................................................................................ 12
Action-Related Default Vocabularies ................................................................. 13
2.2
ActionObjectAssociationTypeVocab-1.0..................................................... 13
ActionObjectAssociationTypeEnum-1.0 .............................................. 14
2.3 Default Vocabularies for Specific Action Names ................................................ 14
DebuggingActionNameVocab-1.0 ............................................................... 14
DebuggingActionNameEnum-1.0 ........................................................ 15
DeviceDriverActionNameVocab-1.1 ........................................................... 15
DeviceDriverActionNameEnum-1.1 ..................................................... 16
DirectoryActionNameVocab-1.1 ................................................................. 16
DirectoryActionNameEnum-1.1 .......................................................... 17
DiskActionNameVocab-1.1 ......................................................................... 17
DiskActionNameEnum-1.1 ................................................................... 18
DNSActionNameVocab-1.0 ......................................................................... 18
DNSActionNameEnum-1.0................................................................... 19
FileActionNameVocab-1.1 .......................................................................... 19
FileActionNameEnum-1.1 .................................................................... 20
FTPActionNameVocab-1.0 .......................................................................... 21
FTPActionNameEnum-1.0.................................................................... 21
GUIActionNameVocab-1.0 .......................................................................... 21
GUIActionNameEnum-1.0 ................................................................... 22
HookingActionNameVocab-1.1................................................................... 22
HookingActionNameEnum-1.1 ............................................................ 23
2.2.1.1
2.3.1.1
2.3.2.1
2.3.3.1
2.3.4.1
2.3.5.1
2.3.1
2.3.6
2.3.6.1
2.3.7
2.3.7.1
2.3.8
2.3.8.1
2.3.9
2.3.9.1
2.3.5
Copyright © 2014, The MITRE Corporation. All rights reserved.
iii
2
2.3.2
2.3.3
2.3.4
The MAEC™ Language Version 4.1 Specification – Default Vocabularies v1.1
2.3.17.1
2.3.18.1
2.3.11
2.3.12
2.3.12.1
2.3.11.1
2.3.13.1
2.3.16.1
2.3.10 HTTPActionNameVocab-1.0........................................................................ 23
2.3.10.1 HTTPActionNameEnum-1.0 ................................................................. 24
IPCActionNameVocab-1.0 ........................................................................... 24
IPCActionNameEnum-1.0 .................................................................... 25
IRCActionNameVocab-1.0 ........................................................................... 26
IRCActionNameEnum-1.0 .................................................................... 26
2.3.13 LibraryActionNameVocab-1.1 ..................................................................... 27
LibraryActionNameEnum-1.1 .............................................................. 27
2.3.14 NetworkActionNameVocab-1.1 .................................................................. 28
2.3.14.1 NetworkActionNameEnum-1.1 ........................................................... 28
2.3.15 NetworkShareActionNameVocab-1.0 ......................................................... 29
2.3.15.1 NetworkShareActionNameEnum-1.0 .................................................. 29
2.3.16 ProcessActionNameVocab-1.0 .................................................................... 30
ProcessActionNameEnum-1.0 ............................................................. 30
2.3.17 ProcessMemoryActionNameVocab-1.0 ...................................................... 31
ProcessMemoryActionNameEnum-1.0 ............................................... 31
2.3.18 ProcessThreadActionNameVocab-1.0 ........................................................ 32
ProcessThreadActionNameEnum-1.0 .................................................. 33
2.3.19 RegistryActionNameVocab-1.0 ................................................................... 33
2.3.19.1 RegistryActionNameEnum-1.0 ............................................................ 34
2.3.20 ServiceActionNameVocab-1.1 .................................................................... 34
ServiceActionNameEnum-1.1 .............................................................. 35
2.3.21 SocketActionNameVocab-1.0 ..................................................................... 36
SocketActionNameEnum-1.0 ............................................................... 36
2.3.22 SynchronizationActionNameVocab-1.0 ...................................................... 37
SynchronizationActionNameEnum-1.0 ............................................... 37
2.3.23 SystemActionNameVocab-1.0 .................................................................... 38
SystemActionNameEnum-1.0 .............................................................. 39
2.3.24 UserActionNameVocab-1.1 ........................................................................ 40
2.3.24.1 UserActionNameEnum-1.1 .................................................................. 40
Candidate-Indicator-Related Default Vocabularies ........................................... 41
ImportanceTypeVocab-1.0 ......................................................................... 41
ImportanceTypeEnum-1.0 ................................................................... 41
2.4.2 MalwareEntityTypeVocab-1.0 .................................................................... 42
2.4.2.1 MalwareEntityTypeEnum-1.0 .............................................................. 42
Capability-Related Default Vocabularies ........................................................... 43
CapabilityObjectiveRelationshipTypeVocab-1.0 ......................................... 43
CapabilityObjectiveRelationshipTypeEnum-1.0 .................................. 43
CommonCapabilityPropertiesVocab-1.0 .................................................... 44
CommonCapabilityPropertiesEnum-1.0 .............................................. 44
2.5.3 MalwareCapabilityVocab-1.0 ...................................................................... 45
2.5.3.1 MalwareCapabilityEnum-1.0 ............................................................... 45
2.5.4 MalwareLabelVocab-1.0 ............................................................................. 46
2.4.1
2.4.1.1
2.5.1
2.5.1.1
2.5.2
2.5.2.1
2.3.20.1
2.3.21.1
2.3.22.1
2.3.23.1
2.4
2.5
Copyright © 2014, The MITRE Corporation. All rights reserved.
iv
The MAEC™ Language Version 4.1 Specification – Default Vocabularies v1.1
2.6.7
2.6.7.1
2.6.8
2.6.8.1
2.6.9
2.6.4
2.6.9.1
2.6.5
2.6.5.1
2.6.6
2.6.6.1
2.6.1
2.6.1.1
2.6.2
2.6.2.1
2.6.3
2.6.4.1
2.6.3.1
2.5.4.1 MalwareLabelEnum-1.0....................................................................... 47
2.6 Default Vocabularies for Specific Capabilities .................................................... 50
AntiBehavioralAnalysisPropertiesVocab-1.0 .............................................. 50
AntiBehavioralAnalysisPropertiesEnum-1.0 ........................................ 51
AntiBehavioralAnalysisStrategicObjectivesVocab-1.0 ................................ 51
AntiBehavioralAnalysisStrategicObjectivesEnum-1.0 ......................... 52
AntiBehavioralAnalysisTacticalObjectivesVocab-1.0 .................................. 52
AntiBehavioralAnalysisTacticalObjectivesEnum-1.0 ........................... 53
AntiCodeAnalysisStrategicObjectiveVocab-1.0 .......................................... 53
AntiCodeAnalysisStrategicObjectivesEnum-1.0 .................................. 54
AntiCodeAnalysisTacticalObjectiveVocab-1.0 ............................................ 54
AntiCodeAnalysisTacticalObjectivesEnum-1.0 .................................... 55
AntiDetectionStrategicObjectivesVocab-1.0 .............................................. 55
AntiDetectionStrategicObjectivesEnum-1.0 ........................................ 56
AntiDetectionTacticalObjectivesVocab-1.0 ................................................ 56
AntiDetectionTacticalObjectivesEnum-1.0 .......................................... 57
AntiRemovalStrategicObjectivesVocab-1.0 ................................................ 58
AntiRemovalStrategicObjectivesEnum-1.0 ......................................... 58
AntiRemovalTacticalObjectivesVocab-1.0 .................................................. 59
AntiRemovalTacticalObjectivesEnum-1.0 ........................................... 59
2.6.10 AvailabilityViolationPropertiesVocab-1.0 ................................................... 60
2.6.10.1 AvailabilityViolationPropertiesEnum-1.0 ............................................ 60
2.6.11 AvailabilityViolationStrategicObjectivesVocab-1.0 .................................... 61
2.6.11.1 AvailabilityViolationStrategicObjectivesEnum-1.0 .............................. 61
2.6.12 AvailabilityViolationTacticalObjectivesVocab-1.0 ...................................... 62
2.6.12.1 AvailabilityViolationTacticalObjectivesEnum-1.0 ................................ 62
2.6.13 CommandandControlPropertiesVocab-1.0 ................................................ 63
CommandandControlPropertiesEnum-1.0 .......................................... 63
2.6.14 CommandandControlStrategicObjectivesVocab-1.0 .................................. 64
CommandandControlStrategicObjectivesEnum-1.0 ........................... 64
2.6.15 CommandandControlTacticalObjectivesVocab-1.0 .................................... 65
CommandandControlTacticalObjectivesEnum-1.0 ............................. 65
2.6.16 DataExfiltrationPropertiesVocab-1.0 .......................................................... 66
2.6.16.1 DataExfiltrationPropertiesEnum-1.0 ................................................... 66
2.6.17 DataExfiltrationStrategicObjectivesVocab-1.0 ........................................... 67
2.6.17.1 DataExfiltrationStrategicObjectivesEnum-1.0 ..................................... 67
2.6.18 DataExfiltrationTacticalObjectivesVocab-1.0 ............................................. 68
2.6.18.1 DataExfiltrationTacticalObjectivesEnum-1.0 ....................................... 68
2.6.19 DataTheftPropertiesVocab-1.0 ................................................................... 69
2.6.19.1 DataTheftPropertiesEnum-1.0 ............................................................ 70
2.6.20 DataTheftStrategicObjectivesVocab-1.0 ..................................................... 70
2.6.20.1 DataTheftStrategicObjectivesEnum-1.0 .............................................. 70
2.6.21 DataTheftTacticalObjectivesVocab-1.0 ....................................................... 71
2.6.13.1
2.6.14.1
2.6.15.1
Copyright © 2014, The MITRE Corporation. All rights reserved.
v
The MAEC™ Language Version 4.1 Specification – Default Vocabularies v1.1
2.6.29
2.6.30
2.6.30.1
2.6.31
2.6.31.1
2.6.26.1
2.6.27
2.6.27.1
2.6.28
2.6.29.1
2.6.28.1
2.6.25.1
2.6.21.1 DataTheftTacticalObjectivesEnum-1.0 ................................................ 71
2.6.22 DestructionPropertiesVocab-1.0 ................................................................ 72
2.6.22.1 DestructionPropertiesEnum-1.0 .......................................................... 73
2.6.23 DestructionStrategicObjectivesVocab-1.0 .................................................. 73
2.6.23.1 DestructionStrategicObjectivesEnum-1.0 ........................................... 74
2.6.24 DestructionTacticalObjectivesVocab-1.0 .................................................... 74
2.6.24.1 DestructionTacticalObjectivesEnum-1.0 ............................................. 75
2.6.25 FraudStrategicObjectivesVocab-1.0 ........................................................... 75
FraudStrategicObjectivesEnum-1.0 ..................................................... 75
2.6.26 FraudTacticalObjectivesVocab-1.0 ............................................................. 76
FraudTacticalObjectivesEnum-1.0 ....................................................... 76
InfectionPropagationPropertiesVocab-1.0 ................................................. 77
InfectionPropagationPropertiesEnum-1.0 .......................................... 77
InfectionPropagationStrategicObjectivesVocab-1.0 .................................. 78
InfectionPropagationStrategicObjectivesEnum-1.0 ............................ 78
InfectionPropagationTacticalObjectivesVocab-1.0 .................................... 79
InfectionPropagationTacticalObjectivesEnum-1.0 .............................. 79
IntegrityViolationStrategicObjectivesVocab-1.0 ........................................ 80
IntegrityViolationStrategicObjectivesEnum-1.0 .................................. 81
IntegrityViolationTacticalObjectivesVocab-1.0 .......................................... 81
IntegrityViolationTacticalObjectivesEnum-1.0 .................................... 82
2.6.32 MachineAccessControlPropertiesVocab-1.0 .............................................. 82
2.6.32.1 MachineAccessControlPropertiesEnum-1.0 ........................................ 83
2.6.33 MachineAccessControlStrategicObjectivesVocab-1.0 ................................ 83
2.6.33.1 MachineAccessControlStrategicObjectivesEnum-1.0 ......................... 83
2.6.34 MachineAccessControlTacticalObjectivesVocab-1.0 .................................. 84
2.6.34.1 MachineAccessControlTacticalObjectivesEnum-1.0 ........................... 84
2.6.35 PersistencePropertiesVocab-1.0 ................................................................. 85
PersistencePropertiesEnum-1.0 .......................................................... 85
2.6.36 PersistenceStrategicObjectivesVocab-1.0 .................................................. 86
PersistenceStrategicObjectivesEnum-1.0 ............................................ 86
2.6.37 PersistenceTacticalObjectivesVocab-1.0 .................................................... 87
PersistenceTacticalObjectivesEnum-1.0 .............................................. 87
2.6.38 PrivilegeEscalationPropertiesVocab-1.0 ..................................................... 88
PrivilegeEscalationPropertiesEnum-1.0 .............................................. 88
2.6.39 PrivilegeEscalationStrategicObjectivesVocab-1.0....................................... 89
PrivilegeEscalationStrategicObjectivesEnum-1.0 ................................ 89
2.6.40 PrivilegeEscalationTacticalObjectivesVocab-1.0 ........................................ 90
PrivilegeEscalationTacticalObjectivesEnum-1.0 .................................. 90
2.6.41 ProbingStrategicObjectivesVocab-1.0 ........................................................ 90
ProbingStrategicObjectivesEnum-1.0 .................................................. 91
2.6.42 ProbingTacticalObjectivesVocab-1.0 .......................................................... 91
ProbingTacticalObjectivesEnum-1.0 .................................................... 92
2.6.35.1
2.6.41.1
2.6.42.1
2.6.39.1
2.6.36.1
2.6.37.1
2.6.38.1
2.6.40.1
Copyright © 2014, The MITRE Corporation. All rights reserved.
vi
The MAEC™ Language Version 4.1 Specification – Default Vocabularies v1.1
2.6.49.1
2.6.47.1
2.6.48.1
2.6.46.1
2.6.45.1
2.6.43 RemoteMachineManipulationStrategicObjectivesVocab-1.0 .................... 92
2.6.43.1 RemoteMachineManipulationStrategicObjectivesEnum-1.0 ............. 93
2.6.44 RemoteMachineManipulationTacticalObjectivesVocab-1.0 ...................... 93
2.6.44.1 RemoteMachineManipulationTacticalObjectivesEnum-1.0 ............... 94
2.6.45 SecondaryOperationPropertiesVocab-1.0 .................................................. 94
SecondaryOperationPropertiesEnum-1.0 ........................................... 95
2.6.46 SecondaryOperationStrategicObjectivesVocab-1.0 ................................... 95
SecondaryOperationStrategicObjectivesEnum-1.0 ............................. 96
2.6.47 SecondaryOperationTacticalObjectivesVocab-1.0 ..................................... 96
SecondaryOperationTacticalObjectivesEnum-1.0 ............................... 97
2.6.48 SecurityDegradationPropertiesVocab-1.0 .................................................. 97
SecurityDegradationPropertiesEnum-1.0 ........................................... 98
2.6.49 SecurityDegradationStrategicObjectivesVocab-1.0 .................................... 98
SecurityDegradationStrategicObjectivesEnum-1.0 ............................. 98
2.6.50 SecurityDegradationTacticalObjectivesVocab-1.0 ...................................... 99
SecurityDegradationTacticalObjectivesEnum-1.0 ............................. 100
2.6.51 SpyingStrategicObjectivesVocab-1.0 ........................................................ 101
SpyingStrategicObjectivesEnum-1.0 .................................................. 101
2.6.52 SpyingTacticalObjectivesVocab-1.0 .......................................................... 102
SpyingTacticalObjectivesEnum-1.0 .................................................... 102
2.7 Malware Subject-Related Default Vocabularies .............................................. 103
2.7.1 MalwareConfigurationParameterVocab-1.0 ............................................ 103
2.7.1.1 MalwareConfigurationParameterEnum-1.0 ...................................... 104
2.7.2 MalwareDevelopmentToolVocab-1.0 ....................................................... 104
2.7.2.1 MalwareDevelopmentToolEnum-1.0 ................................................ 105
2.7.3 MalwareSubjectRelationshipTypeVocab-1.1 ............................................ 105
2.7.3.1 MalwareSubjectRelationshipTypeEnum-1.1 ..................................... 106
Package-Related Default Vocabularies ............................................................ 107
GroupingRelationshipTypeVocab-1.0 ....................................................... 107
GroupingRelationshipTypeEnum-1.0 ................................................ 108
Appendix – References.......................................................................... 109
A.1 MAEC Documents ............................................................................................. 109
A.2 MAEC Web Pages ............................................................................................. 109
A.3 MAEC Schema .................................................................................................. 110
A.4 MAEC Development ......................................................................................... 110
A.5 Other References ............................................................................................. 111
2.8.1
2.8.1.1
2.6.50.1
2.6.51.1
2.6.52.1
2.8
Copyright © 2014, The MITRE Corporation. All rights reserved.
vii
The MAEC™ Language Version 4.1 Specification – Default Vocabularies v1.1
1 Overview
The Malware Attribute Enumeration and Characterization (MAEC) Language is defined by
three data models and a set of default controlled vocabularies3. As illustrated in Figure 1-1,
“MAEC Bundle” is the (lowest) Tier 1 data model; “MAEC Package” is the (middle) Tier 2
data model; and “MAEC Container” is the (highest) Tier 3 data model. All three data
models offer a stand-alone output format, so a lower level model can be used without the
higher tier data model (although each model level encompasses and makes use of all lower
tiers).
Figure 1-1. MAEC data models
A complete discussion of the structure of the MAEC language can be found in the MAEC
Overview [MAECO]. In brief:
MAEC Bundle – provides the ability to capture and share data obtained from the
analysis of a single malware instance. Its underlying structure is formed by Actions,
Behaviors, and Capabilities.
MAEC Package – enables a user to capture and share MAEC characterized data for
one or more Malware Subjects; in most such cases, the Malware Subjects are
related. A Malware Subject is MAEC’s representation of a malware instance and all
of the known data associated with it, including data derived from analysis and
metadata.
MAEC Container – enables a user to share any collection of MAEC characterized
data, including one or more Packages.
3 Each data model and the default vocabularies are implemented by an XML schema. Other output formats,
such as JSON, are being considered for future implementations.
Copyright © 2014, The MITRE Corporation. All rights reserved.
1
The MAEC™ Language Version 4.1 Specification – Default Vocabularies v1.1
This document serves as the specification for the MAEC default controlled vocabularies.
Before we present the vocabularies in Section 2, we provide relevant background
information in Subsections 1.1 through 1.6.
1.1 Additional Documents and Information
Numerous overview, specification, and supporting documents are available for the MAEC
Language. All documents are shown in Figure 1-2. Icons are used to indicate whether the
material is contained in an actual document ( ) or captured on a Web page ( ). This
document is highlighted in yellow.
Figure 1-2. MAEC Language v4.1 documents
All documents can be found on the MAEC Website [MAEC], and a summary and link to
each is provided below:
Overview: Introduces and motivates MAEC, provides an overview of the MAEC
language, and presents a collection of high level use cases [MAECO].
Detailed Use Cases: Provides explicit examples to illustrate how MAEC can be used
to capture malware information stemming from various forms of malware analysis
[EXAMD].
Characterizing Malware with MAEC and STIX: Describes the use of MAEC and STIX in
the context of malware characterization and malware metadata exchange [MAECS].
Container Specification: Specification for the MAEC Container data model [SPECC].
Package Specification: Specification for the MAEC Package data model [SPECP].
Copyright © 2014, The MITRE Corporation. All rights reserved.
2
The MAEC™ Language Version 4.1 Specification – Default Vocabularies v1.1
Bundle Specification: Specification for the MAEC Bundle data model [MAECB]. (This
document.)
Default Vocabulary Specification: Specification for the MAEC Default Vocabularies
[SPECV].
Ties to Existing Standards: Provides an overview of how MAEC is related to MMDEF,
CybOX, CPE, CVE, and STIX [TIES].
Terminology: Contains terms associated with malware and malware analysis, as
well as terminology that is specific to MAEC [TERM].
FAQs: Frequently asked questions about MAEC including questions about the
language, use, relationships to other efforts, and the MAEC community [FAQ].
Versioning Policy: Details the current methodology for determining whether a
revision will require a major version change, a minor version change, or an update
version change. Note that the MAEC schemas and default vocabularies are
versioned independently of the MAEC Language, and their version numbers may or
may not coincide with each other or with that of the MAEC Language [VER].
Requirements and Recommendations for MAEC Compatibility: Specifies
requirements for MAEC-compatible tools, services, and repositories [REQ].
1.2 Data Model Conventions
The following information and conventions are used to define the MAEC data models, and
may or may not apply to the particular MAEC data model or vocabularies documented in
Section 2.
1.2.1 Data Model Fields and Types
In Section 2, we define the types associated with the MAEC default controlled vocabulary
fields. It is important to understand that “fields” correspond to the malware-related
properties captured in a MAEC document and “types” are used to define and express the
underlying data model used in the fields.
1.2.2 XML Attributes and Elements
Our methodology for representing a field as either an attribute or an element in the XML
implementation4 is based primarily on the determination of the complexity of the field.
Generally, simple fields such as identifiers, data types, and timestamps are represented as
attributes. Complex fields, for example, those that have multiplicity greater than one (such
as lists), are represented as elements. However, in this specification we have attempted, as
much as possible, to abstract away these XML-specific implementation details to provide a
more general view of the MAEC controlled vocabularies.
4 Each data model and the default vocabularies are implemented in MAEC v4.1 via an XML schema.
Copyright © 2014, The MITRE Corporation. All rights reserved.
3
The MAEC™ Language Version 4.1 Specification – Default Vocabularies v1.1
1.2.3 Non-MAEC Data Models
MAEC draws several components from the CybOX Language (see [MAECO]); consequently,
the reader is referred to [CYBOX] for the definitions of these entities. In this specification,
we do not define any types that are part of a non-MAEC data model. Instead we make
note of the referenced data model’s specification and explicitly define only the extensions
(i.e., new fields and types) that have been made as an extension of the base type.
1.2.4 Primitive Data Types
The following primitive datatypes are used in the MAEC Language.
binary – Data of this type conforms to the World Wide Web Consortium (W3C)
Recommendation for hex-encoded binary data [W3C1].
boolean – Data of this type conforms to the W3C Recommendation for boolean
data [W3C2].
double – Data of this type conforms to the W3C Recommendation for double data
[W3C3].
float – Data of this type conforms to the W3C Recommendation for float data
[W3C4].
int – Data of this type conforms to the W3C Recommendation for integer data
[W3C5].
QName – Data of this type conforms to the W3C Recommendation for an XML
namespace-qualified name [W3C6].
string – Data of this type conforms to the W3C Recommendation for string data
[W3C7].
unsigned int – Data of this type conforms to the W3C Recommendation for
unsigned int data [W3C8].
URI – Data of this type conforms to the W3C Recommendation for anyURI data
[W3C9].
dateTime – Data of this type represents a time value that conforms to the yyyy-
mm-ddThh:mm:ss format.
1.3 Controlled Vocabularies
Some of the fields defined in the MAEC schemas are of type cyboxCommon:
ControlledVocabularyStringType. A field of this type is implemented through
the xsi:type XML abstract type extension mechanism. The default vocabulary
applicable to the particular type will be provided in the “Description” column of the
property table. Default vocabularies are defined in the maec_default_vocabularies.xsd file
available at [RELD]. Please see Section 2 for more information.
Copyright © 2014, The MITRE Corporation. All rights reserved.
4
The MAEC™ Language Version 4.1 Specification – Default Vocabularies v1.1
ID Formats
1.4
In MAEC v4.1, all MAEC IDs are captured and formatted as XML QNames5. Each such ID
includes both a namespace portion (optional) and an ID portion (required), separated by a
colon (“:”). The recommended approach to creating a MAEC ID is to define a producer
namespace and namespace prefix and then use the form:
[ns prefix]:[construct type]-[GUID]
The “ns prefix” SHOULD be a namespace prefix bound to a namespace owned/controlled
by the producer of the content. For consistency across MAEC documents, the “construct
type” SHOULD correspond to the labels provided in Table 1-1 below (datatypes are defined
in MAEC v4.1 unless otherwise indicated). Finally, the “GUID” SHOULD correspond to a
globally unique ID. For example, a MAEC Bundle could have the following ID:
somecompany:bundle-2f44522e-8164-4050-8e13-e01f9a
In order to use this approach, the namespace and prefix MUST be defined in the head of
the XML document, e.g.,
xmlns:somecompany=“http://company.example.com”.
This format provides high assurance that IDs will be both meaningful and unique. Meaning
comes from the producer namespace, which denotes who is producing it, as well as the
construct type, which denotes to what the ID pertains. Uniqueness is achieved when the
meaningful portion is combined with a globally unique ID.
5 In MAEC v4.1, restrictions on ID syntax have been lifted in all IDs used in MAEC types so that all MAEC IDs
are now compatible with the implementations used in CybOX and STIX. Consequently, the additional
schematron and XSL files used in earlier MAEC versions primarily for ID syntax validation have been
deprecated.
Copyright © 2014, The MITRE Corporation. All rights reserved.
5
The MAEC™ Language Version 4.1 Specification – Default Vocabularies v1.1
Table 1-1. Recommended construct type labels
Construct Name
BUNDLE IDs and IDREFs
action_collection
action_implementation
action_equivalence_reference
Datatype (defining ID)
ActionCollectionType
ActionImplementationType
BehavioralAction
EquivalenceReferenceType
Construct Type (in ID)
action_collection
action_implementation
action_equivalence
BehaviorCollectionType
BundleType
CandidateIndicatorCollectionType candidate_indicator_collection
CandidateIndicatorType
BehaviorType
CapabilityType
cybox:ActionType
action
behavior
behavior_collection
maec_bundle
candidate_indicator_collection
candidate_indicator
capability
malware_instance_object_attributes cybox:ObjectType
strategic_objective
tactical_objective
object_collection
process_tree_node
object
PACKAGE IDs and IDREFs
action_equivalence
analysis
malware_subject
object_equivalence
maec_package
malware_instance_object_attributes cybox:ObjectType
CONTAINER IDs
maec_container
cybox:ObjectType
ContainerType
PackageType
ActionEquivalenceType
AnalysisType
MalwareSubjectType
ObjectEquivalenceType
CapabilityObjectiveType
CapabilityObjectiveType
ObjectCollectionType
ProcessTreeNodeType
action
behavior
behavior_collection
bundle
candidate_indicator
capability
object
objective
objective
object_collection
process_tree
object
action_equivalence
analysis
malware_subject
object_equivalence
package
object
container
Copyright © 2014, The MITRE Corporation. All rights reserved.
6
The MAEC™ Language Version 4.1 Specification – Default Vocabularies v1.1
1.5 XML Implementation
The XML implementation of the MAEC Language data model is documented in a series of
XML Schemas.6 These schemas describe how the information presented in this
Specification is formatted and represented as XML. Please refer to the appropriate Schema
for more information about a specific XML implementation.
MAEC Container Model
https://maec.mitre.org/language/version4.1/maec-container-schema.xsd
MAEC Package Model
https://maec.mitre.org/language/version4.1/maec-package-schema.xsd
MAEC Bundle Model
https://maec.mitre.org/language/version4.1/maec-bundle-schema.xsd
MAEC Default Vocabularies
https://maec.mitre.org/language/version4.1/maec-default-vocabularies.xsd
The complete listing of XML representation resources can be found on the MAEC website
[REL4].
1.6 Document Conventions
The following conventions are used in this document.
1.6.1 Key Words
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD",
"SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be
interpreted as described in RFC 2119 [RFC2119].
1.6.2 Fonts
The following font and font style conventions are used in the document:
Capitalization is used for MAEC high level concepts, which are defined as basic
components in the MAEC Overview document [MAECO] (see Section 2 in [MAECO]).
Examples: Bundle, Strategic Objective, Malware Subject
6 XML Schema Part 0: Primer Second Edition http://www.w3.org/TR/xmlschema-0
Copyright © 2014, The MITRE Corporation. All rights reserved.
7
The MAEC™ Language Version 4.1 Specification – Default Vocabularies v1.1
The Courier New font is used for writing constructs in the MAEC Language
Data Model (and related data models).
Examples: CandidateIndicatorType, Malware_Subject
Note that all high level concepts have a corresponding data model construct (e.g.,
Malware Subject Malware_Subject).
The ‘italic, with single quotes’ font is used for noting values for MAEC Language
properties.
Examples: ‘2.1’, ‘MAEC Default Device Driver Action Names’
1.6.3 Namespaces
The Bundle, Package, and Container specifications use the concept of namespaces7
logically group MAEC constructs throughout the Data Model sections of the documents, as
well as other parts of the specifications. The format of these namespaces is
prefix:namespace, where the prefix is the namespace component, and the
namespace is the actual namespace URI. Table 1-2 on page 10 provides a listing of the
default namespaces used in MAEC to help provide context as to the particular source data
model or vocabulary used in a field. Table 1-2 also lists the relevant version of each of the
data models. These namespaces are compatible with XML Namespaces [W3C0], though
the MAEC language is not restricted to XML serialization.
to
1.6.4 UML Diagrams