...

/

Making Web Requests with NetCat

Making Web Requests with NetCat

Learn how to make web requests using NetCat.

We'll cover the following...

Using netcat

We already used curl to grab web pages, but netcat can do that too. However, netcat makes us do it a little more interactively.

First, run this command:

$ nc www.google.com 80

A ...