Simple HTTP request netcat
Send a raw HTTP GET request with netcat
echo -e "GET / HTTP/1.0
" | nc example.com 80
more netcat
all 10 commands →
Send a raw HTTP GET request with netcat
echo -e "GET / HTTP/1.0
" | nc example.com 80