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>

Utilizar HTTP 1.1 implica enviar un Host: en la solicitud. Si utiliza HTTP 1.0 se puede omitir.

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