WAF Api

WAFW00F allows one to identify and fingerprint Web Application Firewall (WAF) products protecting a website.

import requests
headers= {"X-Auth-Email":"youremail@something-here-re.com"}

# or if you want to use api X-AUTH-KEY and api X-AUTH-SECRET
headers = {"X-AUTH-SECRET":"", "X-AUTH-KEY":""}

url="https://api.nmmapper.com/api/v1/waf/?domain=some-domain-here.com"
res = requests.get(url, headers=headers)
#
#