Hacker News new | ask | show | jobs
by cpeth 3399 days ago
Couldn't you just pipe a response file to netcat running on 80?

cat response.html | nc -lp 80

5 comments

That's what I used to do :P, one of the features that httplab offer, is that you can inspect the request
Or redirect the standard input of netcat to the response file.

    nc -lp 80 < response.html
Today I learned something fantastic, thank you! :o)
What's the correct command for BSD nc (on macOS)? For the `-l` option, the manual says "It is an error to use this option in conjunction with the -p, -s, or -z options".
I think nc -l 80 should do it
Not if you want a UI.