Using NetCat to retrieve HTTP
Connect to host.example.com on port 80 using netcat and then send "GET / HTTP/1.0\r\n\r\n" to
ther server
echo -n "GET / HTTP/1.0\r\n\r\n" | nc host.example.com 80
These notes document the trouble resolution of various items pertaining to Linux or it's applications. This blog also notes alternative open source applications and how they work.
Connect to host.example.com on port 80 using netcat and then send "GET / HTTP/1.0\r\n\r\n" to
ther server
echo -n "GET / HTTP/1.0\r\n\r\n" | nc host.example.com 80
Comments
Post a Comment