fix: Pass proper parameter to vt module

pull/898/head
Raphaël Vinot 2024-03-14 11:11:43 +01:00
parent 6aefb201e9
commit e9ea879caf
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ class VirusTotal(AbstractModule):
self.logger.info('Not enabled')
return False
self.client = vt.Client(self.config['apikey'], trustenv=self.config.get('trustenv', False))
self.client = vt.Client(self.config['apikey'], trust_env=self.config.get('trustenv', False))
self.allow_auto_trigger = bool(self.config.get('allow_auto_trigger', False))
self.autosubmit = bool(self.config.get('autosubmit', False))