theHarvester/discovery/wfuzz_search.py
Denis Kasak acf9ed2f40 Normalize other whitespace.
Delete trailing spaces, add newline at end of file, etc.
2019-02-04 14:18:00 +01:00

33 lines
732 B
Python

try:
import wfuzz
except ImportError as 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='wordlists/general/common.txt'))]):
print(r)
self.results += r
except Exception as 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')