maco-extractor 1.2.18__tar.gz → 1.2.19__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (20) hide show
  1. {maco_extractor-1.2.18/maco_extractor.egg-info → maco_extractor-1.2.19}/PKG-INFO +1 -1
  2. {maco_extractor-1.2.18 → maco_extractor-1.2.19}/maco/collector.py +1 -0
  3. {maco_extractor-1.2.18 → maco_extractor-1.2.19}/maco/extractor.py +2 -1
  4. {maco_extractor-1.2.18 → maco_extractor-1.2.19/maco_extractor.egg-info}/PKG-INFO +1 -1
  5. {maco_extractor-1.2.18 → maco_extractor-1.2.19}/LICENSE.md +0 -0
  6. {maco_extractor-1.2.18 → maco_extractor-1.2.19}/README.md +0 -0
  7. {maco_extractor-1.2.18 → maco_extractor-1.2.19}/maco/__init__.py +0 -0
  8. {maco_extractor-1.2.18 → maco_extractor-1.2.19}/maco/base_test.py +0 -0
  9. {maco_extractor-1.2.18 → maco_extractor-1.2.19}/maco/cli.py +0 -0
  10. {maco_extractor-1.2.18 → maco_extractor-1.2.19}/maco/exceptions.py +0 -0
  11. {maco_extractor-1.2.18 → maco_extractor-1.2.19}/maco/model/__init__.py +0 -0
  12. {maco_extractor-1.2.18 → maco_extractor-1.2.19}/maco/model/model.py +0 -0
  13. {maco_extractor-1.2.18 → maco_extractor-1.2.19}/maco/utils.py +0 -0
  14. {maco_extractor-1.2.18 → maco_extractor-1.2.19}/maco/yara.py +0 -0
  15. {maco_extractor-1.2.18 → maco_extractor-1.2.19}/maco_extractor.egg-info/SOURCES.txt +0 -0
  16. {maco_extractor-1.2.18 → maco_extractor-1.2.19}/maco_extractor.egg-info/dependency_links.txt +0 -0
  17. {maco_extractor-1.2.18 → maco_extractor-1.2.19}/maco_extractor.egg-info/requires.txt +0 -0
  18. {maco_extractor-1.2.18 → maco_extractor-1.2.19}/maco_extractor.egg-info/top_level.txt +0 -0
  19. {maco_extractor-1.2.18 → maco_extractor-1.2.19}/pyproject.toml +0 -0
  20. {maco_extractor-1.2.18 → maco_extractor-1.2.19}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: maco-extractor
3
- Version: 1.2.18
3
+ Version: 1.2.19
4
4
  Summary: This package contains the essentials for creating Maco extractors and using them at runtime.
5
5
  Author: sl-govau
6
6
  Maintainer: cccs-rs
@@ -122,6 +122,7 @@ class Collector:
122
122
  "author": member.author,
123
123
  "last_modified": member.last_modified,
124
124
  "sharing": member.sharing,
125
+ "result_sharing": member.result_sharing,
125
126
  "description": member.__doc__,
126
127
  },
127
128
  )
@@ -25,7 +25,8 @@ class Extractor:
25
25
  family: Union[str, List[str]] = None # family or families of malware that is detected by the extractor
26
26
  author: str = None # author of the extractor (name@organisation)
27
27
  last_modified: str = None # last modified date (YYYY-MM-DD)
28
- sharing: str = "TLP:WHITE" # who can this be shared with?
28
+ sharing: str = "TLP:CLEAR" # who can this be shared with?
29
+ result_sharing: str = sharing # who can the results be shared with? (defaults to sharing)
29
30
  yara_rule: str = None # yara rule that we filter inputs with
30
31
  reference: str = None # link to malware report or other reference information
31
32
  logger: logging.Logger = None # logger for use when debugging
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: maco-extractor
3
- Version: 1.2.18
3
+ Version: 1.2.19
4
4
  Summary: This package contains the essentials for creating Maco extractors and using them at runtime.
5
5
  Author: sl-govau
6
6
  Maintainer: cccs-rs