attack-mapper 0.4.0__tar.gz → 0.4.1__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 (24) hide show
  1. {attack_mapper-0.4.0 → attack_mapper-0.4.1}/PKG-INFO +2 -2
  2. {attack_mapper-0.4.0 → attack_mapper-0.4.1}/README.md +1 -1
  3. {attack_mapper-0.4.0 → attack_mapper-0.4.1}/attack_mapper/__init__.py +1 -1
  4. {attack_mapper-0.4.0 → attack_mapper-0.4.1}/attack_mapper/cli.py +1 -1
  5. {attack_mapper-0.4.0 → attack_mapper-0.4.1}/attack_mapper.egg-info/PKG-INFO +2 -2
  6. {attack_mapper-0.4.0 → attack_mapper-0.4.1}/pyproject.toml +1 -1
  7. {attack_mapper-0.4.0 → attack_mapper-0.4.1}/LICENSE +0 -0
  8. {attack_mapper-0.4.0 → attack_mapper-0.4.1}/attack_mapper/attack_loader.py +0 -0
  9. {attack_mapper-0.4.0 → attack_mapper-0.4.1}/attack_mapper/build_db.py +0 -0
  10. {attack_mapper-0.4.0 → attack_mapper-0.4.1}/attack_mapper/coverage.py +0 -0
  11. {attack_mapper-0.4.0 → attack_mapper-0.4.1}/attack_mapper/data/attack_db.json +0 -0
  12. {attack_mapper-0.4.0 → attack_mapper-0.4.1}/attack_mapper/plugins.py +0 -0
  13. {attack_mapper-0.4.0 → attack_mapper-0.4.1}/attack_mapper/renderers.py +0 -0
  14. {attack_mapper-0.4.0 → attack_mapper-0.4.1}/attack_mapper/sigma_parser.py +0 -0
  15. {attack_mapper-0.4.0 → attack_mapper-0.4.1}/attack_mapper.egg-info/SOURCES.txt +0 -0
  16. {attack_mapper-0.4.0 → attack_mapper-0.4.1}/attack_mapper.egg-info/dependency_links.txt +0 -0
  17. {attack_mapper-0.4.0 → attack_mapper-0.4.1}/attack_mapper.egg-info/entry_points.txt +0 -0
  18. {attack_mapper-0.4.0 → attack_mapper-0.4.1}/attack_mapper.egg-info/requires.txt +0 -0
  19. {attack_mapper-0.4.0 → attack_mapper-0.4.1}/attack_mapper.egg-info/top_level.txt +0 -0
  20. {attack_mapper-0.4.0 → attack_mapper-0.4.1}/setup.cfg +0 -0
  21. {attack_mapper-0.4.0 → attack_mapper-0.4.1}/tests/test_bug_regressions.py +0 -0
  22. {attack_mapper-0.4.0 → attack_mapper-0.4.1}/tests/test_coverage.py +0 -0
  23. {attack_mapper-0.4.0 → attack_mapper-0.4.1}/tests/test_html_output.py +0 -0
  24. {attack_mapper-0.4.0 → attack_mapper-0.4.1}/tests/test_plugins_filters.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: attack-mapper
3
- Version: 0.4.0
3
+ Version: 0.4.1
4
4
  Summary: Map your Sigma detection rules onto the MITRE ATT&CK matrix and find coverage gaps.
5
5
  Author: Jose (JoseArgento)
6
6
  License: MIT
@@ -73,7 +73,7 @@ cover, and where are the blind spots?"*
73
73
 
74
74
  | `report` (print-ready dossier) | `matrix` (cards) |
75
75
  | --- | --- |
76
- | ![report style](docs/screenshot_report.png) | ![matrix style](docs/screenshot_matrix.png) |
76
+ | ![report style](https://raw.githubusercontent.com/JoseArgento/attack-mapper/main/docs/screenshot_report.png) | ![matrix style](https://raw.githubusercontent.com/JoseArgento/attack-mapper/main/docs/screenshot_matrix.png) |
77
77
 
78
78
  ## Install
79
79
 
@@ -48,7 +48,7 @@ cover, and where are the blind spots?"*
48
48
 
49
49
  | `report` (print-ready dossier) | `matrix` (cards) |
50
50
  | --- | --- |
51
- | ![report style](docs/screenshot_report.png) | ![matrix style](docs/screenshot_matrix.png) |
51
+ | ![report style](https://raw.githubusercontent.com/JoseArgento/attack-mapper/main/docs/screenshot_report.png) | ![matrix style](https://raw.githubusercontent.com/JoseArgento/attack-mapper/main/docs/screenshot_matrix.png) |
52
52
 
53
53
  ## Install
54
54
 
@@ -11,7 +11,7 @@ from .sigma_parser import (
11
11
  from .renderers import render_terminal, render_html, STYLES
12
12
  from .plugins import render_badge, render_json
13
13
 
14
- __version__ = "0.4.0"
14
+ __version__ = "0.4.1"
15
15
 
16
16
  __all__ = [
17
17
  "AttackDB",
@@ -51,7 +51,7 @@ def build_parser() -> argparse.ArgumentParser:
51
51
  help="Also write an SVG coverage badge to PATH (great for a README).",
52
52
  )
53
53
  p.add_argument("--quiet", action="store_true", help="Suppress the terminal table.")
54
- p.add_argument("--version", action="version", version="%(prog)s 0.4.0")
54
+ p.add_argument("--version", action="version", version="%(prog)s 0.4.1")
55
55
  return p
56
56
 
57
57
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: attack-mapper
3
- Version: 0.4.0
3
+ Version: 0.4.1
4
4
  Summary: Map your Sigma detection rules onto the MITRE ATT&CK matrix and find coverage gaps.
5
5
  Author: Jose (JoseArgento)
6
6
  License: MIT
@@ -73,7 +73,7 @@ cover, and where are the blind spots?"*
73
73
 
74
74
  | `report` (print-ready dossier) | `matrix` (cards) |
75
75
  | --- | --- |
76
- | ![report style](docs/screenshot_report.png) | ![matrix style](docs/screenshot_matrix.png) |
76
+ | ![report style](https://raw.githubusercontent.com/JoseArgento/attack-mapper/main/docs/screenshot_report.png) | ![matrix style](https://raw.githubusercontent.com/JoseArgento/attack-mapper/main/docs/screenshot_matrix.png) |
77
77
 
78
78
  ## Install
79
79
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "attack-mapper"
7
- version = "0.4.0"
7
+ version = "0.4.1"
8
8
  description = "Map your Sigma detection rules onto the MITRE ATT&CK matrix and find coverage gaps."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.9"
File without changes
File without changes