diff --git a/.env b/.env index d31f5a9f62..f659e14fa7 100644 --- a/.env +++ b/.env @@ -5,7 +5,7 @@ ### the COMPOSE_FILE variable each separated with ':'. If you are on windows, replace all ':' with ';'. ### Reference to Docker's official Docs: https://docs.docker.com/compose/reference/envvars/#compose_file#compose_file -INTELOWL_TAG_VERSION=v1.5.1 +INTELOWL_TAG_VERSION=v1.6.0 ###### Default (Production) ###### diff --git a/api_app/script_analyzers/file_analyzers/doc_info.py b/api_app/script_analyzers/file_analyzers/doc_info.py index b7671d5649..45eab8331a 100644 --- a/api_app/script_analyzers/file_analyzers/doc_info.py +++ b/api_app/script_analyzers/file_analyzers/doc_info.py @@ -163,6 +163,9 @@ def manage_encrypted_doc(self): decrypted_file_name = self.vbaparser.decrypt_file( self.passwords_to_check ) + self.olevba_results[ + "additional_passwords_tried" + ] = self.passwords_to_check if decrypted_file_name: self.vbaparser = VBA_Parser(decrypted_file_name) else: diff --git a/docs/source/conf.py b/docs/source/conf.py index 3c6738536d..a3cbc3c08c 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -22,7 +22,7 @@ author = "Matteo Lodi" # The full version, including alpha/beta/rc tags -release = "1.5.1" +release = "1.6.0" # -- General configuration ---------------------------------------------------