Skip to content
This repository was archived by the owner on Dec 11, 2023. It is now read-only.

Commit 77b7670

Browse files
committed
merging in develop
2 parents 16eeafa + 651fdc0 commit 77b7670

File tree

3 files changed

+19
-14
lines changed

3 files changed

+19
-14
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 25 June 2021
2+
# v1.9.2
3+
## Fixes
4+
- Patched list of data sources in [techniques_data_sources_vis.py](/scripts/techniques_data_sources_vis.py) and [techniques_from_Data_source.py](/scripts/techniques_from_Data_source.py) to use current data sources.
5+
16
# v1.9.1 - 9 April 2021
27
With the release of our [mitreattack-python](https://github.com/mitre-attack/mitreattack-python) pip module, we're removing the tools previously found in the `layers` folder as they are now part of that module.
38

scripts/techniques_data_sources_vis.py

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -480,18 +480,18 @@ def defaultStr(multi=False):
480480
nargs="+",
481481
metavar=("datasource1", "datasource2"),
482482
default=[
483-
"windows event logs",
484-
"anti-virus",
485-
"binary file metadata",
486-
"data loss prevention",
487-
"dll monitoring",
488-
"loaded dlls",
489-
"malware reverse engineering",
490-
"netflow/enclave netflow",
491-
"network intrusion detection system",
492-
"network protocol analysis",
493-
"ssl/tls inspection",
494-
"system calls"
483+
"user account: user account creation",
484+
"active directory: active directory object creation",
485+
"container: container creation",
486+
"driver: driver load",
487+
"file: file deletion",
488+
"firmware: firmware modification",
489+
"instance: instance creation",
490+
"logon session: logon session metadata",
491+
"scheduled job: scheduled job creation",
492+
"service: service modification",
493+
"process: process metadata",
494+
"sensor health: host status"
495495
],
496496
help="list data source names for datasources written in techniques_datasources.csv." + defaultStr(True)
497497
)
@@ -519,4 +519,4 @@ def defaultStr(multi=False):
519519
args = parser.parse_args()
520520
verbose = args.verbose
521521
generate_content(args.datasources, args.tactics, args.output_folder)
522-
522+

scripts/techniques_from_data_source.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def techniques(data_source):
4141
)
4242
parser.add_argument("-data_source",
4343
type=str,
44-
default="Windows Registry",
44+
default="User Account: User Account Creation",
4545
help="the datasource by which to filter techniques. Default value is '%(default)s'."
4646
)
4747

0 commit comments

Comments
 (0)