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.
- {attack_mapper-0.4.0 → attack_mapper-0.4.1}/PKG-INFO +2 -2
- {attack_mapper-0.4.0 → attack_mapper-0.4.1}/README.md +1 -1
- {attack_mapper-0.4.0 → attack_mapper-0.4.1}/attack_mapper/__init__.py +1 -1
- {attack_mapper-0.4.0 → attack_mapper-0.4.1}/attack_mapper/cli.py +1 -1
- {attack_mapper-0.4.0 → attack_mapper-0.4.1}/attack_mapper.egg-info/PKG-INFO +2 -2
- {attack_mapper-0.4.0 → attack_mapper-0.4.1}/pyproject.toml +1 -1
- {attack_mapper-0.4.0 → attack_mapper-0.4.1}/LICENSE +0 -0
- {attack_mapper-0.4.0 → attack_mapper-0.4.1}/attack_mapper/attack_loader.py +0 -0
- {attack_mapper-0.4.0 → attack_mapper-0.4.1}/attack_mapper/build_db.py +0 -0
- {attack_mapper-0.4.0 → attack_mapper-0.4.1}/attack_mapper/coverage.py +0 -0
- {attack_mapper-0.4.0 → attack_mapper-0.4.1}/attack_mapper/data/attack_db.json +0 -0
- {attack_mapper-0.4.0 → attack_mapper-0.4.1}/attack_mapper/plugins.py +0 -0
- {attack_mapper-0.4.0 → attack_mapper-0.4.1}/attack_mapper/renderers.py +0 -0
- {attack_mapper-0.4.0 → attack_mapper-0.4.1}/attack_mapper/sigma_parser.py +0 -0
- {attack_mapper-0.4.0 → attack_mapper-0.4.1}/attack_mapper.egg-info/SOURCES.txt +0 -0
- {attack_mapper-0.4.0 → attack_mapper-0.4.1}/attack_mapper.egg-info/dependency_links.txt +0 -0
- {attack_mapper-0.4.0 → attack_mapper-0.4.1}/attack_mapper.egg-info/entry_points.txt +0 -0
- {attack_mapper-0.4.0 → attack_mapper-0.4.1}/attack_mapper.egg-info/requires.txt +0 -0
- {attack_mapper-0.4.0 → attack_mapper-0.4.1}/attack_mapper.egg-info/top_level.txt +0 -0
- {attack_mapper-0.4.0 → attack_mapper-0.4.1}/setup.cfg +0 -0
- {attack_mapper-0.4.0 → attack_mapper-0.4.1}/tests/test_bug_regressions.py +0 -0
- {attack_mapper-0.4.0 → attack_mapper-0.4.1}/tests/test_coverage.py +0 -0
- {attack_mapper-0.4.0 → attack_mapper-0.4.1}/tests/test_html_output.py +0 -0
- {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.
|
|
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
|
-
|  |  |
|
|
76
|
+
|  |  |
|
|
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
|
-
|  |  |
|
|
51
|
+
|  |  |
|
|
52
52
|
|
|
53
53
|
## Install
|
|
54
54
|
|
|
@@ -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.
|
|
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.
|
|
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
|
-
|  |  |
|
|
76
|
+
|  |  |
|
|
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.
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|