Skip to content

Commit 60cc7a6

Browse files
committed
Updated copyright strings
1 parent bd825cc commit 60cc7a6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+1063
-1055
lines changed

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2014, The MITRE Corporation
1+
Copyright (c) 2015, The MITRE Corporation
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.. python-maec documentation master file, created by
2-
sphinx-quickstart on Thu May 1 10:36:32 2014.
2+
sphinx-quickstart on Thu May 1 10:36:32 2015.
33
You can adapt this file completely to your liking, but it should at least
44
contain the root `toctree` directive.
55

docs/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ OR
101101

102102
.. parsed-literal::
103103
$ python
104-
Python 2.7.6 (default, Mar 22 2014, 22:59:56)
104+
Python 2.7.6 (default, Mar 22 2015, 22:59:56)
105105
[GCC 4.8.2] on linux2
106106
Type "help", "copyright", "credits" or "license" for more information.
107107
>>> import MAEC

examples/comparator_example.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import maec.bindings.maec_bundle as maec_bundle_binding
33
from maec.bundle.bundle import Bundle
44
# Matching properties dictionary
5-
match_on_dictionary = {'FileObjectType': ['full_name'],
5+
match_on_dictionary = {'FileObjectType': ['file_name'],
66
'WindowsRegistryKeyObjectType': ['hive', 'values.name/data'],
77
'WindowsMutexObjectType': ['name']}
88
# Parse in the input Bundle documents and create their python-maec Bundle class representations

examples/package_generation_example.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from cybox.core import AssociatedObjects, AssociatedObject, Object, AssociationType
99
from cybox.common import Hash, HashList
1010
from cybox.objects.file_object import File
11-
from maec.bundle.bundle import Bundle
11+
from maec.bundle.bundle import Bundle, Collections
1212
from maec.bundle.malware_action import MalwareAction
1313
from maec.bundle.capability import Capability
1414
from maec.package.analysis import Analysis
@@ -57,6 +57,7 @@
5757
bundle.add_capability(capability)
5858
# Add the Bundle to the Malware Subject
5959
subject.add_findings_bundle(bundle)
60+
subject.findings_bundles.bundle = [bundle]
6061
# Add the Malware Subject to the Package
6162
package.add_malware_subject(subject)
6263
# Export the Package Bindings Object to an XML file and use the namespaceparser for writing out the namespace definitions

maec/analytics/distance.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# MAEC Distance Measure-related Classes - BETA
2-
# Copyright (c) 2014, The MITRE Corporation
2+
# Copyright (c) 2015, The MITRE Corporation
33
# All rights reserved
44

55
# See LICENSE.txt for complete terms

maec/analytics/static_features.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# MAEC Static Features List
2-
# Copyright (c) 2014, The MITRE Corporation
2+
# Copyright (c) 2015, The MITRE Corporation
33
# All rights reserved
44

55
static_features_dict = {'file_name' : {'feature_name' : 'file_name'},

maec/bindings/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2014, The MITRE Corporation. All rights reserved.
1+
# Copyright (c) 2015, The MITRE Corporation. All rights reserved.
22
# See LICENSE.txt for complete terms.
33

44
import base64

maec/bindings/maec_bundle.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2014, The MITRE Corporation. All rights reserved.
1+
# Copyright (c) 2015, The MITRE Corporation. All rights reserved.
22
# See LICENSE.txt for complete terms.
33

44
import sys

maec/bindings/maec_container.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2014, The MITRE Corporation. All rights reserved.
1+
# Copyright (c) 2015, The MITRE Corporation. All rights reserved.
22
# See LICENSE.txt for complete terms.
33

44
import sys

0 commit comments

Comments
 (0)