theHarvester/discovery/crtsh.py
Christian Martorella d0e29f6122 New engines
Added Virustotal, CRT.sh and Netcraft. More results :)
2017-09-22 23:05:00 +02:00

40 lines
1.1 KiB
Python

import string
import requests
import sys
import myparser
import re
class search_crtsh:
def __init__(self, word):
self.word = word.replace(' ', '%20')
self.results = ""
self.totalresults = ""
self.server = "www.google.com"
self.hostname = "www.google.com"
self.userAgent = "(Mozilla/5.0 (Windows; U; Windows NT 6.0;en-US; rv:1.9.2) Gecko/20100116 Firefox/3.7"
self.quantity = "100"
self.counter = 0
def do_search(self):
try:
urly="https://crt.sh/?q=%25" + self.word
except Exception, e:
print e
headers = {'User-Agent':'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:34.0) Gecko/20100101 Firefox/34.0'}
try:
r=requests.get(urly,headers=headers)
except Exception,e:
print e
self.results = r.content
self.totalresults += self.results
def get_hostnames(self):
rawres = myparser.parser(self.results, self.word)
return rawres.hostnames()
def process(self):
self.do_search()
print "\tSearching CRT.sh results.."