Script http-waf-detect
Script types:
portrule
Categories:
discovery, intrusive
Download: https://svn.nmap.org/nmap/scripts/http-waf-detect.nse
Script Summary
Attempts to determine whether a web server is protected by an IPS (Intrusion Prevention System), IDS (Intrusion Detection System) or WAF (Web Application Firewall) by probing the web server with malicious payloads and detecting changes in the response code and body.
To do this the script will send a "good" request and record the response, afterwards it will match this response against new requests containing malicious payloads. In theory, web applications shouldn't react to malicious requests because we are storing the payloads in a variable that is not used by the script/file and only WAF/IDS/IPS should react to it. If aggro mode is set, the script will try all attack vectors (More noisy)
This script can detect numerous IDS, IPS, and WAF products since they often protect web applications in the same way. But it won't detect products which don't alter the http traffic. Results can vary based on product configuration, but this script has been tested to work against various configurations of the following products:
- Apache ModSecurity
- Barracuda Web Application Firewall
- PHPIDS
- dotDefender
- Imperva Web Firewall
- Blue Coat SG 400
Script Arguments
- http-waf-detect.uri
Target URI. Use a path that does not redirect to a different page
- http-waf-detect.aggro
If aggro mode is set, the script will try all attack vectors to trigger the IDS/IPS/WAF
- http-waf-detect.detectBodyChanges
If set it also checks for changes in the document's body
- slaxml.debug
See the documentation for the slaxml library.
- http.host, http.max-body-size, http.max-cache-size, http.max-pipeline, http.pipeline, http.truncated-ok, http.useragent
See the documentation for the http library.
- smbdomain, smbhash, smbnoguest, smbpassword, smbtype, smbusername
See the documentation for the smbauth library.
Example Usage
nmap -p80 --script http-waf-detect <host> nmap -p80 --script http-waf-detect --script-args="http-waf-detect.aggro,http-waf-detect.uri=/testphp.vulnweb.com/artists.php" www.modsecurity.org
Script Output
PORT STATE SERVICE 80/tcp open http |_http-waf-detect: IDS/IPS/WAF detected
Requires
Author:
License: Same as Nmap--See https://nmap.org/book/man-legal.html