-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #109 from swimlane/6_0_0_release
6.0.0 Release
- Loading branch information
Showing
124 changed files
with
1,679 additions
and
7,784 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
[flake8] | ||
max-line-length = 120 | ||
exclude = | ||
__init__.py | ||
extend-ignore = | ||
F841 #local variable 'e' is assigned to but never used | ||
per-file-ignores = | ||
# F401: Module imported by unused (non-implicit modules) | ||
# TC002: Move third-party import '...' into a type-checking block | ||
__init__.py:F401,TC002, | ||
aqueduct.py:E501, | ||
logger.py:F841, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
recommonmark | ||
sphinx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Actor | ||
|
||
This documentation provides details about Actor class within the `pyattck` package. | ||
|
||
> The Actor object is based on the following [data model](https://github.com/swimlane/pyattck-data-models/blob/main/src/pyattck_data_models/actor.py) | ||
The `Actor` class provides detailed information about identified actors & groups within the MITRE ATT&CK Framework. Additionally, an `Actor` object allows the user to access additional relationships within the MITRE ATT&CK Framework: | ||
|
||
* Tools used by the Actor or Group | ||
* Malware used by the Actor or Group | ||
* Techniques this Actor or Group uses | ||
|
||
You can also access external data properties. The following properties are generated using external data: | ||
|
||
* country | ||
* operations | ||
* attribution_links | ||
* known_tools | ||
* targets | ||
* additional_comments | ||
* external_description | ||
|
||
You can retrieve the entire dataset using the `external_dataset` property. | ||
|
||
## Actor Class | ||
|
||
```eval_rst | ||
.. autoclass:: pyattck_data_models.base.BaseModel | ||
:undoc-members: | ||
:inherited-members: | ||
.. autoclass:: pyattck_data_models.actor.Actor | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
:inherited-members: | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.