Thanks guys. I am beginning to mess around with netcat, but I'm not getting very far. For instance, I run the following command and nothing seems to happen:
Code:
me@me$ nc -l -p 1234 < /etc/resolv.conf
usage: nc [-46DdhklnrStUuvzC] [-i interval] [-p source_port]
[-s source_ip_address] [-T ToS] [-w timeout] [-X proxy_version]
[-x proxy_address[:port]] [hostname] [port[s]]
From what I've read, I expect it to wait for a connection on 1234 then dump the file to that port. Unfortunately, it seems like I have a usage problem. The -l is supposed to be for "listen" and the -p is supposed to be for "on port."
Same thing happens with the following command:
Code:
me@me$ nc -vv -z -w2 192.168.31.129
usage: nc [-46DdhklnrStUuvzC] [-i interval] [-p source_port]
[-s source_ip_address] [-T ToS] [-w timeout] [-X proxy_version]
[-x proxy_address[:port]] [hostname] [port[s]]
Thanks again.