theHarvester/discovery/trello.py

62 lines
2.1 KiB
Python
Raw Normal View History

import requests
import myparser
from discovery.constants import *
import time
class search_trello:
def __init__(self, word, limit):
self.word = word.replace(' ', '%20')
self.results = ""
self.totalresults = ""
self.server = "www.google.com"
self.hostname = "www.google.com"
self.quantity = "100"
self.limit = limit
self.counter = 0
def do_search(self):
try:
urly = "https://" + self.server + "/search?num=100&start=" + str(
self.counter) + "&hl=en&q=site%3Atrello.com%20" + self.word
except Exception as e:
print(e)
headers = {'User-Agent': googleUA}
try:
r = requests.get(urly, headers=headers)
time.sleep(getDelay())
except Exception as e:
print(e)
self.results = r.text
self.totalresults += self.results
def get_emails(self):
rawres = myparser.parser(self.totalresults, self.word)
return rawres.emails()
def get_urls(self):
print('\tSearching Trello Urls..')
try:
rawres = myparser.parser(self.totalresults, "trello.com")
trello_urls = rawres.urls()
visited = set()
for url in trello_urls:
# iterate through trello urls gathered and visit them, append text to totalresults
if url not in visited: # make sure visiting unique urls
visited.add(url)
self.totalresults += requests.get(url=url, headers={'User-Agent': googleUA}).text
rawres = myparser.parser(self.totalresults, self.word)
return rawres.hostnames(), trello_urls
except Exception as e:
print("Error occurred: " + str(e))
def process(self):
while (self.counter < self.limit):
self.do_search()
if search(self.results):
time.sleep(getDelay() * 5)
else:
time.sleep(getDelay())
self.counter += 100
print("\tSearching " + str(self.counter) + " results..")