from secator.workflows import url_fuzz
target = 'example.com'
opts = {
'match_codes': '200, 302',
'rate_limit': 1 # req/s
'quiet': True,
'ffuf.wordlist': 'dicc.txt' # ffuf wordlist
}
# Print results live and a summary table at the end of the run
for result in url_fuzz(target, exporters=['table']):
print(result)