HTTP methods (verbs)
cURL
curl -X OPTIONS http://<target>/ -v
Netcat
nc <target> <port>
OPTIONS / HTTP/1.0
nc <target> <port>
OPTIONS / HTTP/1.1
Host: <target>
Nmap
nmap -p 80,443 --script http-methods <target> -oN nmap-http-methods.txt
-p = puertos.
--script http-methods = HTTP verbs.
<target> = objetivo.
-oN = guarda resultado en archivo
nmap-http-methods.txt
.
Última actualización
¿Te fue útil?