@@ -107,11 +107,22 @@ raw_mail:
107107
108108# Attachments bolt configuration
109109attachments :
110- content_types_blacklist :
111- # All content types to remove from results
112- # Example in content_types/blacklist/generic.example.yml
113- generic : /path/to/generic_content_types
114- custom : /path/to/custom_content_types
110+ # The lists of all components must be under lists keyword to load them
111+ # automatically
112+ commons :
113+ lists :
114+ blacklist_content_types :
115+ # All content types to remove from results
116+ # Example in content_types/blacklist/generic.example.yml
117+ generic : /path/to/generic_content_types
118+ custom : /path/to/custom_content_types
119+
120+ not_extract_content_types :
121+ # All content types that you don't want extract from archive
122+ # Example: application/java-archive (jar), you can save the jar
123+ # but do not extract the class inside.
124+ generic : /path/to/generic_content_types
125+ custom : /path/to/custom_content_types
115126
116127 # Apache Tika analysis: https://tika.apache.org/
117128 tika :
@@ -125,9 +136,10 @@ attachments:
125136
126137 # All content types to extract details
127138 # Example in content_types/tika/generic.example.yml
128- valid_content_types :
129- generic : /path/to/generic_content_types
130- custom : /path/to/custom_content_types
139+ lists :
140+ whitelist_content_types :
141+ generic : /path/to/generic_content_types
142+ custom : /path/to/custom_content_types
131143
132144 # VirusTotal analysis: https://www.virustotal.com/
133145 virustotal :
@@ -138,9 +150,10 @@ attachments:
138150 # All content types to analyze with virustotal
139151 # Example in content_types/virustotal/generic.example.yml
140152 # Now is not active
141- content_types_details :
142- generic : /path/to/generic_content_types
143- custom : /path/to/custom_content_types
153+ lists :
154+ whitelist_content_types :
155+ generic : /path/to/generic_content_types
156+ custom : /path/to/custom_content_types
144157
145158 # Thug analysis: https://github.com/buffer/thug
146159 thug :
@@ -188,6 +201,12 @@ attachments:
188201 ApiKey : xxxxx
189202 useragent : SpamScope
190203
204+ # This plugin store the samples on file system
205+ # in date format subfolders (YYYY-MM-DD)
206+ store_samples :
207+ enabled : false
208+ base_path : /tmp
209+
191210
192211# Urls
193212urls :
0 commit comments