IIS
Internet Information Services (IIS) for Windows® Server is a flexible, secure and manageable Web server for hosting anything on the Web.
Enum
nmap $IP -sV -O
whatweb $IP
http $IP
dirb http://$IP
browsh --startup-url http://$IP.Default.aspxNmap scripts
# Interesting folders
nmap $IP -sV -p 80 --script http-enum
# Verify if XSS is off
nmap $IP -sV -p 80 --script http-headers
# Replace $PATH with any folder, i.e. /webdav/
nmap $IP -sV -p 80 --script http-methods --script-args http-methods.url-path=/$PATH/
# webdav
nmap $IP -sV -p 80 --script http-webdav-scan --script-args http-methods.url-path=/webdav/Last updated