It’s quite easy to share files using netcat.
Serve a file on a listening port:
cat myfile.txt | nc -l -p 1337
Connect to this port and download file:
netcat SERVERIP 1337 > myfile.txt
FUN WITH LINUX
7 March 2016
It’s quite easy to share files using netcat.
Serve a file on a listening port:
cat myfile.txt | nc -l -p 1337
Connect to this port and download file:
netcat SERVERIP 1337 > myfile.txt
Linux
Sysadmin
Tricks
Network
]
Copyright 2015-present Hoti