2011-05-04 23:07:06 +08:00
|
|
|
import string
|
2014-12-17 07:25:12 +08:00
|
|
|
import httplib
|
|
|
|
import sys
|
|
|
|
import myparser
|
2011-05-04 23:07:06 +08:00
|
|
|
import re
|
|
|
|
import time
|
|
|
|
|
2014-12-17 07:25:12 +08:00
|
|
|
|
2011-05-04 23:07:06 +08:00
|
|
|
class search_bing:
|
|
|
|
|
2014-12-17 07:25:12 +08:00
|
|
|
def __init__(self, word, limit, start):
|
|
|
|
self.word = word.replace(' ', '%20')
|
|
|
|
self.results = ""
|
|
|
|
self.totalresults = ""
|
|
|
|
self.server = "www.bing.com"
|
|
|
|
self.apiserver = "api.search.live.net"
|
|
|
|
self.hostname = "www.bing.com"
|
|
|
|
self.userAgent = "(Mozilla/5.0 (Windows; U; Windows NT 6.0;en-US; rv:1.9.2) Gecko/20100115 Firefox/3.6"
|
|
|
|
self.quantity = "50"
|
|
|
|
self.limit = int(limit)
|
|
|
|
self.bingApi = ""
|
|
|
|
self.counter = start
|
|
|
|
|
|
|
|
def do_search(self):
|
|
|
|
h = httplib.HTTP(self.server)
|
|
|
|
h.putrequest('GET', "/search?q=%40" + self.word +
|
|
|
|
"&count=50&first=" + str(self.counter))
|
|
|
|
h.putheader('Host', self.hostname)
|
2015-11-16 09:48:42 +08:00
|
|
|
h.putheader('Cookie', 'SRCHHPGUSR=ADLT=DEMOTE&NRSLT=50')
|
|
|
|
h.putheader('Accept-Language', 'en-us,en')
|
2014-12-17 07:25:12 +08:00
|
|
|
h.putheader('User-agent', self.userAgent)
|
|
|
|
h.endheaders()
|
|
|
|
returncode, returnmsg, headers = h.getreply()
|
|
|
|
self.results = h.getfile().read()
|
|
|
|
self.totalresults += self.results
|
|
|
|
|
|
|
|
def do_search_api(self):
|
|
|
|
h = httplib.HTTP(self.apiserver)
|
|
|
|
h.putrequest('GET', "/xml.aspx?Appid=" + self.bingApi + "&query=%40" +
|
|
|
|
self.word + "&sources=web&web.count=40&web.offset=" + str(self.counter))
|
|
|
|
h.putheader('Host', "api.search.live.net")
|
|
|
|
h.putheader('User-agent', self.userAgent)
|
|
|
|
h.endheaders()
|
|
|
|
returncode, returnmsg, headers = h.getreply()
|
|
|
|
self.results = h.getfile().read()
|
|
|
|
self.totalresults += self.results
|
|
|
|
|
|
|
|
def do_search_vhost(self):
|
|
|
|
h = httplib.HTTP(self.server)
|
|
|
|
h.putrequest('GET', "/search?q=ip:" + self.word +
|
|
|
|
"&go=&count=50&FORM=QBHL&qs=n&first=" + str(self.counter))
|
|
|
|
h.putheader('Host', self.hostname)
|
|
|
|
h.putheader(
|
2015-11-16 09:48:42 +08:00
|
|
|
'Cookie', 'mkt=en-US;ui=en-US;SRCHHPGUSR=NEWWND=0&ADLT=DEMOTE&NRSLT=50')
|
|
|
|
h.putheader('Accept-Language', 'en-us,en')
|
2014-12-17 07:25:12 +08:00
|
|
|
h.putheader('User-agent', self.userAgent)
|
|
|
|
h.endheaders()
|
|
|
|
returncode, returnmsg, headers = h.getreply()
|
|
|
|
self.results = h.getfile().read()
|
|
|
|
self.totalresults += self.results
|
|
|
|
|
|
|
|
def get_emails(self):
|
|
|
|
rawres = myparser.parser(self.totalresults, self.word)
|
|
|
|
return rawres.emails()
|
|
|
|
|
|
|
|
def get_hostnames(self):
|
|
|
|
rawres = myparser.parser(self.totalresults, self.word)
|
|
|
|
return rawres.hostnames()
|
|
|
|
|
|
|
|
def get_allhostnames(self):
|
|
|
|
rawres = myparser.parser(self.totalresults, self.word)
|
|
|
|
return rawres.hostnames_all()
|
|
|
|
|
|
|
|
def process(self, api):
|
|
|
|
if api == "yes":
|
|
|
|
if self.bingApi == "":
|
|
|
|
print "Please insert your API key in the discovery/bingsearch.py"
|
|
|
|
sys.exit()
|
|
|
|
while (self.counter < self.limit):
|
|
|
|
if api == "yes":
|
|
|
|
self.do_search_api()
|
|
|
|
time.sleep(0.3)
|
|
|
|
else:
|
|
|
|
self.do_search()
|
|
|
|
time.sleep(1)
|
|
|
|
self.counter += 50
|
|
|
|
print "\tSearching " + str(self.counter) + " results..."
|
2011-05-04 23:07:06 +08:00
|
|
|
|
2014-12-17 07:25:12 +08:00
|
|
|
def process_vhost(self):
|
|
|
|
# Maybe it is good to use other limit for this.
|
|
|
|
while (self.counter < self.limit):
|
|
|
|
self.do_search_vhost()
|
|
|
|
self.counter += 50
|