It seems there's multiple issues with either the config file or its use with ConfigParser (or the ConfigParser version?)
Using the default config and editing it to add my keys throws this exception:
File "myconf.conf", line 2
City_Path: ./data/GeoLite2-City.mmdb
^
SyntaxError: invalid syntax
I've tried this using just data/GeoLite2-City.mmdb and it has the same problem. Won't run at all due to the vague Exception of "invalid syntax". I think pinning the version of ConfigParser in autorequirements.txt would help since typically ConfigParser takes = instead of :, at least from my experience. I changed this myself in the config but hit another exception with my username for PassiveTotal
File "myconf.conf", line 8
Username = [redacted]@[redacted].com
^
SyntaxError: invalid syntax
Putting quotes around my email address then yields this exception:
aswanda:: Research/osint/hostintel ‹master*› » python2 myconf.conf system-list.txt --all
File "myconf.conf", line 9
PublicAPI = [REDACTED]
^
Any help here would be greatly appreciated 👍
It seems there's multiple issues with either the config file or its use with ConfigParser (or the ConfigParser version?)
Using the default config and editing it to add my keys throws this exception:
I've tried this using just
data/GeoLite2-City.mmdband it has the same problem. Won't run at all due to the vague Exception of "invalid syntax". I think pinning the version of ConfigParser in autorequirements.txt would help since typically ConfigParser takes=instead of:, at least from my experience. I changed this myself in the config but hit another exception with my username for PassiveTotalPutting quotes around my email address then yields this exception:
Any help here would be greatly appreciated 👍