Created
September 29, 2015 08:16
-
-
Save brescia123/f0593e16f13033749361 to your computer and use it in GitHub Desktop.
Commands to send a file with Netcat
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
# Listening | |
nc -l -p 1234 > out.file | |
# Sending | |
nc -w 3 [destination] 1234 < out.file |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment