mirror of
https://github.com/laramies/theHarvester.git
synced 2024-11-11 18:03:10 +08:00
35 lines
799 B
Python
35 lines
799 B
Python
import string
|
|
import requests
|
|
import sys
|
|
import myparser
|
|
import re
|
|
try:
|
|
import wfuzz
|
|
except Exception, e:
|
|
pass
|
|
|
|
class search_wfuzz:
|
|
def __init__(self, host):
|
|
self.host = host
|
|
self.results = ""
|
|
self.totalresults = ""
|
|
|
|
def do_search(self):
|
|
print "elo"
|
|
try:
|
|
for r in wfuzz.fuzz(url="https://"+self.host+"/FUZZ", hc=[404], payloads=[("file",dict(fn="wordlist/general/common.txt"))]):
|
|
print r
|
|
self.results += r
|
|
except Exception, e:
|
|
print e
|
|
self.totalresults += self.results
|
|
|
|
def get_results(self):
|
|
return self.totalresults
|
|
|
|
def do_check(self):
|
|
return
|
|
|
|
def process(self):
|
|
self.do_search()
|
|
print "\tSearching Wfuzz.."
|