bug in fn_virustotal
Closed this issue · 2 comments
PyiPai commented
Description
Describe How to Reproduce
fn_virustotal/fn_virustotal/components/virustotal.py
/fn_virustotal/fn_virustotal/components/virustotal.py", line 178, in check_results
if int(curr_time - start_time)/1000 >= int(self.options('max_polling_wait_sec')):
TypeError: 'dict' object is not callable
This linke 178 should be changed to if int(curr_time - start_time)/1000 >= int(self.options['max_polling_wait_sec'])
Notice the square brackets instead of the round brackets.
JOHNQUIR commented
Please update with version of fn_virustotal integration ...