Skip to content

Instantly share code, notes, and snippets.

@Risto-Stevcev
Created July 14, 2015 07:43
Show Gist options
  • Save Risto-Stevcev/7b96e14a3e923c398a5d to your computer and use it in GitHub Desktop.
Save Risto-Stevcev/7b96e14a3e923c398a5d to your computer and use it in GitHub Desktop.
Netcat HTTP proxy
mkfifo mypipe; nc -l 8089 < mypipe | tee inflow | nc www.google.com 80 | tee outflow > mypipe; rm mypipe
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment