3.6.1 - Fix strip_attachment_payloads option

This commit is contained in:
Sean Whalen
2019-03-29 17:10:09 -04:00
parent d1c483d337
commit 065aba7f6f
3 changed files with 7 additions and 2 deletions
+5
View File
@@ -1,3 +1,8 @@
6.3.1
-----
- Fix `strip_attachment_payloads` option
6.3.0
-----
+1 -1
View File
@@ -131,7 +131,7 @@ The full set of configuration options are:
- ``general``
- ``save_aggregate`` - bool: Save aggregate report data to the Elasticsearch and/or Splunk
- ``save_forensic`` - bool: Save forensic report data to the Elasticsearch and/or Splunk
- ``strip_attachments_payloads`` - bool: Remove attachment payloads from results
- ``strip_attachment_payloads`` - bool: Remove attachment payloads from results
- ``output`` - str: Directory to place JSON and CSV files in
- ``nameservers`` - str: A comma separated list of DNS resolvers (Default: `Cloudflare's public resolvers`_)
- ``dns_timeout`` - float: DNS timeout period
+1 -1
View File
@@ -232,7 +232,7 @@ def _main():
config.read(args.config_file)
if "general" in config.sections():
general_config = config["general"]
if "strip_attachments_payloads" in general_config:
if "strip_attachment_payloads" in general_config:
opts.strip_attachment_payloads = general_config[
"strip_attachment_payloads"]
if "output" in general_config: