WAF Api identify web application firewalls

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

1import requests
2headers= {"X-Auth-Email":"youremail@something-here-re.com"}
3
4 # or if you want to use api X-AUTH-KEY and api X-AUTH-SECRET
5headers = {"X-AUTH-SECRET":"", "X-AUTH-KEY":""}
6
7url="https://api.nmmapper.com/api/v1/waf/?domain=some-domain-here.com"
8res = requests.get(url, headers=headers)
9#