Created
July 14, 2015 07:43
-
-
Save Risto-Stevcev/7b96e14a3e923c398a5d to your computer and use it in GitHub Desktop.
Netcat HTTP proxy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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