An attacker runs netcat tool to transfer a secret file between two hosts.
He is worried about information being sniffed on the network.
How would the attacker use netcat to encrypt the information before transmitting onto the wire?
Machine A: netcat -l -p -s password 1234 < testfileMachine B: netcat 1234
Machine A: netcat -l -e magickey -p 1234 < testfileMachine B: netcat 1234
Machine A: netcat -l -p 1234 < testfile -pw passwordMachine B: netcat 1234 -pw password
Use cryptcat instead of netcat
Submit