⭐ favori
Inspect web traffic:
Terminal 1: Start your server
./my-web-server -port 8080
Terminal 2: Start netcat/tee “proxy”
nc -lk 3000 | tee /dev/tty | nc localhost 8080
Terminal 3: Send requests to “proxy”
curl http://localhost:3000
See raw HTTP requests/responses in Terminal 2 between client and server.
That’s it. That’s the toot.
#Linux #HTTP #TCP #Networking