Nytro Posted December 20, 2012 Report Posted December 20, 2012 [h=2]HTTP Methods Identification[/h]This is a small script that uses netcat in order to connect to a remote web server and to discover which HTTP methods supports.You can see below the source code:#!/bin/bashfor webservmethod in GET POST PUT TRACE CONNECT OPTIONS PROPFIND;doprintf "$webservmethod " ;printf "$webservmethod / HTTP/1.1\nHost: $1\n\n" | nc -q 1 $1 80 | grep "HTTP/1.1"done Source Code In the next image you can see the script in use: DemonstrationSursa: HTTP Methods Identification Quote