This commit is contained in:
Laramies 2018-12-01 10:41:51 +01:00
commit e95a1c6f1a
2 changed files with 4 additions and 1 deletions

1
.gitignore vendored
View file

@ -4,3 +4,4 @@ tests/myparser.py
stash.sqlite
*.sqlite
.vscode
venv

View file

@ -310,8 +310,10 @@ def start(argv):
from discovery import censys
#import locally or won't work
search = censys.search_censys(word)
search.process(5)
search.process()
totalnumberofpages = search.get_totalnumberofpages()
all_emails = []
all_ip = search.get_ipaddresses()
all_hosts = search.get_hostnames()
elif engineitem == "trello":