testssl.sh-masscan
testssl.sh-masscan copied to clipboard
import_testssl.sh_csv_to_ES.py
Hello, i've a problem with import_testssl.sh_csv_to_ES.py:
./import_testssl.sh_csv_to_ES.py *.csv
Traceback (most recent call last):
File "./import_testssl.sh_csv_to_ES.py", line 5, in
Python 3.6.4 and all dependencies installed
Any idea?
Thanks for ur work
I have the same problem, did you manage to solve it?
Hi guys ! The index types changed in elasticsearch 5.0. The string type has been replaced by the text (analyzed) and keyword (not analyzed) types. You're specifying the text type, but keyword is what you want for no analysis. So change String to Text or Keyword. Moreover, you're remove the parenthesis content. Example :grinning: "signalgo": Keyword(fields={'raw': Keyword((index='not_analyzed'))}),
-> "signalgo": Keyword(fields={'raw': Keyword()}),