Last active
December 8, 2015 14:40
-
-
Save thehenster/cdee221db95e30fba31a to your computer and use it in GitHub Desktop.
The nc in Ubuntu doesn't have the same arguments as the normal one
This file contains hidden or 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
# in normal nc | |
nc -l -p 8888 | |
# in bsd nc | |
nc -l 0.0.0.0 8888 | |
# throw in a -k to keep listening to subsequent requests |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment